@nlaprell/shipit 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 (160) hide show
  1. package/.cursor/commands/create_intent_from_issue.md +28 -0
  2. package/.cursor/commands/create_pr.md +28 -0
  3. package/.cursor/commands/dashboard.md +39 -0
  4. package/.cursor/commands/deploy.md +152 -0
  5. package/.cursor/commands/drift_check.md +36 -0
  6. package/.cursor/commands/fix.md +39 -0
  7. package/.cursor/commands/generate_release_plan.md +31 -0
  8. package/.cursor/commands/generate_roadmap.md +38 -0
  9. package/.cursor/commands/help.md +37 -0
  10. package/.cursor/commands/init_project.md +26 -0
  11. package/.cursor/commands/kill.md +72 -0
  12. package/.cursor/commands/new_intent.md +68 -0
  13. package/.cursor/commands/pr.md +77 -0
  14. package/.cursor/commands/revert-plan.md +58 -0
  15. package/.cursor/commands/risk.md +64 -0
  16. package/.cursor/commands/rollback.md +43 -0
  17. package/.cursor/commands/scope_project.md +53 -0
  18. package/.cursor/commands/ship.md +345 -0
  19. package/.cursor/commands/status.md +71 -0
  20. package/.cursor/commands/suggest.md +44 -0
  21. package/.cursor/commands/test_shipit.md +197 -0
  22. package/.cursor/commands/verify.md +50 -0
  23. package/.cursor/rules/architect.mdc +84 -0
  24. package/.cursor/rules/assumption-extractor.mdc +95 -0
  25. package/.cursor/rules/docs.mdc +66 -0
  26. package/.cursor/rules/implementer.mdc +112 -0
  27. package/.cursor/rules/pm.mdc +136 -0
  28. package/.cursor/rules/qa.mdc +97 -0
  29. package/.cursor/rules/security.mdc +90 -0
  30. package/.cursor/rules/steward.mdc +99 -0
  31. package/.cursor/rules/test-runner.mdc +196 -0
  32. package/AGENTS.md +121 -0
  33. package/README.md +264 -0
  34. package/_system/architecture/CANON.md +159 -0
  35. package/_system/architecture/invariants.yml +87 -0
  36. package/_system/architecture/project-schema.json +98 -0
  37. package/_system/architecture/workflow-state-layout.md +68 -0
  38. package/_system/artifacts/SYSTEM_STATE.md +43 -0
  39. package/_system/artifacts/confidence-calibration.json +16 -0
  40. package/_system/artifacts/dependencies.md +46 -0
  41. package/_system/artifacts/framework-files-manifest.json +179 -0
  42. package/_system/artifacts/usage.json +1 -0
  43. package/_system/behaviors/DO_RELEASE.md +371 -0
  44. package/_system/behaviors/DO_RELEASE_AI.md +329 -0
  45. package/_system/behaviors/PREPARE_RELEASE.md +373 -0
  46. package/_system/behaviors/PREPARE_RELEASE_AI.md +234 -0
  47. package/_system/behaviors/WORK_ROOT_PLATFORM_ISSUES.md +140 -0
  48. package/_system/behaviors/WORK_TEST_PLAN_ISSUES.md +380 -0
  49. package/_system/do-not-repeat/abandoned-designs.md +18 -0
  50. package/_system/do-not-repeat/bad-patterns.md +19 -0
  51. package/_system/do-not-repeat/failed-experiments.md +18 -0
  52. package/_system/do-not-repeat/rejected-libraries.md +19 -0
  53. package/_system/drift/baselines.md +49 -0
  54. package/_system/drift/metrics.md +33 -0
  55. package/_system/golden-data/.gitkeep +0 -0
  56. package/_system/golden-data/README.md +47 -0
  57. package/_system/reports/mutation/mutation.html +492 -0
  58. package/_system/security/audit-allowlist.json +4 -0
  59. package/bin/create-shipit-app +29 -0
  60. package/bin/shipit +183 -0
  61. package/cli/src/commands/check.js +82 -0
  62. package/cli/src/commands/create.js +195 -0
  63. package/cli/src/commands/init.js +267 -0
  64. package/cli/src/commands/upgrade.js +196 -0
  65. package/cli/src/utils/config.js +27 -0
  66. package/cli/src/utils/file-copy.js +144 -0
  67. package/cli/src/utils/gitignore-merge.js +44 -0
  68. package/cli/src/utils/manifest.js +105 -0
  69. package/cli/src/utils/package-json-merge.js +163 -0
  70. package/cli/src/utils/project-json-merge.js +57 -0
  71. package/cli/src/utils/prompts.js +30 -0
  72. package/cli/src/utils/stack-detection.js +56 -0
  73. package/cli/src/utils/stack-files.js +364 -0
  74. package/cli/src/utils/upgrade-backup.js +159 -0
  75. package/cli/src/utils/version.js +64 -0
  76. package/dashboard-app/README.md +73 -0
  77. package/dashboard-app/eslint.config.js +23 -0
  78. package/dashboard-app/index.html +13 -0
  79. package/dashboard-app/package.json +30 -0
  80. package/dashboard-app/pnpm-lock.yaml +2721 -0
  81. package/dashboard-app/public/dashboard.json +66 -0
  82. package/dashboard-app/public/vite.svg +1 -0
  83. package/dashboard-app/src/App.css +141 -0
  84. package/dashboard-app/src/App.tsx +155 -0
  85. package/dashboard-app/src/assets/react.svg +1 -0
  86. package/dashboard-app/src/index.css +68 -0
  87. package/dashboard-app/src/main.tsx +10 -0
  88. package/dashboard-app/tsconfig.app.json +28 -0
  89. package/dashboard-app/tsconfig.json +4 -0
  90. package/dashboard-app/tsconfig.node.json +26 -0
  91. package/dashboard-app/vite.config.ts +7 -0
  92. package/package.json +116 -0
  93. package/scripts/README.md +70 -0
  94. package/scripts/audit-check.sh +125 -0
  95. package/scripts/calibration-report.sh +198 -0
  96. package/scripts/check-readiness.sh +155 -0
  97. package/scripts/collect-metrics.sh +116 -0
  98. package/scripts/command-manifest.yml +131 -0
  99. package/scripts/create-test-plan-issue.sh +110 -0
  100. package/scripts/dashboard-start.sh +16 -0
  101. package/scripts/deploy.sh +170 -0
  102. package/scripts/drift-check.sh +93 -0
  103. package/scripts/execute-rollback.sh +177 -0
  104. package/scripts/export-dashboard-json.js +208 -0
  105. package/scripts/fix-intents.sh +239 -0
  106. package/scripts/generate-dashboard.sh +136 -0
  107. package/scripts/generate-docs.sh +279 -0
  108. package/scripts/generate-project-context.sh +142 -0
  109. package/scripts/generate-release-plan.sh +443 -0
  110. package/scripts/generate-roadmap.sh +189 -0
  111. package/scripts/generate-system-state.sh +95 -0
  112. package/scripts/gh/create-intent-from-issue.sh +82 -0
  113. package/scripts/gh/create-issue-from-intent.sh +59 -0
  114. package/scripts/gh/create-pr.sh +41 -0
  115. package/scripts/gh/link-issue.sh +44 -0
  116. package/scripts/gh/on-ship-update-issue.sh +42 -0
  117. package/scripts/headless/README.md +8 -0
  118. package/scripts/headless/call-llm.js +109 -0
  119. package/scripts/headless/run-phase.sh +99 -0
  120. package/scripts/help.sh +271 -0
  121. package/scripts/init-project.sh +976 -0
  122. package/scripts/kill-intent.sh +125 -0
  123. package/scripts/lib/common.sh +29 -0
  124. package/scripts/lib/intent.sh +61 -0
  125. package/scripts/lib/progress.sh +57 -0
  126. package/scripts/lib/suggest-next.sh +131 -0
  127. package/scripts/lib/validate-intents.sh +240 -0
  128. package/scripts/lib/verify-outputs.sh +55 -0
  129. package/scripts/lib/workflow_state.sh +201 -0
  130. package/scripts/new-intent.sh +271 -0
  131. package/scripts/publish-npm.sh +28 -0
  132. package/scripts/scope-project.sh +380 -0
  133. package/scripts/setup-worktrees.sh +125 -0
  134. package/scripts/status.sh +278 -0
  135. package/scripts/suggest.sh +173 -0
  136. package/scripts/test-headless.sh +47 -0
  137. package/scripts/test-shipit.sh +52 -0
  138. package/scripts/test-workflow-state.sh +49 -0
  139. package/scripts/usage-report.sh +47 -0
  140. package/scripts/usage.sh +58 -0
  141. package/scripts/validate-cursor.sh +151 -0
  142. package/scripts/validate-project.sh +71 -0
  143. package/scripts/validate-vscode.sh +146 -0
  144. package/scripts/verify.sh +153 -0
  145. package/scripts/workflow-orchestrator.sh +97 -0
  146. package/scripts/workflow-templates/01_analysis.md.tpl +25 -0
  147. package/scripts/workflow-templates/02_plan.md.tpl +30 -0
  148. package/scripts/workflow-templates/03_implementation.md.tpl +25 -0
  149. package/scripts/workflow-templates/04_verification.md.tpl +29 -0
  150. package/scripts/workflow-templates/05_release_notes.md.tpl +16 -0
  151. package/scripts/workflow-templates/05_verification_legacy.md.tpl +6 -0
  152. package/scripts/workflow-templates/active.md.tpl +18 -0
  153. package/scripts/workflow-templates/phases.yml +39 -0
  154. package/stryker.conf.json +8 -0
  155. package/work/intent/templates/api-endpoint.md +124 -0
  156. package/work/intent/templates/bugfix.md +116 -0
  157. package/work/intent/templates/frontend-feature.md +115 -0
  158. package/work/intent/templates/generic.md +122 -0
  159. package/work/intent/templates/infra-change.md +121 -0
  160. package/work/intent/templates/refactor.md +116 -0
@@ -0,0 +1,2721 @@
1
+ lockfileVersion: '9.0'
2
+
3
+ settings:
4
+ autoInstallPeers: true
5
+ excludeLinksFromLockfile: false
6
+
7
+ importers:
8
+ .:
9
+ dependencies:
10
+ react:
11
+ specifier: ^19.2.0
12
+ version: 19.2.4
13
+ react-dom:
14
+ specifier: ^19.2.0
15
+ version: 19.2.4(react@19.2.4)
16
+ devDependencies:
17
+ '@eslint/js':
18
+ specifier: ^9.39.1
19
+ version: 9.39.2
20
+ '@types/node':
21
+ specifier: ^24.10.1
22
+ version: 24.10.12
23
+ '@types/react':
24
+ specifier: ^19.2.7
25
+ version: 19.2.13
26
+ '@types/react-dom':
27
+ specifier: ^19.2.3
28
+ version: 19.2.3(@types/react@19.2.13)
29
+ '@vitejs/plugin-react':
30
+ specifier: ^5.1.1
31
+ version: 5.1.3(vite@7.3.1(@types/node@24.10.12))
32
+ eslint:
33
+ specifier: ^9.39.1
34
+ version: 9.39.2
35
+ eslint-plugin-react-hooks:
36
+ specifier: ^7.0.1
37
+ version: 7.0.1(eslint@9.39.2)
38
+ eslint-plugin-react-refresh:
39
+ specifier: ^0.4.24
40
+ version: 0.4.26(eslint@9.39.2)
41
+ globals:
42
+ specifier: ^16.5.0
43
+ version: 16.5.0
44
+ typescript:
45
+ specifier: ~5.9.3
46
+ version: 5.9.3
47
+ typescript-eslint:
48
+ specifier: ^8.48.0
49
+ version: 8.55.0(eslint@9.39.2)(typescript@5.9.3)
50
+ vite:
51
+ specifier: ^7.3.1
52
+ version: 7.3.1(@types/node@24.10.12)
53
+
54
+ packages:
55
+ '@babel/code-frame@7.29.0':
56
+ resolution:
57
+ {
58
+ integrity: sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==,
59
+ }
60
+ engines: { node: '>=6.9.0' }
61
+
62
+ '@babel/compat-data@7.29.0':
63
+ resolution:
64
+ {
65
+ integrity: sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==,
66
+ }
67
+ engines: { node: '>=6.9.0' }
68
+
69
+ '@babel/core@7.29.0':
70
+ resolution:
71
+ {
72
+ integrity: sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==,
73
+ }
74
+ engines: { node: '>=6.9.0' }
75
+
76
+ '@babel/generator@7.29.1':
77
+ resolution:
78
+ {
79
+ integrity: sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==,
80
+ }
81
+ engines: { node: '>=6.9.0' }
82
+
83
+ '@babel/helper-compilation-targets@7.28.6':
84
+ resolution:
85
+ {
86
+ integrity: sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==,
87
+ }
88
+ engines: { node: '>=6.9.0' }
89
+
90
+ '@babel/helper-globals@7.28.0':
91
+ resolution:
92
+ {
93
+ integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==,
94
+ }
95
+ engines: { node: '>=6.9.0' }
96
+
97
+ '@babel/helper-module-imports@7.28.6':
98
+ resolution:
99
+ {
100
+ integrity: sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==,
101
+ }
102
+ engines: { node: '>=6.9.0' }
103
+
104
+ '@babel/helper-module-transforms@7.28.6':
105
+ resolution:
106
+ {
107
+ integrity: sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==,
108
+ }
109
+ engines: { node: '>=6.9.0' }
110
+ peerDependencies:
111
+ '@babel/core': ^7.0.0
112
+
113
+ '@babel/helper-plugin-utils@7.28.6':
114
+ resolution:
115
+ {
116
+ integrity: sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==,
117
+ }
118
+ engines: { node: '>=6.9.0' }
119
+
120
+ '@babel/helper-string-parser@7.27.1':
121
+ resolution:
122
+ {
123
+ integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==,
124
+ }
125
+ engines: { node: '>=6.9.0' }
126
+
127
+ '@babel/helper-validator-identifier@7.28.5':
128
+ resolution:
129
+ {
130
+ integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==,
131
+ }
132
+ engines: { node: '>=6.9.0' }
133
+
134
+ '@babel/helper-validator-option@7.27.1':
135
+ resolution:
136
+ {
137
+ integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==,
138
+ }
139
+ engines: { node: '>=6.9.0' }
140
+
141
+ '@babel/helpers@7.28.6':
142
+ resolution:
143
+ {
144
+ integrity: sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==,
145
+ }
146
+ engines: { node: '>=6.9.0' }
147
+
148
+ '@babel/parser@7.29.0':
149
+ resolution:
150
+ {
151
+ integrity: sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==,
152
+ }
153
+ engines: { node: '>=6.0.0' }
154
+ hasBin: true
155
+
156
+ '@babel/plugin-transform-react-jsx-self@7.27.1':
157
+ resolution:
158
+ {
159
+ integrity: sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==,
160
+ }
161
+ engines: { node: '>=6.9.0' }
162
+ peerDependencies:
163
+ '@babel/core': ^7.0.0-0
164
+
165
+ '@babel/plugin-transform-react-jsx-source@7.27.1':
166
+ resolution:
167
+ {
168
+ integrity: sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==,
169
+ }
170
+ engines: { node: '>=6.9.0' }
171
+ peerDependencies:
172
+ '@babel/core': ^7.0.0-0
173
+
174
+ '@babel/template@7.28.6':
175
+ resolution:
176
+ {
177
+ integrity: sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==,
178
+ }
179
+ engines: { node: '>=6.9.0' }
180
+
181
+ '@babel/traverse@7.29.0':
182
+ resolution:
183
+ {
184
+ integrity: sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==,
185
+ }
186
+ engines: { node: '>=6.9.0' }
187
+
188
+ '@babel/types@7.29.0':
189
+ resolution:
190
+ {
191
+ integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==,
192
+ }
193
+ engines: { node: '>=6.9.0' }
194
+
195
+ '@esbuild/aix-ppc64@0.27.3':
196
+ resolution:
197
+ {
198
+ integrity: sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==,
199
+ }
200
+ engines: { node: '>=18' }
201
+ cpu: [ppc64]
202
+ os: [aix]
203
+
204
+ '@esbuild/android-arm64@0.27.3':
205
+ resolution:
206
+ {
207
+ integrity: sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg==,
208
+ }
209
+ engines: { node: '>=18' }
210
+ cpu: [arm64]
211
+ os: [android]
212
+
213
+ '@esbuild/android-arm@0.27.3':
214
+ resolution:
215
+ {
216
+ integrity: sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA==,
217
+ }
218
+ engines: { node: '>=18' }
219
+ cpu: [arm]
220
+ os: [android]
221
+
222
+ '@esbuild/android-x64@0.27.3':
223
+ resolution:
224
+ {
225
+ integrity: sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ==,
226
+ }
227
+ engines: { node: '>=18' }
228
+ cpu: [x64]
229
+ os: [android]
230
+
231
+ '@esbuild/darwin-arm64@0.27.3':
232
+ resolution:
233
+ {
234
+ integrity: sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg==,
235
+ }
236
+ engines: { node: '>=18' }
237
+ cpu: [arm64]
238
+ os: [darwin]
239
+
240
+ '@esbuild/darwin-x64@0.27.3':
241
+ resolution:
242
+ {
243
+ integrity: sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg==,
244
+ }
245
+ engines: { node: '>=18' }
246
+ cpu: [x64]
247
+ os: [darwin]
248
+
249
+ '@esbuild/freebsd-arm64@0.27.3':
250
+ resolution:
251
+ {
252
+ integrity: sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w==,
253
+ }
254
+ engines: { node: '>=18' }
255
+ cpu: [arm64]
256
+ os: [freebsd]
257
+
258
+ '@esbuild/freebsd-x64@0.27.3':
259
+ resolution:
260
+ {
261
+ integrity: sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA==,
262
+ }
263
+ engines: { node: '>=18' }
264
+ cpu: [x64]
265
+ os: [freebsd]
266
+
267
+ '@esbuild/linux-arm64@0.27.3':
268
+ resolution:
269
+ {
270
+ integrity: sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg==,
271
+ }
272
+ engines: { node: '>=18' }
273
+ cpu: [arm64]
274
+ os: [linux]
275
+
276
+ '@esbuild/linux-arm@0.27.3':
277
+ resolution:
278
+ {
279
+ integrity: sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw==,
280
+ }
281
+ engines: { node: '>=18' }
282
+ cpu: [arm]
283
+ os: [linux]
284
+
285
+ '@esbuild/linux-ia32@0.27.3':
286
+ resolution:
287
+ {
288
+ integrity: sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==,
289
+ }
290
+ engines: { node: '>=18' }
291
+ cpu: [ia32]
292
+ os: [linux]
293
+
294
+ '@esbuild/linux-loong64@0.27.3':
295
+ resolution:
296
+ {
297
+ integrity: sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA==,
298
+ }
299
+ engines: { node: '>=18' }
300
+ cpu: [loong64]
301
+ os: [linux]
302
+
303
+ '@esbuild/linux-mips64el@0.27.3':
304
+ resolution:
305
+ {
306
+ integrity: sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw==,
307
+ }
308
+ engines: { node: '>=18' }
309
+ cpu: [mips64el]
310
+ os: [linux]
311
+
312
+ '@esbuild/linux-ppc64@0.27.3':
313
+ resolution:
314
+ {
315
+ integrity: sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA==,
316
+ }
317
+ engines: { node: '>=18' }
318
+ cpu: [ppc64]
319
+ os: [linux]
320
+
321
+ '@esbuild/linux-riscv64@0.27.3':
322
+ resolution:
323
+ {
324
+ integrity: sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ==,
325
+ }
326
+ engines: { node: '>=18' }
327
+ cpu: [riscv64]
328
+ os: [linux]
329
+
330
+ '@esbuild/linux-s390x@0.27.3':
331
+ resolution:
332
+ {
333
+ integrity: sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==,
334
+ }
335
+ engines: { node: '>=18' }
336
+ cpu: [s390x]
337
+ os: [linux]
338
+
339
+ '@esbuild/linux-x64@0.27.3':
340
+ resolution:
341
+ {
342
+ integrity: sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA==,
343
+ }
344
+ engines: { node: '>=18' }
345
+ cpu: [x64]
346
+ os: [linux]
347
+
348
+ '@esbuild/netbsd-arm64@0.27.3':
349
+ resolution:
350
+ {
351
+ integrity: sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA==,
352
+ }
353
+ engines: { node: '>=18' }
354
+ cpu: [arm64]
355
+ os: [netbsd]
356
+
357
+ '@esbuild/netbsd-x64@0.27.3':
358
+ resolution:
359
+ {
360
+ integrity: sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA==,
361
+ }
362
+ engines: { node: '>=18' }
363
+ cpu: [x64]
364
+ os: [netbsd]
365
+
366
+ '@esbuild/openbsd-arm64@0.27.3':
367
+ resolution:
368
+ {
369
+ integrity: sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw==,
370
+ }
371
+ engines: { node: '>=18' }
372
+ cpu: [arm64]
373
+ os: [openbsd]
374
+
375
+ '@esbuild/openbsd-x64@0.27.3':
376
+ resolution:
377
+ {
378
+ integrity: sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ==,
379
+ }
380
+ engines: { node: '>=18' }
381
+ cpu: [x64]
382
+ os: [openbsd]
383
+
384
+ '@esbuild/openharmony-arm64@0.27.3':
385
+ resolution:
386
+ {
387
+ integrity: sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==,
388
+ }
389
+ engines: { node: '>=18' }
390
+ cpu: [arm64]
391
+ os: [openharmony]
392
+
393
+ '@esbuild/sunos-x64@0.27.3':
394
+ resolution:
395
+ {
396
+ integrity: sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA==,
397
+ }
398
+ engines: { node: '>=18' }
399
+ cpu: [x64]
400
+ os: [sunos]
401
+
402
+ '@esbuild/win32-arm64@0.27.3':
403
+ resolution:
404
+ {
405
+ integrity: sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA==,
406
+ }
407
+ engines: { node: '>=18' }
408
+ cpu: [arm64]
409
+ os: [win32]
410
+
411
+ '@esbuild/win32-ia32@0.27.3':
412
+ resolution:
413
+ {
414
+ integrity: sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==,
415
+ }
416
+ engines: { node: '>=18' }
417
+ cpu: [ia32]
418
+ os: [win32]
419
+
420
+ '@esbuild/win32-x64@0.27.3':
421
+ resolution:
422
+ {
423
+ integrity: sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==,
424
+ }
425
+ engines: { node: '>=18' }
426
+ cpu: [x64]
427
+ os: [win32]
428
+
429
+ '@eslint-community/eslint-utils@4.9.1':
430
+ resolution:
431
+ {
432
+ integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==,
433
+ }
434
+ engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
435
+ peerDependencies:
436
+ eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
437
+
438
+ '@eslint-community/regexpp@4.12.2':
439
+ resolution:
440
+ {
441
+ integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==,
442
+ }
443
+ engines: { node: ^12.0.0 || ^14.0.0 || >=16.0.0 }
444
+
445
+ '@eslint/config-array@0.21.1':
446
+ resolution:
447
+ {
448
+ integrity: sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==,
449
+ }
450
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
451
+
452
+ '@eslint/config-helpers@0.4.2':
453
+ resolution:
454
+ {
455
+ integrity: sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==,
456
+ }
457
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
458
+
459
+ '@eslint/core@0.17.0':
460
+ resolution:
461
+ {
462
+ integrity: sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==,
463
+ }
464
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
465
+
466
+ '@eslint/eslintrc@3.3.3':
467
+ resolution:
468
+ {
469
+ integrity: sha512-Kr+LPIUVKz2qkx1HAMH8q1q6azbqBAsXJUxBl/ODDuVPX45Z9DfwB8tPjTi6nNZ8BuM3nbJxC5zCAg5elnBUTQ==,
470
+ }
471
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
472
+
473
+ '@eslint/js@9.39.2':
474
+ resolution:
475
+ {
476
+ integrity: sha512-q1mjIoW1VX4IvSocvM/vbTiveKC4k9eLrajNEuSsmjymSDEbpGddtpfOoN7YGAqBK3NG+uqo8ia4PDTt8buCYA==,
477
+ }
478
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
479
+
480
+ '@eslint/object-schema@2.1.7':
481
+ resolution:
482
+ {
483
+ integrity: sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==,
484
+ }
485
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
486
+
487
+ '@eslint/plugin-kit@0.4.1':
488
+ resolution:
489
+ {
490
+ integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==,
491
+ }
492
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
493
+
494
+ '@humanfs/core@0.19.1':
495
+ resolution:
496
+ {
497
+ integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==,
498
+ }
499
+ engines: { node: '>=18.18.0' }
500
+
501
+ '@humanfs/node@0.16.7':
502
+ resolution:
503
+ {
504
+ integrity: sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==,
505
+ }
506
+ engines: { node: '>=18.18.0' }
507
+
508
+ '@humanwhocodes/module-importer@1.0.1':
509
+ resolution:
510
+ {
511
+ integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==,
512
+ }
513
+ engines: { node: '>=12.22' }
514
+
515
+ '@humanwhocodes/retry@0.4.3':
516
+ resolution:
517
+ {
518
+ integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==,
519
+ }
520
+ engines: { node: '>=18.18' }
521
+
522
+ '@jridgewell/gen-mapping@0.3.13':
523
+ resolution:
524
+ {
525
+ integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==,
526
+ }
527
+
528
+ '@jridgewell/remapping@2.3.5':
529
+ resolution:
530
+ {
531
+ integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==,
532
+ }
533
+
534
+ '@jridgewell/resolve-uri@3.1.2':
535
+ resolution:
536
+ {
537
+ integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==,
538
+ }
539
+ engines: { node: '>=6.0.0' }
540
+
541
+ '@jridgewell/sourcemap-codec@1.5.5':
542
+ resolution:
543
+ {
544
+ integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==,
545
+ }
546
+
547
+ '@jridgewell/trace-mapping@0.3.31':
548
+ resolution:
549
+ {
550
+ integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==,
551
+ }
552
+
553
+ '@rolldown/pluginutils@1.0.0-rc.2':
554
+ resolution:
555
+ {
556
+ integrity: sha512-izyXV/v+cHiRfozX62W9htOAvwMo4/bXKDrQ+vom1L1qRuexPock/7VZDAhnpHCLNejd3NJ6hiab+tO0D44Rgw==,
557
+ }
558
+
559
+ '@rollup/rollup-android-arm-eabi@4.57.1':
560
+ resolution:
561
+ {
562
+ integrity: sha512-A6ehUVSiSaaliTxai040ZpZ2zTevHYbvu/lDoeAteHI8QnaosIzm4qwtezfRg1jOYaUmnzLX1AOD6Z+UJjtifg==,
563
+ }
564
+ cpu: [arm]
565
+ os: [android]
566
+
567
+ '@rollup/rollup-android-arm64@4.57.1':
568
+ resolution:
569
+ {
570
+ integrity: sha512-dQaAddCY9YgkFHZcFNS/606Exo8vcLHwArFZ7vxXq4rigo2bb494/xKMMwRRQW6ug7Js6yXmBZhSBRuBvCCQ3w==,
571
+ }
572
+ cpu: [arm64]
573
+ os: [android]
574
+
575
+ '@rollup/rollup-darwin-arm64@4.57.1':
576
+ resolution:
577
+ {
578
+ integrity: sha512-crNPrwJOrRxagUYeMn/DZwqN88SDmwaJ8Cvi/TN1HnWBU7GwknckyosC2gd0IqYRsHDEnXf328o9/HC6OkPgOg==,
579
+ }
580
+ cpu: [arm64]
581
+ os: [darwin]
582
+
583
+ '@rollup/rollup-darwin-x64@4.57.1':
584
+ resolution:
585
+ {
586
+ integrity: sha512-Ji8g8ChVbKrhFtig5QBV7iMaJrGtpHelkB3lsaKzadFBe58gmjfGXAOfI5FV0lYMH8wiqsxKQ1C9B0YTRXVy4w==,
587
+ }
588
+ cpu: [x64]
589
+ os: [darwin]
590
+
591
+ '@rollup/rollup-freebsd-arm64@4.57.1':
592
+ resolution:
593
+ {
594
+ integrity: sha512-R+/WwhsjmwodAcz65guCGFRkMb4gKWTcIeLy60JJQbXrJ97BOXHxnkPFrP+YwFlaS0m+uWJTstrUA9o+UchFug==,
595
+ }
596
+ cpu: [arm64]
597
+ os: [freebsd]
598
+
599
+ '@rollup/rollup-freebsd-x64@4.57.1':
600
+ resolution:
601
+ {
602
+ integrity: sha512-IEQTCHeiTOnAUC3IDQdzRAGj3jOAYNr9kBguI7MQAAZK3caezRrg0GxAb6Hchg4lxdZEI5Oq3iov/w/hnFWY9Q==,
603
+ }
604
+ cpu: [x64]
605
+ os: [freebsd]
606
+
607
+ '@rollup/rollup-linux-arm-gnueabihf@4.57.1':
608
+ resolution:
609
+ {
610
+ integrity: sha512-F8sWbhZ7tyuEfsmOxwc2giKDQzN3+kuBLPwwZGyVkLlKGdV1nvnNwYD0fKQ8+XS6hp9nY7B+ZeK01EBUE7aHaw==,
611
+ }
612
+ cpu: [arm]
613
+ os: [linux]
614
+
615
+ '@rollup/rollup-linux-arm-musleabihf@4.57.1':
616
+ resolution:
617
+ {
618
+ integrity: sha512-rGfNUfn0GIeXtBP1wL5MnzSj98+PZe/AXaGBCRmT0ts80lU5CATYGxXukeTX39XBKsxzFpEeK+Mrp9faXOlmrw==,
619
+ }
620
+ cpu: [arm]
621
+ os: [linux]
622
+
623
+ '@rollup/rollup-linux-arm64-gnu@4.57.1':
624
+ resolution:
625
+ {
626
+ integrity: sha512-MMtej3YHWeg/0klK2Qodf3yrNzz6CGjo2UntLvk2RSPlhzgLvYEB3frRvbEF2wRKh1Z2fDIg9KRPe1fawv7C+g==,
627
+ }
628
+ cpu: [arm64]
629
+ os: [linux]
630
+
631
+ '@rollup/rollup-linux-arm64-musl@4.57.1':
632
+ resolution:
633
+ {
634
+ integrity: sha512-1a/qhaaOXhqXGpMFMET9VqwZakkljWHLmZOX48R0I/YLbhdxr1m4gtG1Hq7++VhVUmf+L3sTAf9op4JlhQ5u1Q==,
635
+ }
636
+ cpu: [arm64]
637
+ os: [linux]
638
+
639
+ '@rollup/rollup-linux-loong64-gnu@4.57.1':
640
+ resolution:
641
+ {
642
+ integrity: sha512-QWO6RQTZ/cqYtJMtxhkRkidoNGXc7ERPbZN7dVW5SdURuLeVU7lwKMpo18XdcmpWYd0qsP1bwKPf7DNSUinhvA==,
643
+ }
644
+ cpu: [loong64]
645
+ os: [linux]
646
+
647
+ '@rollup/rollup-linux-loong64-musl@4.57.1':
648
+ resolution:
649
+ {
650
+ integrity: sha512-xpObYIf+8gprgWaPP32xiN5RVTi/s5FCR+XMXSKmhfoJjrpRAjCuuqQXyxUa/eJTdAE6eJ+KDKaoEqjZQxh3Gw==,
651
+ }
652
+ cpu: [loong64]
653
+ os: [linux]
654
+
655
+ '@rollup/rollup-linux-ppc64-gnu@4.57.1':
656
+ resolution:
657
+ {
658
+ integrity: sha512-4BrCgrpZo4hvzMDKRqEaW1zeecScDCR+2nZ86ATLhAoJ5FQ+lbHVD3ttKe74/c7tNT9c6F2viwB3ufwp01Oh2w==,
659
+ }
660
+ cpu: [ppc64]
661
+ os: [linux]
662
+
663
+ '@rollup/rollup-linux-ppc64-musl@4.57.1':
664
+ resolution:
665
+ {
666
+ integrity: sha512-NOlUuzesGauESAyEYFSe3QTUguL+lvrN1HtwEEsU2rOwdUDeTMJdO5dUYl/2hKf9jWydJrO9OL/XSSf65R5+Xw==,
667
+ }
668
+ cpu: [ppc64]
669
+ os: [linux]
670
+
671
+ '@rollup/rollup-linux-riscv64-gnu@4.57.1':
672
+ resolution:
673
+ {
674
+ integrity: sha512-ptA88htVp0AwUUqhVghwDIKlvJMD/fmL/wrQj99PRHFRAG6Z5nbWoWG4o81Nt9FT+IuqUQi+L31ZKAFeJ5Is+A==,
675
+ }
676
+ cpu: [riscv64]
677
+ os: [linux]
678
+
679
+ '@rollup/rollup-linux-riscv64-musl@4.57.1':
680
+ resolution:
681
+ {
682
+ integrity: sha512-S51t7aMMTNdmAMPpBg7OOsTdn4tySRQvklmL3RpDRyknk87+Sp3xaumlatU+ppQ+5raY7sSTcC2beGgvhENfuw==,
683
+ }
684
+ cpu: [riscv64]
685
+ os: [linux]
686
+
687
+ '@rollup/rollup-linux-s390x-gnu@4.57.1':
688
+ resolution:
689
+ {
690
+ integrity: sha512-Bl00OFnVFkL82FHbEqy3k5CUCKH6OEJL54KCyx2oqsmZnFTR8IoNqBF+mjQVcRCT5sB6yOvK8A37LNm/kPJiZg==,
691
+ }
692
+ cpu: [s390x]
693
+ os: [linux]
694
+
695
+ '@rollup/rollup-linux-x64-gnu@4.57.1':
696
+ resolution:
697
+ {
698
+ integrity: sha512-ABca4ceT4N+Tv/GtotnWAeXZUZuM/9AQyCyKYyKnpk4yoA7QIAuBt6Hkgpw8kActYlew2mvckXkvx0FfoInnLg==,
699
+ }
700
+ cpu: [x64]
701
+ os: [linux]
702
+
703
+ '@rollup/rollup-linux-x64-musl@4.57.1':
704
+ resolution:
705
+ {
706
+ integrity: sha512-HFps0JeGtuOR2convgRRkHCekD7j+gdAuXM+/i6kGzQtFhlCtQkpwtNzkNj6QhCDp7DRJ7+qC/1Vg2jt5iSOFw==,
707
+ }
708
+ cpu: [x64]
709
+ os: [linux]
710
+
711
+ '@rollup/rollup-openbsd-x64@4.57.1':
712
+ resolution:
713
+ {
714
+ integrity: sha512-H+hXEv9gdVQuDTgnqD+SQffoWoc0Of59AStSzTEj/feWTBAnSfSD3+Dql1ZruJQxmykT/JVY0dE8Ka7z0DH1hw==,
715
+ }
716
+ cpu: [x64]
717
+ os: [openbsd]
718
+
719
+ '@rollup/rollup-openharmony-arm64@4.57.1':
720
+ resolution:
721
+ {
722
+ integrity: sha512-4wYoDpNg6o/oPximyc/NG+mYUejZrCU2q+2w6YZqrAs2UcNUChIZXjtafAiiZSUc7On8v5NyNj34Kzj/Ltk6dQ==,
723
+ }
724
+ cpu: [arm64]
725
+ os: [openharmony]
726
+
727
+ '@rollup/rollup-win32-arm64-msvc@4.57.1':
728
+ resolution:
729
+ {
730
+ integrity: sha512-O54mtsV/6LW3P8qdTcamQmuC990HDfR71lo44oZMZlXU4tzLrbvTii87Ni9opq60ds0YzuAlEr/GNwuNluZyMQ==,
731
+ }
732
+ cpu: [arm64]
733
+ os: [win32]
734
+
735
+ '@rollup/rollup-win32-ia32-msvc@4.57.1':
736
+ resolution:
737
+ {
738
+ integrity: sha512-P3dLS+IerxCT/7D2q2FYcRdWRl22dNbrbBEtxdWhXrfIMPP9lQhb5h4Du04mdl5Woq05jVCDPCMF7Ub0NAjIew==,
739
+ }
740
+ cpu: [ia32]
741
+ os: [win32]
742
+
743
+ '@rollup/rollup-win32-x64-gnu@4.57.1':
744
+ resolution:
745
+ {
746
+ integrity: sha512-VMBH2eOOaKGtIJYleXsi2B8CPVADrh+TyNxJ4mWPnKfLB/DBUmzW+5m1xUrcwWoMfSLagIRpjUFeW5CO5hyciQ==,
747
+ }
748
+ cpu: [x64]
749
+ os: [win32]
750
+
751
+ '@rollup/rollup-win32-x64-msvc@4.57.1':
752
+ resolution:
753
+ {
754
+ integrity: sha512-mxRFDdHIWRxg3UfIIAwCm6NzvxG0jDX/wBN6KsQFTvKFqqg9vTrWUE68qEjHt19A5wwx5X5aUi2zuZT7YR0jrA==,
755
+ }
756
+ cpu: [x64]
757
+ os: [win32]
758
+
759
+ '@types/babel__core@7.20.5':
760
+ resolution:
761
+ {
762
+ integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==,
763
+ }
764
+
765
+ '@types/babel__generator@7.27.0':
766
+ resolution:
767
+ {
768
+ integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==,
769
+ }
770
+
771
+ '@types/babel__template@7.4.4':
772
+ resolution:
773
+ {
774
+ integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==,
775
+ }
776
+
777
+ '@types/babel__traverse@7.28.0':
778
+ resolution:
779
+ {
780
+ integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==,
781
+ }
782
+
783
+ '@types/estree@1.0.8':
784
+ resolution:
785
+ {
786
+ integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==,
787
+ }
788
+
789
+ '@types/json-schema@7.0.15':
790
+ resolution:
791
+ {
792
+ integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==,
793
+ }
794
+
795
+ '@types/node@24.10.12':
796
+ resolution:
797
+ {
798
+ integrity: sha512-68e+T28EbdmLSTkPgs3+UacC6rzmqrcWFPQs1C8mwJhI/r5Uxr0yEuQotczNRROd1gq30NGxee+fo0rSIxpyAw==,
799
+ }
800
+
801
+ '@types/react-dom@19.2.3':
802
+ resolution:
803
+ {
804
+ integrity: sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==,
805
+ }
806
+ peerDependencies:
807
+ '@types/react': ^19.2.0
808
+
809
+ '@types/react@19.2.13':
810
+ resolution:
811
+ {
812
+ integrity: sha512-KkiJeU6VbYbUOp5ITMIc7kBfqlYkKA5KhEHVrGMmUUMt7NeaZg65ojdPk+FtNrBAOXNVM5QM72jnADjM+XVRAQ==,
813
+ }
814
+
815
+ '@typescript-eslint/eslint-plugin@8.55.0':
816
+ resolution:
817
+ {
818
+ integrity: sha512-1y/MVSz0NglV1ijHC8OT49mPJ4qhPYjiK08YUQVbIOyu+5k862LKUHFkpKHWu//zmr7hDR2rhwUm6gnCGNmGBQ==,
819
+ }
820
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
821
+ peerDependencies:
822
+ '@typescript-eslint/parser': ^8.55.0
823
+ eslint: ^8.57.0 || ^9.0.0
824
+ typescript: '>=4.8.4 <6.0.0'
825
+
826
+ '@typescript-eslint/parser@8.55.0':
827
+ resolution:
828
+ {
829
+ integrity: sha512-4z2nCSBfVIMnbuu8uinj+f0o4qOeggYJLbjpPHka3KH1om7e+H9yLKTYgksTaHcGco+NClhhY2vyO3HsMH1RGw==,
830
+ }
831
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
832
+ peerDependencies:
833
+ eslint: ^8.57.0 || ^9.0.0
834
+ typescript: '>=4.8.4 <6.0.0'
835
+
836
+ '@typescript-eslint/project-service@8.55.0':
837
+ resolution:
838
+ {
839
+ integrity: sha512-zRcVVPFUYWa3kNnjaZGXSu3xkKV1zXy8M4nO/pElzQhFweb7PPtluDLQtKArEOGmjXoRjnUZ29NjOiF0eCDkcQ==,
840
+ }
841
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
842
+ peerDependencies:
843
+ typescript: '>=4.8.4 <6.0.0'
844
+
845
+ '@typescript-eslint/scope-manager@8.55.0':
846
+ resolution:
847
+ {
848
+ integrity: sha512-fVu5Omrd3jeqeQLiB9f1YsuK/iHFOwb04bCtY4BSCLgjNbOD33ZdV6KyEqplHr+IlpgT0QTZ/iJ+wT7hvTx49Q==,
849
+ }
850
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
851
+
852
+ '@typescript-eslint/tsconfig-utils@8.55.0':
853
+ resolution:
854
+ {
855
+ integrity: sha512-1R9cXqY7RQd7WuqSN47PK9EDpgFUK3VqdmbYrvWJZYDd0cavROGn+74ktWBlmJ13NXUQKlZ/iAEQHI/V0kKe0Q==,
856
+ }
857
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
858
+ peerDependencies:
859
+ typescript: '>=4.8.4 <6.0.0'
860
+
861
+ '@typescript-eslint/type-utils@8.55.0':
862
+ resolution:
863
+ {
864
+ integrity: sha512-x1iH2unH4qAt6I37I2CGlsNs+B9WGxurP2uyZLRz6UJoZWDBx9cJL1xVN/FiOmHEONEg6RIufdvyT0TEYIgC5g==,
865
+ }
866
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
867
+ peerDependencies:
868
+ eslint: ^8.57.0 || ^9.0.0
869
+ typescript: '>=4.8.4 <6.0.0'
870
+
871
+ '@typescript-eslint/types@8.55.0':
872
+ resolution:
873
+ {
874
+ integrity: sha512-ujT0Je8GI5BJWi+/mMoR0wxwVEQaxM+pi30xuMiJETlX80OPovb2p9E8ss87gnSVtYXtJoU9U1Cowcr6w2FE0w==,
875
+ }
876
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
877
+
878
+ '@typescript-eslint/typescript-estree@8.55.0':
879
+ resolution:
880
+ {
881
+ integrity: sha512-EwrH67bSWdx/3aRQhCoxDaHM+CrZjotc2UCCpEDVqfCE+7OjKAGWNY2HsCSTEVvWH2clYQK8pdeLp42EVs+xQw==,
882
+ }
883
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
884
+ peerDependencies:
885
+ typescript: '>=4.8.4 <6.0.0'
886
+
887
+ '@typescript-eslint/utils@8.55.0':
888
+ resolution:
889
+ {
890
+ integrity: sha512-BqZEsnPGdYpgyEIkDC1BadNY8oMwckftxBT+C8W0g1iKPdeqKZBtTfnvcq0nf60u7MkjFO8RBvpRGZBPw4L2ow==,
891
+ }
892
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
893
+ peerDependencies:
894
+ eslint: ^8.57.0 || ^9.0.0
895
+ typescript: '>=4.8.4 <6.0.0'
896
+
897
+ '@typescript-eslint/visitor-keys@8.55.0':
898
+ resolution:
899
+ {
900
+ integrity: sha512-AxNRwEie8Nn4eFS1FzDMJWIISMGoXMb037sgCBJ3UR6o0fQTzr2tqN9WT+DkWJPhIdQCfV7T6D387566VtnCJA==,
901
+ }
902
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
903
+
904
+ '@vitejs/plugin-react@5.1.3':
905
+ resolution:
906
+ {
907
+ integrity: sha512-NVUnA6gQCl8jfoYqKqQU5Clv0aPw14KkZYCsX6T9Lfu9slI0LOU10OTwFHS/WmptsMMpshNd/1tuWsHQ2Uk+cg==,
908
+ }
909
+ engines: { node: ^20.19.0 || >=22.12.0 }
910
+ peerDependencies:
911
+ vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
912
+
913
+ acorn-jsx@5.3.2:
914
+ resolution:
915
+ {
916
+ integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==,
917
+ }
918
+ peerDependencies:
919
+ acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
920
+
921
+ acorn@8.15.0:
922
+ resolution:
923
+ {
924
+ integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==,
925
+ }
926
+ engines: { node: '>=0.4.0' }
927
+ hasBin: true
928
+
929
+ ajv@6.12.6:
930
+ resolution:
931
+ {
932
+ integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==,
933
+ }
934
+
935
+ ansi-styles@4.3.0:
936
+ resolution:
937
+ {
938
+ integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==,
939
+ }
940
+ engines: { node: '>=8' }
941
+
942
+ argparse@2.0.1:
943
+ resolution:
944
+ {
945
+ integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==,
946
+ }
947
+
948
+ balanced-match@1.0.2:
949
+ resolution:
950
+ {
951
+ integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==,
952
+ }
953
+
954
+ baseline-browser-mapping@2.9.19:
955
+ resolution:
956
+ {
957
+ integrity: sha512-ipDqC8FrAl/76p2SSWKSI+H9tFwm7vYqXQrItCuiVPt26Km0jS+NzSsBWAaBusvSbQcfJG+JitdMm+wZAgTYqg==,
958
+ }
959
+ hasBin: true
960
+
961
+ brace-expansion@1.1.12:
962
+ resolution:
963
+ {
964
+ integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==,
965
+ }
966
+
967
+ brace-expansion@2.0.2:
968
+ resolution:
969
+ {
970
+ integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==,
971
+ }
972
+
973
+ browserslist@4.28.1:
974
+ resolution:
975
+ {
976
+ integrity: sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==,
977
+ }
978
+ engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 }
979
+ hasBin: true
980
+
981
+ callsites@3.1.0:
982
+ resolution:
983
+ {
984
+ integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==,
985
+ }
986
+ engines: { node: '>=6' }
987
+
988
+ caniuse-lite@1.0.30001769:
989
+ resolution:
990
+ {
991
+ integrity: sha512-BCfFL1sHijQlBGWBMuJyhZUhzo7wer5sVj9hqekB/7xn0Ypy+pER/edCYQm4exbXj4WiySGp40P8UuTh6w1srg==,
992
+ }
993
+
994
+ chalk@4.1.2:
995
+ resolution:
996
+ {
997
+ integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==,
998
+ }
999
+ engines: { node: '>=10' }
1000
+
1001
+ color-convert@2.0.1:
1002
+ resolution:
1003
+ {
1004
+ integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==,
1005
+ }
1006
+ engines: { node: '>=7.0.0' }
1007
+
1008
+ color-name@1.1.4:
1009
+ resolution:
1010
+ {
1011
+ integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==,
1012
+ }
1013
+
1014
+ concat-map@0.0.1:
1015
+ resolution:
1016
+ {
1017
+ integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==,
1018
+ }
1019
+
1020
+ convert-source-map@2.0.0:
1021
+ resolution:
1022
+ {
1023
+ integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==,
1024
+ }
1025
+
1026
+ cross-spawn@7.0.6:
1027
+ resolution:
1028
+ {
1029
+ integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==,
1030
+ }
1031
+ engines: { node: '>= 8' }
1032
+
1033
+ csstype@3.2.3:
1034
+ resolution:
1035
+ {
1036
+ integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==,
1037
+ }
1038
+
1039
+ debug@4.4.3:
1040
+ resolution:
1041
+ {
1042
+ integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==,
1043
+ }
1044
+ engines: { node: '>=6.0' }
1045
+ peerDependencies:
1046
+ supports-color: '*'
1047
+ peerDependenciesMeta:
1048
+ supports-color:
1049
+ optional: true
1050
+
1051
+ deep-is@0.1.4:
1052
+ resolution:
1053
+ {
1054
+ integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==,
1055
+ }
1056
+
1057
+ electron-to-chromium@1.5.286:
1058
+ resolution:
1059
+ {
1060
+ integrity: sha512-9tfDXhJ4RKFNerfjdCcZfufu49vg620741MNs26a9+bhLThdB+plgMeou98CAaHu/WATj2iHOOHTp1hWtABj2A==,
1061
+ }
1062
+
1063
+ esbuild@0.27.3:
1064
+ resolution:
1065
+ {
1066
+ integrity: sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==,
1067
+ }
1068
+ engines: { node: '>=18' }
1069
+ hasBin: true
1070
+
1071
+ escalade@3.2.0:
1072
+ resolution:
1073
+ {
1074
+ integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==,
1075
+ }
1076
+ engines: { node: '>=6' }
1077
+
1078
+ escape-string-regexp@4.0.0:
1079
+ resolution:
1080
+ {
1081
+ integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==,
1082
+ }
1083
+ engines: { node: '>=10' }
1084
+
1085
+ eslint-plugin-react-hooks@7.0.1:
1086
+ resolution:
1087
+ {
1088
+ integrity: sha512-O0d0m04evaNzEPoSW+59Mezf8Qt0InfgGIBJnpC0h3NH/WjUAR7BIKUfysC6todmtiZ/A0oUVS8Gce0WhBrHsA==,
1089
+ }
1090
+ engines: { node: '>=18' }
1091
+ peerDependencies:
1092
+ eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0
1093
+
1094
+ eslint-plugin-react-refresh@0.4.26:
1095
+ resolution:
1096
+ {
1097
+ integrity: sha512-1RETEylht2O6FM/MvgnyvT+8K21wLqDNg4qD51Zj3guhjt433XbnnkVttHMyaVyAFD03QSV4LPS5iE3VQmO7XQ==,
1098
+ }
1099
+ peerDependencies:
1100
+ eslint: '>=8.40'
1101
+
1102
+ eslint-scope@8.4.0:
1103
+ resolution:
1104
+ {
1105
+ integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==,
1106
+ }
1107
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
1108
+
1109
+ eslint-visitor-keys@3.4.3:
1110
+ resolution:
1111
+ {
1112
+ integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==,
1113
+ }
1114
+ engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
1115
+
1116
+ eslint-visitor-keys@4.2.1:
1117
+ resolution:
1118
+ {
1119
+ integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==,
1120
+ }
1121
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
1122
+
1123
+ eslint@9.39.2:
1124
+ resolution:
1125
+ {
1126
+ integrity: sha512-LEyamqS7W5HB3ujJyvi0HQK/dtVINZvd5mAAp9eT5S/ujByGjiZLCzPcHVzuXbpJDJF/cxwHlfceVUDZ2lnSTw==,
1127
+ }
1128
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
1129
+ hasBin: true
1130
+ peerDependencies:
1131
+ jiti: '*'
1132
+ peerDependenciesMeta:
1133
+ jiti:
1134
+ optional: true
1135
+
1136
+ espree@10.4.0:
1137
+ resolution:
1138
+ {
1139
+ integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==,
1140
+ }
1141
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
1142
+
1143
+ esquery@1.7.0:
1144
+ resolution:
1145
+ {
1146
+ integrity: sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==,
1147
+ }
1148
+ engines: { node: '>=0.10' }
1149
+
1150
+ esrecurse@4.3.0:
1151
+ resolution:
1152
+ {
1153
+ integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==,
1154
+ }
1155
+ engines: { node: '>=4.0' }
1156
+
1157
+ estraverse@5.3.0:
1158
+ resolution:
1159
+ {
1160
+ integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==,
1161
+ }
1162
+ engines: { node: '>=4.0' }
1163
+
1164
+ esutils@2.0.3:
1165
+ resolution:
1166
+ {
1167
+ integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==,
1168
+ }
1169
+ engines: { node: '>=0.10.0' }
1170
+
1171
+ fast-deep-equal@3.1.3:
1172
+ resolution:
1173
+ {
1174
+ integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==,
1175
+ }
1176
+
1177
+ fast-json-stable-stringify@2.1.0:
1178
+ resolution:
1179
+ {
1180
+ integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==,
1181
+ }
1182
+
1183
+ fast-levenshtein@2.0.6:
1184
+ resolution:
1185
+ {
1186
+ integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==,
1187
+ }
1188
+
1189
+ fdir@6.5.0:
1190
+ resolution:
1191
+ {
1192
+ integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==,
1193
+ }
1194
+ engines: { node: '>=12.0.0' }
1195
+ peerDependencies:
1196
+ picomatch: ^3 || ^4
1197
+ peerDependenciesMeta:
1198
+ picomatch:
1199
+ optional: true
1200
+
1201
+ file-entry-cache@8.0.0:
1202
+ resolution:
1203
+ {
1204
+ integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==,
1205
+ }
1206
+ engines: { node: '>=16.0.0' }
1207
+
1208
+ find-up@5.0.0:
1209
+ resolution:
1210
+ {
1211
+ integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==,
1212
+ }
1213
+ engines: { node: '>=10' }
1214
+
1215
+ flat-cache@4.0.1:
1216
+ resolution:
1217
+ {
1218
+ integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==,
1219
+ }
1220
+ engines: { node: '>=16' }
1221
+
1222
+ flatted@3.3.3:
1223
+ resolution:
1224
+ {
1225
+ integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==,
1226
+ }
1227
+
1228
+ fsevents@2.3.3:
1229
+ resolution:
1230
+ {
1231
+ integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==,
1232
+ }
1233
+ engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 }
1234
+ os: [darwin]
1235
+
1236
+ gensync@1.0.0-beta.2:
1237
+ resolution:
1238
+ {
1239
+ integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==,
1240
+ }
1241
+ engines: { node: '>=6.9.0' }
1242
+
1243
+ glob-parent@6.0.2:
1244
+ resolution:
1245
+ {
1246
+ integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==,
1247
+ }
1248
+ engines: { node: '>=10.13.0' }
1249
+
1250
+ globals@14.0.0:
1251
+ resolution:
1252
+ {
1253
+ integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==,
1254
+ }
1255
+ engines: { node: '>=18' }
1256
+
1257
+ globals@16.5.0:
1258
+ resolution:
1259
+ {
1260
+ integrity: sha512-c/c15i26VrJ4IRt5Z89DnIzCGDn9EcebibhAOjw5ibqEHsE1wLUgkPn9RDmNcUKyU87GeaL633nyJ+pplFR2ZQ==,
1261
+ }
1262
+ engines: { node: '>=18' }
1263
+
1264
+ has-flag@4.0.0:
1265
+ resolution:
1266
+ {
1267
+ integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==,
1268
+ }
1269
+ engines: { node: '>=8' }
1270
+
1271
+ hermes-estree@0.25.1:
1272
+ resolution:
1273
+ {
1274
+ integrity: sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==,
1275
+ }
1276
+
1277
+ hermes-parser@0.25.1:
1278
+ resolution:
1279
+ {
1280
+ integrity: sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==,
1281
+ }
1282
+
1283
+ ignore@5.3.2:
1284
+ resolution:
1285
+ {
1286
+ integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==,
1287
+ }
1288
+ engines: { node: '>= 4' }
1289
+
1290
+ ignore@7.0.5:
1291
+ resolution:
1292
+ {
1293
+ integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==,
1294
+ }
1295
+ engines: { node: '>= 4' }
1296
+
1297
+ import-fresh@3.3.1:
1298
+ resolution:
1299
+ {
1300
+ integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==,
1301
+ }
1302
+ engines: { node: '>=6' }
1303
+
1304
+ imurmurhash@0.1.4:
1305
+ resolution:
1306
+ {
1307
+ integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==,
1308
+ }
1309
+ engines: { node: '>=0.8.19' }
1310
+
1311
+ is-extglob@2.1.1:
1312
+ resolution:
1313
+ {
1314
+ integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==,
1315
+ }
1316
+ engines: { node: '>=0.10.0' }
1317
+
1318
+ is-glob@4.0.3:
1319
+ resolution:
1320
+ {
1321
+ integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==,
1322
+ }
1323
+ engines: { node: '>=0.10.0' }
1324
+
1325
+ isexe@2.0.0:
1326
+ resolution:
1327
+ {
1328
+ integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==,
1329
+ }
1330
+
1331
+ js-tokens@4.0.0:
1332
+ resolution:
1333
+ {
1334
+ integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==,
1335
+ }
1336
+
1337
+ js-yaml@4.1.1:
1338
+ resolution:
1339
+ {
1340
+ integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==,
1341
+ }
1342
+ hasBin: true
1343
+
1344
+ jsesc@3.1.0:
1345
+ resolution:
1346
+ {
1347
+ integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==,
1348
+ }
1349
+ engines: { node: '>=6' }
1350
+ hasBin: true
1351
+
1352
+ json-buffer@3.0.1:
1353
+ resolution:
1354
+ {
1355
+ integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==,
1356
+ }
1357
+
1358
+ json-schema-traverse@0.4.1:
1359
+ resolution:
1360
+ {
1361
+ integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==,
1362
+ }
1363
+
1364
+ json-stable-stringify-without-jsonify@1.0.1:
1365
+ resolution:
1366
+ {
1367
+ integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==,
1368
+ }
1369
+
1370
+ json5@2.2.3:
1371
+ resolution:
1372
+ {
1373
+ integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==,
1374
+ }
1375
+ engines: { node: '>=6' }
1376
+ hasBin: true
1377
+
1378
+ keyv@4.5.4:
1379
+ resolution:
1380
+ {
1381
+ integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==,
1382
+ }
1383
+
1384
+ levn@0.4.1:
1385
+ resolution:
1386
+ {
1387
+ integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==,
1388
+ }
1389
+ engines: { node: '>= 0.8.0' }
1390
+
1391
+ locate-path@6.0.0:
1392
+ resolution:
1393
+ {
1394
+ integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==,
1395
+ }
1396
+ engines: { node: '>=10' }
1397
+
1398
+ lodash.merge@4.6.2:
1399
+ resolution:
1400
+ {
1401
+ integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==,
1402
+ }
1403
+
1404
+ lru-cache@5.1.1:
1405
+ resolution:
1406
+ {
1407
+ integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==,
1408
+ }
1409
+
1410
+ minimatch@3.1.2:
1411
+ resolution:
1412
+ {
1413
+ integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==,
1414
+ }
1415
+
1416
+ minimatch@9.0.5:
1417
+ resolution:
1418
+ {
1419
+ integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==,
1420
+ }
1421
+ engines: { node: '>=16 || 14 >=14.17' }
1422
+
1423
+ ms@2.1.3:
1424
+ resolution:
1425
+ {
1426
+ integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==,
1427
+ }
1428
+
1429
+ nanoid@3.3.11:
1430
+ resolution:
1431
+ {
1432
+ integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==,
1433
+ }
1434
+ engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 }
1435
+ hasBin: true
1436
+
1437
+ natural-compare@1.4.0:
1438
+ resolution:
1439
+ {
1440
+ integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==,
1441
+ }
1442
+
1443
+ node-releases@2.0.27:
1444
+ resolution:
1445
+ {
1446
+ integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==,
1447
+ }
1448
+
1449
+ optionator@0.9.4:
1450
+ resolution:
1451
+ {
1452
+ integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==,
1453
+ }
1454
+ engines: { node: '>= 0.8.0' }
1455
+
1456
+ p-limit@3.1.0:
1457
+ resolution:
1458
+ {
1459
+ integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==,
1460
+ }
1461
+ engines: { node: '>=10' }
1462
+
1463
+ p-locate@5.0.0:
1464
+ resolution:
1465
+ {
1466
+ integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==,
1467
+ }
1468
+ engines: { node: '>=10' }
1469
+
1470
+ parent-module@1.0.1:
1471
+ resolution:
1472
+ {
1473
+ integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==,
1474
+ }
1475
+ engines: { node: '>=6' }
1476
+
1477
+ path-exists@4.0.0:
1478
+ resolution:
1479
+ {
1480
+ integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==,
1481
+ }
1482
+ engines: { node: '>=8' }
1483
+
1484
+ path-key@3.1.1:
1485
+ resolution:
1486
+ {
1487
+ integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==,
1488
+ }
1489
+ engines: { node: '>=8' }
1490
+
1491
+ picocolors@1.1.1:
1492
+ resolution:
1493
+ {
1494
+ integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==,
1495
+ }
1496
+
1497
+ picomatch@4.0.3:
1498
+ resolution:
1499
+ {
1500
+ integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==,
1501
+ }
1502
+ engines: { node: '>=12' }
1503
+
1504
+ postcss@8.5.6:
1505
+ resolution:
1506
+ {
1507
+ integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==,
1508
+ }
1509
+ engines: { node: ^10 || ^12 || >=14 }
1510
+
1511
+ prelude-ls@1.2.1:
1512
+ resolution:
1513
+ {
1514
+ integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==,
1515
+ }
1516
+ engines: { node: '>= 0.8.0' }
1517
+
1518
+ punycode@2.3.1:
1519
+ resolution:
1520
+ {
1521
+ integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==,
1522
+ }
1523
+ engines: { node: '>=6' }
1524
+
1525
+ react-dom@19.2.4:
1526
+ resolution:
1527
+ {
1528
+ integrity: sha512-AXJdLo8kgMbimY95O2aKQqsz2iWi9jMgKJhRBAxECE4IFxfcazB2LmzloIoibJI3C12IlY20+KFaLv+71bUJeQ==,
1529
+ }
1530
+ peerDependencies:
1531
+ react: ^19.2.4
1532
+
1533
+ react-refresh@0.18.0:
1534
+ resolution:
1535
+ {
1536
+ integrity: sha512-QgT5//D3jfjJb6Gsjxv0Slpj23ip+HtOpnNgnb2S5zU3CB26G/IDPGoy4RJB42wzFE46DRsstbW6tKHoKbhAxw==,
1537
+ }
1538
+ engines: { node: '>=0.10.0' }
1539
+
1540
+ react@19.2.4:
1541
+ resolution:
1542
+ {
1543
+ integrity: sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==,
1544
+ }
1545
+ engines: { node: '>=0.10.0' }
1546
+
1547
+ resolve-from@4.0.0:
1548
+ resolution:
1549
+ {
1550
+ integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==,
1551
+ }
1552
+ engines: { node: '>=4' }
1553
+
1554
+ rollup@4.57.1:
1555
+ resolution:
1556
+ {
1557
+ integrity: sha512-oQL6lgK3e2QZeQ7gcgIkS2YZPg5slw37hYufJ3edKlfQSGGm8ICoxswK15ntSzF/a8+h7ekRy7k7oWc3BQ7y8A==,
1558
+ }
1559
+ engines: { node: '>=18.0.0', npm: '>=8.0.0' }
1560
+ hasBin: true
1561
+
1562
+ scheduler@0.27.0:
1563
+ resolution:
1564
+ {
1565
+ integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==,
1566
+ }
1567
+
1568
+ semver@6.3.1:
1569
+ resolution:
1570
+ {
1571
+ integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==,
1572
+ }
1573
+ hasBin: true
1574
+
1575
+ semver@7.7.4:
1576
+ resolution:
1577
+ {
1578
+ integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==,
1579
+ }
1580
+ engines: { node: '>=10' }
1581
+ hasBin: true
1582
+
1583
+ shebang-command@2.0.0:
1584
+ resolution:
1585
+ {
1586
+ integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==,
1587
+ }
1588
+ engines: { node: '>=8' }
1589
+
1590
+ shebang-regex@3.0.0:
1591
+ resolution:
1592
+ {
1593
+ integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==,
1594
+ }
1595
+ engines: { node: '>=8' }
1596
+
1597
+ source-map-js@1.2.1:
1598
+ resolution:
1599
+ {
1600
+ integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==,
1601
+ }
1602
+ engines: { node: '>=0.10.0' }
1603
+
1604
+ strip-json-comments@3.1.1:
1605
+ resolution:
1606
+ {
1607
+ integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==,
1608
+ }
1609
+ engines: { node: '>=8' }
1610
+
1611
+ supports-color@7.2.0:
1612
+ resolution:
1613
+ {
1614
+ integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==,
1615
+ }
1616
+ engines: { node: '>=8' }
1617
+
1618
+ tinyglobby@0.2.15:
1619
+ resolution:
1620
+ {
1621
+ integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==,
1622
+ }
1623
+ engines: { node: '>=12.0.0' }
1624
+
1625
+ ts-api-utils@2.4.0:
1626
+ resolution:
1627
+ {
1628
+ integrity: sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==,
1629
+ }
1630
+ engines: { node: '>=18.12' }
1631
+ peerDependencies:
1632
+ typescript: '>=4.8.4'
1633
+
1634
+ type-check@0.4.0:
1635
+ resolution:
1636
+ {
1637
+ integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==,
1638
+ }
1639
+ engines: { node: '>= 0.8.0' }
1640
+
1641
+ typescript-eslint@8.55.0:
1642
+ resolution:
1643
+ {
1644
+ integrity: sha512-HE4wj+r5lmDVS9gdaN0/+iqNvPZwGfnJ5lZuz7s5vLlg9ODw0bIiiETaios9LvFI1U94/VBXGm3CB2Y5cNFMpw==,
1645
+ }
1646
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
1647
+ peerDependencies:
1648
+ eslint: ^8.57.0 || ^9.0.0
1649
+ typescript: '>=4.8.4 <6.0.0'
1650
+
1651
+ typescript@5.9.3:
1652
+ resolution:
1653
+ {
1654
+ integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==,
1655
+ }
1656
+ engines: { node: '>=14.17' }
1657
+ hasBin: true
1658
+
1659
+ undici-types@7.16.0:
1660
+ resolution:
1661
+ {
1662
+ integrity: sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==,
1663
+ }
1664
+
1665
+ update-browserslist-db@1.2.3:
1666
+ resolution:
1667
+ {
1668
+ integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==,
1669
+ }
1670
+ hasBin: true
1671
+ peerDependencies:
1672
+ browserslist: '>= 4.21.0'
1673
+
1674
+ uri-js@4.4.1:
1675
+ resolution:
1676
+ {
1677
+ integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==,
1678
+ }
1679
+
1680
+ vite@7.3.1:
1681
+ resolution:
1682
+ {
1683
+ integrity: sha512-w+N7Hifpc3gRjZ63vYBXA56dvvRlNWRczTdmCBBa+CotUzAPf5b7YMdMR/8CQoeYE5LX3W4wj6RYTgonm1b9DA==,
1684
+ }
1685
+ engines: { node: ^20.19.0 || >=22.12.0 }
1686
+ hasBin: true
1687
+ peerDependencies:
1688
+ '@types/node': ^20.19.0 || >=22.12.0
1689
+ jiti: '>=1.21.0'
1690
+ less: ^4.0.0
1691
+ lightningcss: ^1.21.0
1692
+ sass: ^1.70.0
1693
+ sass-embedded: ^1.70.0
1694
+ stylus: '>=0.54.8'
1695
+ sugarss: ^5.0.0
1696
+ terser: ^5.16.0
1697
+ tsx: ^4.8.1
1698
+ yaml: ^2.4.2
1699
+ peerDependenciesMeta:
1700
+ '@types/node':
1701
+ optional: true
1702
+ jiti:
1703
+ optional: true
1704
+ less:
1705
+ optional: true
1706
+ lightningcss:
1707
+ optional: true
1708
+ sass:
1709
+ optional: true
1710
+ sass-embedded:
1711
+ optional: true
1712
+ stylus:
1713
+ optional: true
1714
+ sugarss:
1715
+ optional: true
1716
+ terser:
1717
+ optional: true
1718
+ tsx:
1719
+ optional: true
1720
+ yaml:
1721
+ optional: true
1722
+
1723
+ which@2.0.2:
1724
+ resolution:
1725
+ {
1726
+ integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==,
1727
+ }
1728
+ engines: { node: '>= 8' }
1729
+ hasBin: true
1730
+
1731
+ word-wrap@1.2.5:
1732
+ resolution:
1733
+ {
1734
+ integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==,
1735
+ }
1736
+ engines: { node: '>=0.10.0' }
1737
+
1738
+ yallist@3.1.1:
1739
+ resolution:
1740
+ {
1741
+ integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==,
1742
+ }
1743
+
1744
+ yocto-queue@0.1.0:
1745
+ resolution:
1746
+ {
1747
+ integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==,
1748
+ }
1749
+ engines: { node: '>=10' }
1750
+
1751
+ zod-validation-error@4.0.2:
1752
+ resolution:
1753
+ {
1754
+ integrity: sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==,
1755
+ }
1756
+ engines: { node: '>=18.0.0' }
1757
+ peerDependencies:
1758
+ zod: ^3.25.0 || ^4.0.0
1759
+
1760
+ zod@4.3.6:
1761
+ resolution:
1762
+ {
1763
+ integrity: sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==,
1764
+ }
1765
+
1766
+ snapshots:
1767
+ '@babel/code-frame@7.29.0':
1768
+ dependencies:
1769
+ '@babel/helper-validator-identifier': 7.28.5
1770
+ js-tokens: 4.0.0
1771
+ picocolors: 1.1.1
1772
+
1773
+ '@babel/compat-data@7.29.0': {}
1774
+
1775
+ '@babel/core@7.29.0':
1776
+ dependencies:
1777
+ '@babel/code-frame': 7.29.0
1778
+ '@babel/generator': 7.29.1
1779
+ '@babel/helper-compilation-targets': 7.28.6
1780
+ '@babel/helper-module-transforms': 7.28.6(@babel/core@7.29.0)
1781
+ '@babel/helpers': 7.28.6
1782
+ '@babel/parser': 7.29.0
1783
+ '@babel/template': 7.28.6
1784
+ '@babel/traverse': 7.29.0
1785
+ '@babel/types': 7.29.0
1786
+ '@jridgewell/remapping': 2.3.5
1787
+ convert-source-map: 2.0.0
1788
+ debug: 4.4.3
1789
+ gensync: 1.0.0-beta.2
1790
+ json5: 2.2.3
1791
+ semver: 6.3.1
1792
+ transitivePeerDependencies:
1793
+ - supports-color
1794
+
1795
+ '@babel/generator@7.29.1':
1796
+ dependencies:
1797
+ '@babel/parser': 7.29.0
1798
+ '@babel/types': 7.29.0
1799
+ '@jridgewell/gen-mapping': 0.3.13
1800
+ '@jridgewell/trace-mapping': 0.3.31
1801
+ jsesc: 3.1.0
1802
+
1803
+ '@babel/helper-compilation-targets@7.28.6':
1804
+ dependencies:
1805
+ '@babel/compat-data': 7.29.0
1806
+ '@babel/helper-validator-option': 7.27.1
1807
+ browserslist: 4.28.1
1808
+ lru-cache: 5.1.1
1809
+ semver: 6.3.1
1810
+
1811
+ '@babel/helper-globals@7.28.0': {}
1812
+
1813
+ '@babel/helper-module-imports@7.28.6':
1814
+ dependencies:
1815
+ '@babel/traverse': 7.29.0
1816
+ '@babel/types': 7.29.0
1817
+ transitivePeerDependencies:
1818
+ - supports-color
1819
+
1820
+ '@babel/helper-module-transforms@7.28.6(@babel/core@7.29.0)':
1821
+ dependencies:
1822
+ '@babel/core': 7.29.0
1823
+ '@babel/helper-module-imports': 7.28.6
1824
+ '@babel/helper-validator-identifier': 7.28.5
1825
+ '@babel/traverse': 7.29.0
1826
+ transitivePeerDependencies:
1827
+ - supports-color
1828
+
1829
+ '@babel/helper-plugin-utils@7.28.6': {}
1830
+
1831
+ '@babel/helper-string-parser@7.27.1': {}
1832
+
1833
+ '@babel/helper-validator-identifier@7.28.5': {}
1834
+
1835
+ '@babel/helper-validator-option@7.27.1': {}
1836
+
1837
+ '@babel/helpers@7.28.6':
1838
+ dependencies:
1839
+ '@babel/template': 7.28.6
1840
+ '@babel/types': 7.29.0
1841
+
1842
+ '@babel/parser@7.29.0':
1843
+ dependencies:
1844
+ '@babel/types': 7.29.0
1845
+
1846
+ '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.29.0)':
1847
+ dependencies:
1848
+ '@babel/core': 7.29.0
1849
+ '@babel/helper-plugin-utils': 7.28.6
1850
+
1851
+ '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.29.0)':
1852
+ dependencies:
1853
+ '@babel/core': 7.29.0
1854
+ '@babel/helper-plugin-utils': 7.28.6
1855
+
1856
+ '@babel/template@7.28.6':
1857
+ dependencies:
1858
+ '@babel/code-frame': 7.29.0
1859
+ '@babel/parser': 7.29.0
1860
+ '@babel/types': 7.29.0
1861
+
1862
+ '@babel/traverse@7.29.0':
1863
+ dependencies:
1864
+ '@babel/code-frame': 7.29.0
1865
+ '@babel/generator': 7.29.1
1866
+ '@babel/helper-globals': 7.28.0
1867
+ '@babel/parser': 7.29.0
1868
+ '@babel/template': 7.28.6
1869
+ '@babel/types': 7.29.0
1870
+ debug: 4.4.3
1871
+ transitivePeerDependencies:
1872
+ - supports-color
1873
+
1874
+ '@babel/types@7.29.0':
1875
+ dependencies:
1876
+ '@babel/helper-string-parser': 7.27.1
1877
+ '@babel/helper-validator-identifier': 7.28.5
1878
+
1879
+ '@esbuild/aix-ppc64@0.27.3':
1880
+ optional: true
1881
+
1882
+ '@esbuild/android-arm64@0.27.3':
1883
+ optional: true
1884
+
1885
+ '@esbuild/android-arm@0.27.3':
1886
+ optional: true
1887
+
1888
+ '@esbuild/android-x64@0.27.3':
1889
+ optional: true
1890
+
1891
+ '@esbuild/darwin-arm64@0.27.3':
1892
+ optional: true
1893
+
1894
+ '@esbuild/darwin-x64@0.27.3':
1895
+ optional: true
1896
+
1897
+ '@esbuild/freebsd-arm64@0.27.3':
1898
+ optional: true
1899
+
1900
+ '@esbuild/freebsd-x64@0.27.3':
1901
+ optional: true
1902
+
1903
+ '@esbuild/linux-arm64@0.27.3':
1904
+ optional: true
1905
+
1906
+ '@esbuild/linux-arm@0.27.3':
1907
+ optional: true
1908
+
1909
+ '@esbuild/linux-ia32@0.27.3':
1910
+ optional: true
1911
+
1912
+ '@esbuild/linux-loong64@0.27.3':
1913
+ optional: true
1914
+
1915
+ '@esbuild/linux-mips64el@0.27.3':
1916
+ optional: true
1917
+
1918
+ '@esbuild/linux-ppc64@0.27.3':
1919
+ optional: true
1920
+
1921
+ '@esbuild/linux-riscv64@0.27.3':
1922
+ optional: true
1923
+
1924
+ '@esbuild/linux-s390x@0.27.3':
1925
+ optional: true
1926
+
1927
+ '@esbuild/linux-x64@0.27.3':
1928
+ optional: true
1929
+
1930
+ '@esbuild/netbsd-arm64@0.27.3':
1931
+ optional: true
1932
+
1933
+ '@esbuild/netbsd-x64@0.27.3':
1934
+ optional: true
1935
+
1936
+ '@esbuild/openbsd-arm64@0.27.3':
1937
+ optional: true
1938
+
1939
+ '@esbuild/openbsd-x64@0.27.3':
1940
+ optional: true
1941
+
1942
+ '@esbuild/openharmony-arm64@0.27.3':
1943
+ optional: true
1944
+
1945
+ '@esbuild/sunos-x64@0.27.3':
1946
+ optional: true
1947
+
1948
+ '@esbuild/win32-arm64@0.27.3':
1949
+ optional: true
1950
+
1951
+ '@esbuild/win32-ia32@0.27.3':
1952
+ optional: true
1953
+
1954
+ '@esbuild/win32-x64@0.27.3':
1955
+ optional: true
1956
+
1957
+ '@eslint-community/eslint-utils@4.9.1(eslint@9.39.2)':
1958
+ dependencies:
1959
+ eslint: 9.39.2
1960
+ eslint-visitor-keys: 3.4.3
1961
+
1962
+ '@eslint-community/regexpp@4.12.2': {}
1963
+
1964
+ '@eslint/config-array@0.21.1':
1965
+ dependencies:
1966
+ '@eslint/object-schema': 2.1.7
1967
+ debug: 4.4.3
1968
+ minimatch: 3.1.2
1969
+ transitivePeerDependencies:
1970
+ - supports-color
1971
+
1972
+ '@eslint/config-helpers@0.4.2':
1973
+ dependencies:
1974
+ '@eslint/core': 0.17.0
1975
+
1976
+ '@eslint/core@0.17.0':
1977
+ dependencies:
1978
+ '@types/json-schema': 7.0.15
1979
+
1980
+ '@eslint/eslintrc@3.3.3':
1981
+ dependencies:
1982
+ ajv: 6.12.6
1983
+ debug: 4.4.3
1984
+ espree: 10.4.0
1985
+ globals: 14.0.0
1986
+ ignore: 5.3.2
1987
+ import-fresh: 3.3.1
1988
+ js-yaml: 4.1.1
1989
+ minimatch: 3.1.2
1990
+ strip-json-comments: 3.1.1
1991
+ transitivePeerDependencies:
1992
+ - supports-color
1993
+
1994
+ '@eslint/js@9.39.2': {}
1995
+
1996
+ '@eslint/object-schema@2.1.7': {}
1997
+
1998
+ '@eslint/plugin-kit@0.4.1':
1999
+ dependencies:
2000
+ '@eslint/core': 0.17.0
2001
+ levn: 0.4.1
2002
+
2003
+ '@humanfs/core@0.19.1': {}
2004
+
2005
+ '@humanfs/node@0.16.7':
2006
+ dependencies:
2007
+ '@humanfs/core': 0.19.1
2008
+ '@humanwhocodes/retry': 0.4.3
2009
+
2010
+ '@humanwhocodes/module-importer@1.0.1': {}
2011
+
2012
+ '@humanwhocodes/retry@0.4.3': {}
2013
+
2014
+ '@jridgewell/gen-mapping@0.3.13':
2015
+ dependencies:
2016
+ '@jridgewell/sourcemap-codec': 1.5.5
2017
+ '@jridgewell/trace-mapping': 0.3.31
2018
+
2019
+ '@jridgewell/remapping@2.3.5':
2020
+ dependencies:
2021
+ '@jridgewell/gen-mapping': 0.3.13
2022
+ '@jridgewell/trace-mapping': 0.3.31
2023
+
2024
+ '@jridgewell/resolve-uri@3.1.2': {}
2025
+
2026
+ '@jridgewell/sourcemap-codec@1.5.5': {}
2027
+
2028
+ '@jridgewell/trace-mapping@0.3.31':
2029
+ dependencies:
2030
+ '@jridgewell/resolve-uri': 3.1.2
2031
+ '@jridgewell/sourcemap-codec': 1.5.5
2032
+
2033
+ '@rolldown/pluginutils@1.0.0-rc.2': {}
2034
+
2035
+ '@rollup/rollup-android-arm-eabi@4.57.1':
2036
+ optional: true
2037
+
2038
+ '@rollup/rollup-android-arm64@4.57.1':
2039
+ optional: true
2040
+
2041
+ '@rollup/rollup-darwin-arm64@4.57.1':
2042
+ optional: true
2043
+
2044
+ '@rollup/rollup-darwin-x64@4.57.1':
2045
+ optional: true
2046
+
2047
+ '@rollup/rollup-freebsd-arm64@4.57.1':
2048
+ optional: true
2049
+
2050
+ '@rollup/rollup-freebsd-x64@4.57.1':
2051
+ optional: true
2052
+
2053
+ '@rollup/rollup-linux-arm-gnueabihf@4.57.1':
2054
+ optional: true
2055
+
2056
+ '@rollup/rollup-linux-arm-musleabihf@4.57.1':
2057
+ optional: true
2058
+
2059
+ '@rollup/rollup-linux-arm64-gnu@4.57.1':
2060
+ optional: true
2061
+
2062
+ '@rollup/rollup-linux-arm64-musl@4.57.1':
2063
+ optional: true
2064
+
2065
+ '@rollup/rollup-linux-loong64-gnu@4.57.1':
2066
+ optional: true
2067
+
2068
+ '@rollup/rollup-linux-loong64-musl@4.57.1':
2069
+ optional: true
2070
+
2071
+ '@rollup/rollup-linux-ppc64-gnu@4.57.1':
2072
+ optional: true
2073
+
2074
+ '@rollup/rollup-linux-ppc64-musl@4.57.1':
2075
+ optional: true
2076
+
2077
+ '@rollup/rollup-linux-riscv64-gnu@4.57.1':
2078
+ optional: true
2079
+
2080
+ '@rollup/rollup-linux-riscv64-musl@4.57.1':
2081
+ optional: true
2082
+
2083
+ '@rollup/rollup-linux-s390x-gnu@4.57.1':
2084
+ optional: true
2085
+
2086
+ '@rollup/rollup-linux-x64-gnu@4.57.1':
2087
+ optional: true
2088
+
2089
+ '@rollup/rollup-linux-x64-musl@4.57.1':
2090
+ optional: true
2091
+
2092
+ '@rollup/rollup-openbsd-x64@4.57.1':
2093
+ optional: true
2094
+
2095
+ '@rollup/rollup-openharmony-arm64@4.57.1':
2096
+ optional: true
2097
+
2098
+ '@rollup/rollup-win32-arm64-msvc@4.57.1':
2099
+ optional: true
2100
+
2101
+ '@rollup/rollup-win32-ia32-msvc@4.57.1':
2102
+ optional: true
2103
+
2104
+ '@rollup/rollup-win32-x64-gnu@4.57.1':
2105
+ optional: true
2106
+
2107
+ '@rollup/rollup-win32-x64-msvc@4.57.1':
2108
+ optional: true
2109
+
2110
+ '@types/babel__core@7.20.5':
2111
+ dependencies:
2112
+ '@babel/parser': 7.29.0
2113
+ '@babel/types': 7.29.0
2114
+ '@types/babel__generator': 7.27.0
2115
+ '@types/babel__template': 7.4.4
2116
+ '@types/babel__traverse': 7.28.0
2117
+
2118
+ '@types/babel__generator@7.27.0':
2119
+ dependencies:
2120
+ '@babel/types': 7.29.0
2121
+
2122
+ '@types/babel__template@7.4.4':
2123
+ dependencies:
2124
+ '@babel/parser': 7.29.0
2125
+ '@babel/types': 7.29.0
2126
+
2127
+ '@types/babel__traverse@7.28.0':
2128
+ dependencies:
2129
+ '@babel/types': 7.29.0
2130
+
2131
+ '@types/estree@1.0.8': {}
2132
+
2133
+ '@types/json-schema@7.0.15': {}
2134
+
2135
+ '@types/node@24.10.12':
2136
+ dependencies:
2137
+ undici-types: 7.16.0
2138
+
2139
+ '@types/react-dom@19.2.3(@types/react@19.2.13)':
2140
+ dependencies:
2141
+ '@types/react': 19.2.13
2142
+
2143
+ '@types/react@19.2.13':
2144
+ dependencies:
2145
+ csstype: 3.2.3
2146
+
2147
+ '@typescript-eslint/eslint-plugin@8.55.0(@typescript-eslint/parser@8.55.0(eslint@9.39.2)(typescript@5.9.3))(eslint@9.39.2)(typescript@5.9.3)':
2148
+ dependencies:
2149
+ '@eslint-community/regexpp': 4.12.2
2150
+ '@typescript-eslint/parser': 8.55.0(eslint@9.39.2)(typescript@5.9.3)
2151
+ '@typescript-eslint/scope-manager': 8.55.0
2152
+ '@typescript-eslint/type-utils': 8.55.0(eslint@9.39.2)(typescript@5.9.3)
2153
+ '@typescript-eslint/utils': 8.55.0(eslint@9.39.2)(typescript@5.9.3)
2154
+ '@typescript-eslint/visitor-keys': 8.55.0
2155
+ eslint: 9.39.2
2156
+ ignore: 7.0.5
2157
+ natural-compare: 1.4.0
2158
+ ts-api-utils: 2.4.0(typescript@5.9.3)
2159
+ typescript: 5.9.3
2160
+ transitivePeerDependencies:
2161
+ - supports-color
2162
+
2163
+ '@typescript-eslint/parser@8.55.0(eslint@9.39.2)(typescript@5.9.3)':
2164
+ dependencies:
2165
+ '@typescript-eslint/scope-manager': 8.55.0
2166
+ '@typescript-eslint/types': 8.55.0
2167
+ '@typescript-eslint/typescript-estree': 8.55.0(typescript@5.9.3)
2168
+ '@typescript-eslint/visitor-keys': 8.55.0
2169
+ debug: 4.4.3
2170
+ eslint: 9.39.2
2171
+ typescript: 5.9.3
2172
+ transitivePeerDependencies:
2173
+ - supports-color
2174
+
2175
+ '@typescript-eslint/project-service@8.55.0(typescript@5.9.3)':
2176
+ dependencies:
2177
+ '@typescript-eslint/tsconfig-utils': 8.55.0(typescript@5.9.3)
2178
+ '@typescript-eslint/types': 8.55.0
2179
+ debug: 4.4.3
2180
+ typescript: 5.9.3
2181
+ transitivePeerDependencies:
2182
+ - supports-color
2183
+
2184
+ '@typescript-eslint/scope-manager@8.55.0':
2185
+ dependencies:
2186
+ '@typescript-eslint/types': 8.55.0
2187
+ '@typescript-eslint/visitor-keys': 8.55.0
2188
+
2189
+ '@typescript-eslint/tsconfig-utils@8.55.0(typescript@5.9.3)':
2190
+ dependencies:
2191
+ typescript: 5.9.3
2192
+
2193
+ '@typescript-eslint/type-utils@8.55.0(eslint@9.39.2)(typescript@5.9.3)':
2194
+ dependencies:
2195
+ '@typescript-eslint/types': 8.55.0
2196
+ '@typescript-eslint/typescript-estree': 8.55.0(typescript@5.9.3)
2197
+ '@typescript-eslint/utils': 8.55.0(eslint@9.39.2)(typescript@5.9.3)
2198
+ debug: 4.4.3
2199
+ eslint: 9.39.2
2200
+ ts-api-utils: 2.4.0(typescript@5.9.3)
2201
+ typescript: 5.9.3
2202
+ transitivePeerDependencies:
2203
+ - supports-color
2204
+
2205
+ '@typescript-eslint/types@8.55.0': {}
2206
+
2207
+ '@typescript-eslint/typescript-estree@8.55.0(typescript@5.9.3)':
2208
+ dependencies:
2209
+ '@typescript-eslint/project-service': 8.55.0(typescript@5.9.3)
2210
+ '@typescript-eslint/tsconfig-utils': 8.55.0(typescript@5.9.3)
2211
+ '@typescript-eslint/types': 8.55.0
2212
+ '@typescript-eslint/visitor-keys': 8.55.0
2213
+ debug: 4.4.3
2214
+ minimatch: 9.0.5
2215
+ semver: 7.7.4
2216
+ tinyglobby: 0.2.15
2217
+ ts-api-utils: 2.4.0(typescript@5.9.3)
2218
+ typescript: 5.9.3
2219
+ transitivePeerDependencies:
2220
+ - supports-color
2221
+
2222
+ '@typescript-eslint/utils@8.55.0(eslint@9.39.2)(typescript@5.9.3)':
2223
+ dependencies:
2224
+ '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2)
2225
+ '@typescript-eslint/scope-manager': 8.55.0
2226
+ '@typescript-eslint/types': 8.55.0
2227
+ '@typescript-eslint/typescript-estree': 8.55.0(typescript@5.9.3)
2228
+ eslint: 9.39.2
2229
+ typescript: 5.9.3
2230
+ transitivePeerDependencies:
2231
+ - supports-color
2232
+
2233
+ '@typescript-eslint/visitor-keys@8.55.0':
2234
+ dependencies:
2235
+ '@typescript-eslint/types': 8.55.0
2236
+ eslint-visitor-keys: 4.2.1
2237
+
2238
+ '@vitejs/plugin-react@5.1.3(vite@7.3.1(@types/node@24.10.12))':
2239
+ dependencies:
2240
+ '@babel/core': 7.29.0
2241
+ '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.29.0)
2242
+ '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.29.0)
2243
+ '@rolldown/pluginutils': 1.0.0-rc.2
2244
+ '@types/babel__core': 7.20.5
2245
+ react-refresh: 0.18.0
2246
+ vite: 7.3.1(@types/node@24.10.12)
2247
+ transitivePeerDependencies:
2248
+ - supports-color
2249
+
2250
+ acorn-jsx@5.3.2(acorn@8.15.0):
2251
+ dependencies:
2252
+ acorn: 8.15.0
2253
+
2254
+ acorn@8.15.0: {}
2255
+
2256
+ ajv@6.12.6:
2257
+ dependencies:
2258
+ fast-deep-equal: 3.1.3
2259
+ fast-json-stable-stringify: 2.1.0
2260
+ json-schema-traverse: 0.4.1
2261
+ uri-js: 4.4.1
2262
+
2263
+ ansi-styles@4.3.0:
2264
+ dependencies:
2265
+ color-convert: 2.0.1
2266
+
2267
+ argparse@2.0.1: {}
2268
+
2269
+ balanced-match@1.0.2: {}
2270
+
2271
+ baseline-browser-mapping@2.9.19: {}
2272
+
2273
+ brace-expansion@1.1.12:
2274
+ dependencies:
2275
+ balanced-match: 1.0.2
2276
+ concat-map: 0.0.1
2277
+
2278
+ brace-expansion@2.0.2:
2279
+ dependencies:
2280
+ balanced-match: 1.0.2
2281
+
2282
+ browserslist@4.28.1:
2283
+ dependencies:
2284
+ baseline-browser-mapping: 2.9.19
2285
+ caniuse-lite: 1.0.30001769
2286
+ electron-to-chromium: 1.5.286
2287
+ node-releases: 2.0.27
2288
+ update-browserslist-db: 1.2.3(browserslist@4.28.1)
2289
+
2290
+ callsites@3.1.0: {}
2291
+
2292
+ caniuse-lite@1.0.30001769: {}
2293
+
2294
+ chalk@4.1.2:
2295
+ dependencies:
2296
+ ansi-styles: 4.3.0
2297
+ supports-color: 7.2.0
2298
+
2299
+ color-convert@2.0.1:
2300
+ dependencies:
2301
+ color-name: 1.1.4
2302
+
2303
+ color-name@1.1.4: {}
2304
+
2305
+ concat-map@0.0.1: {}
2306
+
2307
+ convert-source-map@2.0.0: {}
2308
+
2309
+ cross-spawn@7.0.6:
2310
+ dependencies:
2311
+ path-key: 3.1.1
2312
+ shebang-command: 2.0.0
2313
+ which: 2.0.2
2314
+
2315
+ csstype@3.2.3: {}
2316
+
2317
+ debug@4.4.3:
2318
+ dependencies:
2319
+ ms: 2.1.3
2320
+
2321
+ deep-is@0.1.4: {}
2322
+
2323
+ electron-to-chromium@1.5.286: {}
2324
+
2325
+ esbuild@0.27.3:
2326
+ optionalDependencies:
2327
+ '@esbuild/aix-ppc64': 0.27.3
2328
+ '@esbuild/android-arm': 0.27.3
2329
+ '@esbuild/android-arm64': 0.27.3
2330
+ '@esbuild/android-x64': 0.27.3
2331
+ '@esbuild/darwin-arm64': 0.27.3
2332
+ '@esbuild/darwin-x64': 0.27.3
2333
+ '@esbuild/freebsd-arm64': 0.27.3
2334
+ '@esbuild/freebsd-x64': 0.27.3
2335
+ '@esbuild/linux-arm': 0.27.3
2336
+ '@esbuild/linux-arm64': 0.27.3
2337
+ '@esbuild/linux-ia32': 0.27.3
2338
+ '@esbuild/linux-loong64': 0.27.3
2339
+ '@esbuild/linux-mips64el': 0.27.3
2340
+ '@esbuild/linux-ppc64': 0.27.3
2341
+ '@esbuild/linux-riscv64': 0.27.3
2342
+ '@esbuild/linux-s390x': 0.27.3
2343
+ '@esbuild/linux-x64': 0.27.3
2344
+ '@esbuild/netbsd-arm64': 0.27.3
2345
+ '@esbuild/netbsd-x64': 0.27.3
2346
+ '@esbuild/openbsd-arm64': 0.27.3
2347
+ '@esbuild/openbsd-x64': 0.27.3
2348
+ '@esbuild/openharmony-arm64': 0.27.3
2349
+ '@esbuild/sunos-x64': 0.27.3
2350
+ '@esbuild/win32-arm64': 0.27.3
2351
+ '@esbuild/win32-ia32': 0.27.3
2352
+ '@esbuild/win32-x64': 0.27.3
2353
+
2354
+ escalade@3.2.0: {}
2355
+
2356
+ escape-string-regexp@4.0.0: {}
2357
+
2358
+ eslint-plugin-react-hooks@7.0.1(eslint@9.39.2):
2359
+ dependencies:
2360
+ '@babel/core': 7.29.0
2361
+ '@babel/parser': 7.29.0
2362
+ eslint: 9.39.2
2363
+ hermes-parser: 0.25.1
2364
+ zod: 4.3.6
2365
+ zod-validation-error: 4.0.2(zod@4.3.6)
2366
+ transitivePeerDependencies:
2367
+ - supports-color
2368
+
2369
+ eslint-plugin-react-refresh@0.4.26(eslint@9.39.2):
2370
+ dependencies:
2371
+ eslint: 9.39.2
2372
+
2373
+ eslint-scope@8.4.0:
2374
+ dependencies:
2375
+ esrecurse: 4.3.0
2376
+ estraverse: 5.3.0
2377
+
2378
+ eslint-visitor-keys@3.4.3: {}
2379
+
2380
+ eslint-visitor-keys@4.2.1: {}
2381
+
2382
+ eslint@9.39.2:
2383
+ dependencies:
2384
+ '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2)
2385
+ '@eslint-community/regexpp': 4.12.2
2386
+ '@eslint/config-array': 0.21.1
2387
+ '@eslint/config-helpers': 0.4.2
2388
+ '@eslint/core': 0.17.0
2389
+ '@eslint/eslintrc': 3.3.3
2390
+ '@eslint/js': 9.39.2
2391
+ '@eslint/plugin-kit': 0.4.1
2392
+ '@humanfs/node': 0.16.7
2393
+ '@humanwhocodes/module-importer': 1.0.1
2394
+ '@humanwhocodes/retry': 0.4.3
2395
+ '@types/estree': 1.0.8
2396
+ ajv: 6.12.6
2397
+ chalk: 4.1.2
2398
+ cross-spawn: 7.0.6
2399
+ debug: 4.4.3
2400
+ escape-string-regexp: 4.0.0
2401
+ eslint-scope: 8.4.0
2402
+ eslint-visitor-keys: 4.2.1
2403
+ espree: 10.4.0
2404
+ esquery: 1.7.0
2405
+ esutils: 2.0.3
2406
+ fast-deep-equal: 3.1.3
2407
+ file-entry-cache: 8.0.0
2408
+ find-up: 5.0.0
2409
+ glob-parent: 6.0.2
2410
+ ignore: 5.3.2
2411
+ imurmurhash: 0.1.4
2412
+ is-glob: 4.0.3
2413
+ json-stable-stringify-without-jsonify: 1.0.1
2414
+ lodash.merge: 4.6.2
2415
+ minimatch: 3.1.2
2416
+ natural-compare: 1.4.0
2417
+ optionator: 0.9.4
2418
+ transitivePeerDependencies:
2419
+ - supports-color
2420
+
2421
+ espree@10.4.0:
2422
+ dependencies:
2423
+ acorn: 8.15.0
2424
+ acorn-jsx: 5.3.2(acorn@8.15.0)
2425
+ eslint-visitor-keys: 4.2.1
2426
+
2427
+ esquery@1.7.0:
2428
+ dependencies:
2429
+ estraverse: 5.3.0
2430
+
2431
+ esrecurse@4.3.0:
2432
+ dependencies:
2433
+ estraverse: 5.3.0
2434
+
2435
+ estraverse@5.3.0: {}
2436
+
2437
+ esutils@2.0.3: {}
2438
+
2439
+ fast-deep-equal@3.1.3: {}
2440
+
2441
+ fast-json-stable-stringify@2.1.0: {}
2442
+
2443
+ fast-levenshtein@2.0.6: {}
2444
+
2445
+ fdir@6.5.0(picomatch@4.0.3):
2446
+ optionalDependencies:
2447
+ picomatch: 4.0.3
2448
+
2449
+ file-entry-cache@8.0.0:
2450
+ dependencies:
2451
+ flat-cache: 4.0.1
2452
+
2453
+ find-up@5.0.0:
2454
+ dependencies:
2455
+ locate-path: 6.0.0
2456
+ path-exists: 4.0.0
2457
+
2458
+ flat-cache@4.0.1:
2459
+ dependencies:
2460
+ flatted: 3.3.3
2461
+ keyv: 4.5.4
2462
+
2463
+ flatted@3.3.3: {}
2464
+
2465
+ fsevents@2.3.3:
2466
+ optional: true
2467
+
2468
+ gensync@1.0.0-beta.2: {}
2469
+
2470
+ glob-parent@6.0.2:
2471
+ dependencies:
2472
+ is-glob: 4.0.3
2473
+
2474
+ globals@14.0.0: {}
2475
+
2476
+ globals@16.5.0: {}
2477
+
2478
+ has-flag@4.0.0: {}
2479
+
2480
+ hermes-estree@0.25.1: {}
2481
+
2482
+ hermes-parser@0.25.1:
2483
+ dependencies:
2484
+ hermes-estree: 0.25.1
2485
+
2486
+ ignore@5.3.2: {}
2487
+
2488
+ ignore@7.0.5: {}
2489
+
2490
+ import-fresh@3.3.1:
2491
+ dependencies:
2492
+ parent-module: 1.0.1
2493
+ resolve-from: 4.0.0
2494
+
2495
+ imurmurhash@0.1.4: {}
2496
+
2497
+ is-extglob@2.1.1: {}
2498
+
2499
+ is-glob@4.0.3:
2500
+ dependencies:
2501
+ is-extglob: 2.1.1
2502
+
2503
+ isexe@2.0.0: {}
2504
+
2505
+ js-tokens@4.0.0: {}
2506
+
2507
+ js-yaml@4.1.1:
2508
+ dependencies:
2509
+ argparse: 2.0.1
2510
+
2511
+ jsesc@3.1.0: {}
2512
+
2513
+ json-buffer@3.0.1: {}
2514
+
2515
+ json-schema-traverse@0.4.1: {}
2516
+
2517
+ json-stable-stringify-without-jsonify@1.0.1: {}
2518
+
2519
+ json5@2.2.3: {}
2520
+
2521
+ keyv@4.5.4:
2522
+ dependencies:
2523
+ json-buffer: 3.0.1
2524
+
2525
+ levn@0.4.1:
2526
+ dependencies:
2527
+ prelude-ls: 1.2.1
2528
+ type-check: 0.4.0
2529
+
2530
+ locate-path@6.0.0:
2531
+ dependencies:
2532
+ p-locate: 5.0.0
2533
+
2534
+ lodash.merge@4.6.2: {}
2535
+
2536
+ lru-cache@5.1.1:
2537
+ dependencies:
2538
+ yallist: 3.1.1
2539
+
2540
+ minimatch@3.1.2:
2541
+ dependencies:
2542
+ brace-expansion: 1.1.12
2543
+
2544
+ minimatch@9.0.5:
2545
+ dependencies:
2546
+ brace-expansion: 2.0.2
2547
+
2548
+ ms@2.1.3: {}
2549
+
2550
+ nanoid@3.3.11: {}
2551
+
2552
+ natural-compare@1.4.0: {}
2553
+
2554
+ node-releases@2.0.27: {}
2555
+
2556
+ optionator@0.9.4:
2557
+ dependencies:
2558
+ deep-is: 0.1.4
2559
+ fast-levenshtein: 2.0.6
2560
+ levn: 0.4.1
2561
+ prelude-ls: 1.2.1
2562
+ type-check: 0.4.0
2563
+ word-wrap: 1.2.5
2564
+
2565
+ p-limit@3.1.0:
2566
+ dependencies:
2567
+ yocto-queue: 0.1.0
2568
+
2569
+ p-locate@5.0.0:
2570
+ dependencies:
2571
+ p-limit: 3.1.0
2572
+
2573
+ parent-module@1.0.1:
2574
+ dependencies:
2575
+ callsites: 3.1.0
2576
+
2577
+ path-exists@4.0.0: {}
2578
+
2579
+ path-key@3.1.1: {}
2580
+
2581
+ picocolors@1.1.1: {}
2582
+
2583
+ picomatch@4.0.3: {}
2584
+
2585
+ postcss@8.5.6:
2586
+ dependencies:
2587
+ nanoid: 3.3.11
2588
+ picocolors: 1.1.1
2589
+ source-map-js: 1.2.1
2590
+
2591
+ prelude-ls@1.2.1: {}
2592
+
2593
+ punycode@2.3.1: {}
2594
+
2595
+ react-dom@19.2.4(react@19.2.4):
2596
+ dependencies:
2597
+ react: 19.2.4
2598
+ scheduler: 0.27.0
2599
+
2600
+ react-refresh@0.18.0: {}
2601
+
2602
+ react@19.2.4: {}
2603
+
2604
+ resolve-from@4.0.0: {}
2605
+
2606
+ rollup@4.57.1:
2607
+ dependencies:
2608
+ '@types/estree': 1.0.8
2609
+ optionalDependencies:
2610
+ '@rollup/rollup-android-arm-eabi': 4.57.1
2611
+ '@rollup/rollup-android-arm64': 4.57.1
2612
+ '@rollup/rollup-darwin-arm64': 4.57.1
2613
+ '@rollup/rollup-darwin-x64': 4.57.1
2614
+ '@rollup/rollup-freebsd-arm64': 4.57.1
2615
+ '@rollup/rollup-freebsd-x64': 4.57.1
2616
+ '@rollup/rollup-linux-arm-gnueabihf': 4.57.1
2617
+ '@rollup/rollup-linux-arm-musleabihf': 4.57.1
2618
+ '@rollup/rollup-linux-arm64-gnu': 4.57.1
2619
+ '@rollup/rollup-linux-arm64-musl': 4.57.1
2620
+ '@rollup/rollup-linux-loong64-gnu': 4.57.1
2621
+ '@rollup/rollup-linux-loong64-musl': 4.57.1
2622
+ '@rollup/rollup-linux-ppc64-gnu': 4.57.1
2623
+ '@rollup/rollup-linux-ppc64-musl': 4.57.1
2624
+ '@rollup/rollup-linux-riscv64-gnu': 4.57.1
2625
+ '@rollup/rollup-linux-riscv64-musl': 4.57.1
2626
+ '@rollup/rollup-linux-s390x-gnu': 4.57.1
2627
+ '@rollup/rollup-linux-x64-gnu': 4.57.1
2628
+ '@rollup/rollup-linux-x64-musl': 4.57.1
2629
+ '@rollup/rollup-openbsd-x64': 4.57.1
2630
+ '@rollup/rollup-openharmony-arm64': 4.57.1
2631
+ '@rollup/rollup-win32-arm64-msvc': 4.57.1
2632
+ '@rollup/rollup-win32-ia32-msvc': 4.57.1
2633
+ '@rollup/rollup-win32-x64-gnu': 4.57.1
2634
+ '@rollup/rollup-win32-x64-msvc': 4.57.1
2635
+ fsevents: 2.3.3
2636
+
2637
+ scheduler@0.27.0: {}
2638
+
2639
+ semver@6.3.1: {}
2640
+
2641
+ semver@7.7.4: {}
2642
+
2643
+ shebang-command@2.0.0:
2644
+ dependencies:
2645
+ shebang-regex: 3.0.0
2646
+
2647
+ shebang-regex@3.0.0: {}
2648
+
2649
+ source-map-js@1.2.1: {}
2650
+
2651
+ strip-json-comments@3.1.1: {}
2652
+
2653
+ supports-color@7.2.0:
2654
+ dependencies:
2655
+ has-flag: 4.0.0
2656
+
2657
+ tinyglobby@0.2.15:
2658
+ dependencies:
2659
+ fdir: 6.5.0(picomatch@4.0.3)
2660
+ picomatch: 4.0.3
2661
+
2662
+ ts-api-utils@2.4.0(typescript@5.9.3):
2663
+ dependencies:
2664
+ typescript: 5.9.3
2665
+
2666
+ type-check@0.4.0:
2667
+ dependencies:
2668
+ prelude-ls: 1.2.1
2669
+
2670
+ typescript-eslint@8.55.0(eslint@9.39.2)(typescript@5.9.3):
2671
+ dependencies:
2672
+ '@typescript-eslint/eslint-plugin': 8.55.0(@typescript-eslint/parser@8.55.0(eslint@9.39.2)(typescript@5.9.3))(eslint@9.39.2)(typescript@5.9.3)
2673
+ '@typescript-eslint/parser': 8.55.0(eslint@9.39.2)(typescript@5.9.3)
2674
+ '@typescript-eslint/typescript-estree': 8.55.0(typescript@5.9.3)
2675
+ '@typescript-eslint/utils': 8.55.0(eslint@9.39.2)(typescript@5.9.3)
2676
+ eslint: 9.39.2
2677
+ typescript: 5.9.3
2678
+ transitivePeerDependencies:
2679
+ - supports-color
2680
+
2681
+ typescript@5.9.3: {}
2682
+
2683
+ undici-types@7.16.0: {}
2684
+
2685
+ update-browserslist-db@1.2.3(browserslist@4.28.1):
2686
+ dependencies:
2687
+ browserslist: 4.28.1
2688
+ escalade: 3.2.0
2689
+ picocolors: 1.1.1
2690
+
2691
+ uri-js@4.4.1:
2692
+ dependencies:
2693
+ punycode: 2.3.1
2694
+
2695
+ vite@7.3.1(@types/node@24.10.12):
2696
+ dependencies:
2697
+ esbuild: 0.27.3
2698
+ fdir: 6.5.0(picomatch@4.0.3)
2699
+ picomatch: 4.0.3
2700
+ postcss: 8.5.6
2701
+ rollup: 4.57.1
2702
+ tinyglobby: 0.2.15
2703
+ optionalDependencies:
2704
+ '@types/node': 24.10.12
2705
+ fsevents: 2.3.3
2706
+
2707
+ which@2.0.2:
2708
+ dependencies:
2709
+ isexe: 2.0.0
2710
+
2711
+ word-wrap@1.2.5: {}
2712
+
2713
+ yallist@3.1.1: {}
2714
+
2715
+ yocto-queue@0.1.0: {}
2716
+
2717
+ zod-validation-error@4.0.2(zod@4.3.6):
2718
+ dependencies:
2719
+ zod: 4.3.6
2720
+
2721
+ zod@4.3.6: {}