trae-starter 0.0.1

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 (83) hide show
  1. package/README.md +45 -0
  2. package/bin/cli.js +33 -0
  3. package/package.json +25 -0
  4. package/public/app.js +263 -0
  5. package/public/index.html +123 -0
  6. package/server/api.js +181 -0
  7. package/server/index.js +38 -0
  8. package/templates/proto/.agents/skills/ui-ux-pro-max/SKILL.md +659 -0
  9. package/templates/proto/.agents/skills/ui-ux-pro-max/data/_sync_all.py +414 -0
  10. package/templates/proto/.agents/skills/ui-ux-pro-max/data/app-interface.csv +31 -0
  11. package/templates/proto/.agents/skills/ui-ux-pro-max/data/charts.csv +26 -0
  12. package/templates/proto/.agents/skills/ui-ux-pro-max/data/colors.csv +162 -0
  13. package/templates/proto/.agents/skills/ui-ux-pro-max/data/design.csv +1776 -0
  14. package/templates/proto/.agents/skills/ui-ux-pro-max/data/draft.csv +1779 -0
  15. package/templates/proto/.agents/skills/ui-ux-pro-max/data/google-fonts.csv +1924 -0
  16. package/templates/proto/.agents/skills/ui-ux-pro-max/data/icons.csv +106 -0
  17. package/templates/proto/.agents/skills/ui-ux-pro-max/data/landing.csv +35 -0
  18. package/templates/proto/.agents/skills/ui-ux-pro-max/data/products.csv +162 -0
  19. package/templates/proto/.agents/skills/ui-ux-pro-max/data/react-performance.csv +45 -0
  20. package/templates/proto/.agents/skills/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
  21. package/templates/proto/.agents/skills/ui-ux-pro-max/data/styles.csv +85 -0
  22. package/templates/proto/.agents/skills/ui-ux-pro-max/data/typography.csv +74 -0
  23. package/templates/proto/.agents/skills/ui-ux-pro-max/data/ui-reasoning.csv +162 -0
  24. package/templates/proto/.agents/skills/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
  25. package/templates/proto/.agents/skills/ui-ux-pro-max/scripts/core.py +247 -0
  26. package/templates/proto/.agents/skills/ui-ux-pro-max/scripts/design_system.py +1067 -0
  27. package/templates/proto/.agents/skills/ui-ux-pro-max/scripts/search.py +114 -0
  28. package/templates/proto/.trae/skills/preview-manager/SKILL.md +37 -0
  29. package/templates/proto/.trae/skills/ui-ux-pro-max/SKILL.md +659 -0
  30. package/templates/proto/.trae/skills/ui-ux-pro-max/data/_sync_all.py +414 -0
  31. package/templates/proto/.trae/skills/ui-ux-pro-max/data/app-interface.csv +31 -0
  32. package/templates/proto/.trae/skills/ui-ux-pro-max/data/charts.csv +26 -0
  33. package/templates/proto/.trae/skills/ui-ux-pro-max/data/colors.csv +162 -0
  34. package/templates/proto/.trae/skills/ui-ux-pro-max/data/design.csv +1776 -0
  35. package/templates/proto/.trae/skills/ui-ux-pro-max/data/draft.csv +1779 -0
  36. package/templates/proto/.trae/skills/ui-ux-pro-max/data/google-fonts.csv +1924 -0
  37. package/templates/proto/.trae/skills/ui-ux-pro-max/data/icons.csv +106 -0
  38. package/templates/proto/.trae/skills/ui-ux-pro-max/data/landing.csv +35 -0
  39. package/templates/proto/.trae/skills/ui-ux-pro-max/data/products.csv +162 -0
  40. package/templates/proto/.trae/skills/ui-ux-pro-max/data/react-performance.csv +45 -0
  41. package/templates/proto/.trae/skills/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
  42. package/templates/proto/.trae/skills/ui-ux-pro-max/data/styles.csv +85 -0
  43. package/templates/proto/.trae/skills/ui-ux-pro-max/data/typography.csv +74 -0
  44. package/templates/proto/.trae/skills/ui-ux-pro-max/data/ui-reasoning.csv +162 -0
  45. package/templates/proto/.trae/skills/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
  46. package/templates/proto/.trae/skills/ui-ux-pro-max/scripts/core.py +247 -0
  47. package/templates/proto/.trae/skills/ui-ux-pro-max/scripts/design_system.py +1067 -0
  48. package/templates/proto/.trae/skills/ui-ux-pro-max/scripts/search.py +114 -0
  49. package/templates/proto/README.md +77 -0
  50. package/templates/proto/agent.md +361 -0
  51. package/templates/proto/eslint.config.js +23 -0
  52. package/templates/proto/index.html +13 -0
  53. package/templates/proto/package.json +39 -0
  54. package/templates/proto/pnpm-lock.yaml +2401 -0
  55. package/templates/proto/postcss.config.js +6 -0
  56. package/templates/proto/public/favicon.svg +1 -0
  57. package/templates/proto/public/icons.svg +24 -0
  58. package/templates/proto/skills-lock.json +10 -0
  59. package/templates/proto/src/App.css +184 -0
  60. package/templates/proto/src/App.tsx +15 -0
  61. package/templates/proto/src/assets/hero.png +0 -0
  62. package/templates/proto/src/assets/react.svg +1 -0
  63. package/templates/proto/src/assets/vite.svg +1 -0
  64. package/templates/proto/src/components/ui/SampleButton/sampleButton.css +4 -0
  65. package/templates/proto/src/components/ui/SampleButton/sampleButton.tsx +14 -0
  66. package/templates/proto/src/data/mock/products.csv +4 -0
  67. package/templates/proto/src/data/mock/users.json +16 -0
  68. package/templates/proto/src/data/types.ts +17 -0
  69. package/templates/proto/src/index.css +64 -0
  70. package/templates/proto/src/main.tsx +13 -0
  71. package/templates/proto/src/pages/Demo/components/DemoHeader/demoHeader.tsx +20 -0
  72. package/templates/proto/src/pages/Demo/components/FeatureGrid/featureGrid.tsx +18 -0
  73. package/templates/proto/src/pages/Demo/index.tsx +29 -0
  74. package/templates/proto/src/pages/Home/components/FeatureCard/featureCard.tsx +15 -0
  75. package/templates/proto/src/pages/Home/components/HeroSection/heroSection.tsx +28 -0
  76. package/templates/proto/src/pages/Home/components/InteractiveControls/interactiveControls.tsx +27 -0
  77. package/templates/proto/src/pages/Home/index.tsx +39 -0
  78. package/templates/proto/src/utils/format.ts +7 -0
  79. package/templates/proto/tailwind.config.js +11 -0
  80. package/templates/proto/tsconfig.app.json +28 -0
  81. package/templates/proto/tsconfig.json +7 -0
  82. package/templates/proto/tsconfig.node.json +26 -0
  83. package/templates/proto/vite.config.ts +10 -0
@@ -0,0 +1,2401 @@
1
+ lockfileVersion: '6.0'
2
+
3
+ settings:
4
+ autoInstallPeers: true
5
+ excludeLinksFromLockfile: false
6
+
7
+ dependencies:
8
+ clsx:
9
+ specifier: ^2.1.1
10
+ version: 2.1.1
11
+ framer-motion:
12
+ specifier: ^12.38.0
13
+ version: 12.38.0(react-dom@19.2.4)(react@19.2.4)
14
+ lucide-react:
15
+ specifier: ^0.577.0
16
+ version: 0.577.0(react@19.2.4)
17
+ react:
18
+ specifier: ^19.2.4
19
+ version: 19.2.4
20
+ react-dom:
21
+ specifier: ^19.2.4
22
+ version: 19.2.4(react@19.2.4)
23
+ react-router-dom:
24
+ specifier: ^7.13.1
25
+ version: 7.13.1(react-dom@19.2.4)(react@19.2.4)
26
+ recharts:
27
+ specifier: ^3.8.0
28
+ version: 3.8.0(@types/react@19.2.14)(react-dom@19.2.4)(react-is@19.2.4)(react@19.2.4)(redux@5.0.1)
29
+ tailwind-merge:
30
+ specifier: ^3.5.0
31
+ version: 3.5.0
32
+
33
+ devDependencies:
34
+ '@eslint/js':
35
+ specifier: ^9.39.4
36
+ version: 9.39.4
37
+ '@tailwindcss/postcss':
38
+ specifier: ^4.2.1
39
+ version: 4.2.1
40
+ '@types/node':
41
+ specifier: ^24.12.0
42
+ version: 24.12.0
43
+ '@types/react':
44
+ specifier: ^19.2.14
45
+ version: 19.2.14
46
+ '@types/react-dom':
47
+ specifier: ^19.2.3
48
+ version: 19.2.3(@types/react@19.2.14)
49
+ '@vitejs/plugin-react':
50
+ specifier: ^6.0.0
51
+ version: 6.0.1(vite@8.0.0)
52
+ autoprefixer:
53
+ specifier: ^10.4.27
54
+ version: 10.4.27(postcss@8.5.8)
55
+ eslint:
56
+ specifier: ^9.39.4
57
+ version: 9.39.4
58
+ eslint-plugin-react-hooks:
59
+ specifier: ^7.0.1
60
+ version: 7.0.1(eslint@9.39.4)
61
+ eslint-plugin-react-refresh:
62
+ specifier: ^0.5.2
63
+ version: 0.5.2(eslint@9.39.4)
64
+ globals:
65
+ specifier: ^17.4.0
66
+ version: 17.4.0
67
+ postcss:
68
+ specifier: ^8.5.8
69
+ version: 8.5.8
70
+ tailwindcss:
71
+ specifier: ^4.2.1
72
+ version: 4.2.1
73
+ typescript:
74
+ specifier: ~5.9.3
75
+ version: 5.9.3
76
+ typescript-eslint:
77
+ specifier: ^8.56.1
78
+ version: 8.57.1(eslint@9.39.4)(typescript@5.9.3)
79
+ vite:
80
+ specifier: ^8.0.0
81
+ version: 8.0.0(@types/node@24.12.0)
82
+
83
+ packages:
84
+
85
+ /@alloc/quick-lru@5.2.0:
86
+ resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
87
+ engines: {node: '>=10'}
88
+ dev: true
89
+
90
+ /@babel/code-frame@7.29.0:
91
+ resolution: {integrity: sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==}
92
+ engines: {node: '>=6.9.0'}
93
+ dependencies:
94
+ '@babel/helper-validator-identifier': 7.28.5
95
+ js-tokens: 4.0.0
96
+ picocolors: 1.1.1
97
+ dev: true
98
+
99
+ /@babel/compat-data@7.29.0:
100
+ resolution: {integrity: sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==}
101
+ engines: {node: '>=6.9.0'}
102
+ dev: true
103
+
104
+ /@babel/core@7.29.0:
105
+ resolution: {integrity: sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==}
106
+ engines: {node: '>=6.9.0'}
107
+ dependencies:
108
+ '@babel/code-frame': 7.29.0
109
+ '@babel/generator': 7.29.1
110
+ '@babel/helper-compilation-targets': 7.28.6
111
+ '@babel/helper-module-transforms': 7.28.6(@babel/core@7.29.0)
112
+ '@babel/helpers': 7.29.2
113
+ '@babel/parser': 7.29.2
114
+ '@babel/template': 7.28.6
115
+ '@babel/traverse': 7.29.0
116
+ '@babel/types': 7.29.0
117
+ '@jridgewell/remapping': 2.3.5
118
+ convert-source-map: 2.0.0
119
+ debug: 4.4.3
120
+ gensync: 1.0.0-beta.2
121
+ json5: 2.2.3
122
+ semver: 6.3.1
123
+ transitivePeerDependencies:
124
+ - supports-color
125
+ dev: true
126
+
127
+ /@babel/generator@7.29.1:
128
+ resolution: {integrity: sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==}
129
+ engines: {node: '>=6.9.0'}
130
+ dependencies:
131
+ '@babel/parser': 7.29.2
132
+ '@babel/types': 7.29.0
133
+ '@jridgewell/gen-mapping': 0.3.13
134
+ '@jridgewell/trace-mapping': 0.3.31
135
+ jsesc: 3.1.0
136
+ dev: true
137
+
138
+ /@babel/helper-compilation-targets@7.28.6:
139
+ resolution: {integrity: sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==}
140
+ engines: {node: '>=6.9.0'}
141
+ dependencies:
142
+ '@babel/compat-data': 7.29.0
143
+ '@babel/helper-validator-option': 7.27.1
144
+ browserslist: 4.28.1
145
+ lru-cache: 5.1.1
146
+ semver: 6.3.1
147
+ dev: true
148
+
149
+ /@babel/helper-globals@7.28.0:
150
+ resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==}
151
+ engines: {node: '>=6.9.0'}
152
+ dev: true
153
+
154
+ /@babel/helper-module-imports@7.28.6:
155
+ resolution: {integrity: sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==}
156
+ engines: {node: '>=6.9.0'}
157
+ dependencies:
158
+ '@babel/traverse': 7.29.0
159
+ '@babel/types': 7.29.0
160
+ transitivePeerDependencies:
161
+ - supports-color
162
+ dev: true
163
+
164
+ /@babel/helper-module-transforms@7.28.6(@babel/core@7.29.0):
165
+ resolution: {integrity: sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==}
166
+ engines: {node: '>=6.9.0'}
167
+ peerDependencies:
168
+ '@babel/core': ^7.0.0
169
+ dependencies:
170
+ '@babel/core': 7.29.0
171
+ '@babel/helper-module-imports': 7.28.6
172
+ '@babel/helper-validator-identifier': 7.28.5
173
+ '@babel/traverse': 7.29.0
174
+ transitivePeerDependencies:
175
+ - supports-color
176
+ dev: true
177
+
178
+ /@babel/helper-string-parser@7.27.1:
179
+ resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
180
+ engines: {node: '>=6.9.0'}
181
+ dev: true
182
+
183
+ /@babel/helper-validator-identifier@7.28.5:
184
+ resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
185
+ engines: {node: '>=6.9.0'}
186
+ dev: true
187
+
188
+ /@babel/helper-validator-option@7.27.1:
189
+ resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
190
+ engines: {node: '>=6.9.0'}
191
+ dev: true
192
+
193
+ /@babel/helpers@7.29.2:
194
+ resolution: {integrity: sha512-HoGuUs4sCZNezVEKdVcwqmZN8GoHirLUcLaYVNBK2J0DadGtdcqgr3BCbvH8+XUo4NGjNl3VOtSjEKNzqfFgKw==}
195
+ engines: {node: '>=6.9.0'}
196
+ dependencies:
197
+ '@babel/template': 7.28.6
198
+ '@babel/types': 7.29.0
199
+ dev: true
200
+
201
+ /@babel/parser@7.29.2:
202
+ resolution: {integrity: sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==}
203
+ engines: {node: '>=6.0.0'}
204
+ hasBin: true
205
+ dependencies:
206
+ '@babel/types': 7.29.0
207
+ dev: true
208
+
209
+ /@babel/template@7.28.6:
210
+ resolution: {integrity: sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==}
211
+ engines: {node: '>=6.9.0'}
212
+ dependencies:
213
+ '@babel/code-frame': 7.29.0
214
+ '@babel/parser': 7.29.2
215
+ '@babel/types': 7.29.0
216
+ dev: true
217
+
218
+ /@babel/traverse@7.29.0:
219
+ resolution: {integrity: sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==}
220
+ engines: {node: '>=6.9.0'}
221
+ dependencies:
222
+ '@babel/code-frame': 7.29.0
223
+ '@babel/generator': 7.29.1
224
+ '@babel/helper-globals': 7.28.0
225
+ '@babel/parser': 7.29.2
226
+ '@babel/template': 7.28.6
227
+ '@babel/types': 7.29.0
228
+ debug: 4.4.3
229
+ transitivePeerDependencies:
230
+ - supports-color
231
+ dev: true
232
+
233
+ /@babel/types@7.29.0:
234
+ resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==}
235
+ engines: {node: '>=6.9.0'}
236
+ dependencies:
237
+ '@babel/helper-string-parser': 7.27.1
238
+ '@babel/helper-validator-identifier': 7.28.5
239
+ dev: true
240
+
241
+ /@emnapi/core@1.9.0:
242
+ resolution: {integrity: sha512-0DQ98G9ZQZOxfUcQn1waV2yS8aWdZ6kJMbYCJB3oUBecjWYO1fqJ+a1DRfPF3O5JEkwqwP1A9QEN/9mYm2Yd0w==}
243
+ requiresBuild: true
244
+ dependencies:
245
+ '@emnapi/wasi-threads': 1.2.0
246
+ tslib: 2.8.1
247
+ dev: true
248
+ optional: true
249
+
250
+ /@emnapi/runtime@1.9.0:
251
+ resolution: {integrity: sha512-QN75eB0IH2ywSpRpNddCRfQIhmJYBCJ1x5Lb3IscKAL8bMnVAKnRg8dCoXbHzVLLH7P38N2Z3mtulB7W0J0FKw==}
252
+ requiresBuild: true
253
+ dependencies:
254
+ tslib: 2.8.1
255
+ dev: true
256
+ optional: true
257
+
258
+ /@emnapi/wasi-threads@1.2.0:
259
+ resolution: {integrity: sha512-N10dEJNSsUx41Z6pZsXU8FjPjpBEplgH24sfkmITrBED1/U2Esum9F3lfLrMjKHHjmi557zQn7kR9R+XWXu5Rg==}
260
+ requiresBuild: true
261
+ dependencies:
262
+ tslib: 2.8.1
263
+ dev: true
264
+ optional: true
265
+
266
+ /@eslint-community/eslint-utils@4.9.1(eslint@9.39.4):
267
+ resolution: {integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==}
268
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
269
+ peerDependencies:
270
+ eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
271
+ dependencies:
272
+ eslint: 9.39.4
273
+ eslint-visitor-keys: 3.4.3
274
+ dev: true
275
+
276
+ /@eslint-community/regexpp@4.12.2:
277
+ resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==}
278
+ engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
279
+ dev: true
280
+
281
+ /@eslint/config-array@0.21.2:
282
+ resolution: {integrity: sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw==}
283
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
284
+ dependencies:
285
+ '@eslint/object-schema': 2.1.7
286
+ debug: 4.4.3
287
+ minimatch: 3.1.5
288
+ transitivePeerDependencies:
289
+ - supports-color
290
+ dev: true
291
+
292
+ /@eslint/config-helpers@0.4.2:
293
+ resolution: {integrity: sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==}
294
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
295
+ dependencies:
296
+ '@eslint/core': 0.17.0
297
+ dev: true
298
+
299
+ /@eslint/core@0.17.0:
300
+ resolution: {integrity: sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==}
301
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
302
+ dependencies:
303
+ '@types/json-schema': 7.0.15
304
+ dev: true
305
+
306
+ /@eslint/eslintrc@3.3.5:
307
+ resolution: {integrity: sha512-4IlJx0X0qftVsN5E+/vGujTRIFtwuLbNsVUe7TO6zYPDR1O6nFwvwhIKEKSrl6dZchmYBITazxKoUYOjdtjlRg==}
308
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
309
+ dependencies:
310
+ ajv: 6.14.0
311
+ debug: 4.4.3
312
+ espree: 10.4.0
313
+ globals: 14.0.0
314
+ ignore: 5.3.2
315
+ import-fresh: 3.3.1
316
+ js-yaml: 4.1.1
317
+ minimatch: 3.1.5
318
+ strip-json-comments: 3.1.1
319
+ transitivePeerDependencies:
320
+ - supports-color
321
+ dev: true
322
+
323
+ /@eslint/js@9.39.4:
324
+ resolution: {integrity: sha512-nE7DEIchvtiFTwBw4Lfbu59PG+kCofhjsKaCWzxTpt4lfRjRMqG6uMBzKXuEcyXhOHoUp9riAm7/aWYGhXZ9cw==}
325
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
326
+ dev: true
327
+
328
+ /@eslint/object-schema@2.1.7:
329
+ resolution: {integrity: sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==}
330
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
331
+ dev: true
332
+
333
+ /@eslint/plugin-kit@0.4.1:
334
+ resolution: {integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==}
335
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
336
+ dependencies:
337
+ '@eslint/core': 0.17.0
338
+ levn: 0.4.1
339
+ dev: true
340
+
341
+ /@humanfs/core@0.19.1:
342
+ resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
343
+ engines: {node: '>=18.18.0'}
344
+ dev: true
345
+
346
+ /@humanfs/node@0.16.7:
347
+ resolution: {integrity: sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==}
348
+ engines: {node: '>=18.18.0'}
349
+ dependencies:
350
+ '@humanfs/core': 0.19.1
351
+ '@humanwhocodes/retry': 0.4.3
352
+ dev: true
353
+
354
+ /@humanwhocodes/module-importer@1.0.1:
355
+ resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
356
+ engines: {node: '>=12.22'}
357
+ dev: true
358
+
359
+ /@humanwhocodes/retry@0.4.3:
360
+ resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==}
361
+ engines: {node: '>=18.18'}
362
+ dev: true
363
+
364
+ /@jridgewell/gen-mapping@0.3.13:
365
+ resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
366
+ dependencies:
367
+ '@jridgewell/sourcemap-codec': 1.5.5
368
+ '@jridgewell/trace-mapping': 0.3.31
369
+ dev: true
370
+
371
+ /@jridgewell/remapping@2.3.5:
372
+ resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
373
+ dependencies:
374
+ '@jridgewell/gen-mapping': 0.3.13
375
+ '@jridgewell/trace-mapping': 0.3.31
376
+ dev: true
377
+
378
+ /@jridgewell/resolve-uri@3.1.2:
379
+ resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
380
+ engines: {node: '>=6.0.0'}
381
+ dev: true
382
+
383
+ /@jridgewell/sourcemap-codec@1.5.5:
384
+ resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
385
+ dev: true
386
+
387
+ /@jridgewell/trace-mapping@0.3.31:
388
+ resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
389
+ dependencies:
390
+ '@jridgewell/resolve-uri': 3.1.2
391
+ '@jridgewell/sourcemap-codec': 1.5.5
392
+ dev: true
393
+
394
+ /@napi-rs/wasm-runtime@1.1.1:
395
+ resolution: {integrity: sha512-p64ah1M1ld8xjWv3qbvFwHiFVWrq1yFvV4f7w+mzaqiR4IlSgkqhcRdHwsGgomwzBH51sRY4NEowLxnaBjcW/A==}
396
+ requiresBuild: true
397
+ dependencies:
398
+ '@emnapi/core': 1.9.0
399
+ '@emnapi/runtime': 1.9.0
400
+ '@tybys/wasm-util': 0.10.1
401
+ dev: true
402
+ optional: true
403
+
404
+ /@oxc-project/runtime@0.115.0:
405
+ resolution: {integrity: sha512-Rg8Wlt5dCbXhQnsXPrkOjL1DTSvXLgb2R/KYfnf1/K+R0k6UMLEmbQXPM+kwrWqSmWA2t0B1EtHy2/3zikQpvQ==}
406
+ engines: {node: ^20.19.0 || >=22.12.0}
407
+ dev: true
408
+
409
+ /@oxc-project/types@0.115.0:
410
+ resolution: {integrity: sha512-4n91DKnebUS4yjUHl2g3/b2T+IUdCfmoZGhmwsovZCDaJSs+QkVAM+0AqqTxHSsHfeiMuueT75cZaZcT/m0pSw==}
411
+ dev: true
412
+
413
+ /@reduxjs/toolkit@2.11.2(react-redux@9.2.0)(react@19.2.4):
414
+ resolution: {integrity: sha512-Kd6kAHTA6/nUpp8mySPqj3en3dm0tdMIgbttnQ1xFMVpufoj+ADi8pXLBsd4xzTRHQa7t/Jv8W5UnCuW4kuWMQ==}
415
+ peerDependencies:
416
+ react: ^16.9.0 || ^17.0.0 || ^18 || ^19
417
+ react-redux: ^7.2.1 || ^8.1.3 || ^9.0.0
418
+ peerDependenciesMeta:
419
+ react:
420
+ optional: true
421
+ react-redux:
422
+ optional: true
423
+ dependencies:
424
+ '@standard-schema/spec': 1.1.0
425
+ '@standard-schema/utils': 0.3.0
426
+ immer: 11.1.4
427
+ react: 19.2.4
428
+ react-redux: 9.2.0(@types/react@19.2.14)(react@19.2.4)(redux@5.0.1)
429
+ redux: 5.0.1
430
+ redux-thunk: 3.1.0(redux@5.0.1)
431
+ reselect: 5.1.1
432
+ dev: false
433
+
434
+ /@rolldown/binding-android-arm64@1.0.0-rc.9:
435
+ resolution: {integrity: sha512-lcJL0bN5hpgJfSIz/8PIf02irmyL43P+j1pTCfbD1DbLkmGRuFIA4DD3B3ZOvGqG0XiVvRznbKtN0COQVaKUTg==}
436
+ engines: {node: ^20.19.0 || >=22.12.0}
437
+ cpu: [arm64]
438
+ os: [android]
439
+ requiresBuild: true
440
+ dev: true
441
+ optional: true
442
+
443
+ /@rolldown/binding-darwin-arm64@1.0.0-rc.9:
444
+ resolution: {integrity: sha512-J7Zk3kLYFsLtuH6U+F4pS2sYVzac0qkjcO5QxHS7OS7yZu2LRs+IXo+uvJ/mvpyUljDJ3LROZPoQfgBIpCMhdQ==}
445
+ engines: {node: ^20.19.0 || >=22.12.0}
446
+ cpu: [arm64]
447
+ os: [darwin]
448
+ requiresBuild: true
449
+ dev: true
450
+ optional: true
451
+
452
+ /@rolldown/binding-darwin-x64@1.0.0-rc.9:
453
+ resolution: {integrity: sha512-iwtmmghy8nhfRGeNAIltcNXzD0QMNaaA5U/NyZc1Ia4bxrzFByNMDoppoC+hl7cDiUq5/1CnFthpT9n+UtfFyg==}
454
+ engines: {node: ^20.19.0 || >=22.12.0}
455
+ cpu: [x64]
456
+ os: [darwin]
457
+ requiresBuild: true
458
+ dev: true
459
+ optional: true
460
+
461
+ /@rolldown/binding-freebsd-x64@1.0.0-rc.9:
462
+ resolution: {integrity: sha512-DLFYI78SCiZr5VvdEplsVC2Vx53lnA4/Ga5C65iyldMVaErr86aiqCoNBLl92PXPfDtUYjUh+xFFor40ueNs4Q==}
463
+ engines: {node: ^20.19.0 || >=22.12.0}
464
+ cpu: [x64]
465
+ os: [freebsd]
466
+ requiresBuild: true
467
+ dev: true
468
+ optional: true
469
+
470
+ /@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.9:
471
+ resolution: {integrity: sha512-CsjTmTwd0Hri6iTw/DRMK7kOZ7FwAkrO4h8YWKoX/kcj833e4coqo2wzIFywtch/8Eb5enQ/lwLM7w6JX1W5RQ==}
472
+ engines: {node: ^20.19.0 || >=22.12.0}
473
+ cpu: [arm]
474
+ os: [linux]
475
+ requiresBuild: true
476
+ dev: true
477
+ optional: true
478
+
479
+ /@rolldown/binding-linux-arm64-gnu@1.0.0-rc.9:
480
+ resolution: {integrity: sha512-2x9O2JbSPxpxMDhP9Z74mahAStibTlrBMW0520+epJH5sac7/LwZW5Bmg/E6CXuEF53JJFW509uP+lSedaUNxg==}
481
+ engines: {node: ^20.19.0 || >=22.12.0}
482
+ cpu: [arm64]
483
+ os: [linux]
484
+ libc: [glibc]
485
+ requiresBuild: true
486
+ dev: true
487
+ optional: true
488
+
489
+ /@rolldown/binding-linux-arm64-musl@1.0.0-rc.9:
490
+ resolution: {integrity: sha512-JA1QRW31ogheAIRhIg9tjMfsYbglXXYGNPLdPEYrwFxdbkQCAzvpSCSHCDWNl4hTtrol8WeboCSEpjdZK8qrCg==}
491
+ engines: {node: ^20.19.0 || >=22.12.0}
492
+ cpu: [arm64]
493
+ os: [linux]
494
+ libc: [musl]
495
+ requiresBuild: true
496
+ dev: true
497
+ optional: true
498
+
499
+ /@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.9:
500
+ resolution: {integrity: sha512-aOKU9dJheda8Kj8Y3w9gnt9QFOO+qKPAl8SWd7JPHP+Cu0EuDAE5wokQubLzIDQWg2myXq2XhTpOVS07qqvT+w==}
501
+ engines: {node: ^20.19.0 || >=22.12.0}
502
+ cpu: [ppc64]
503
+ os: [linux]
504
+ libc: [glibc]
505
+ requiresBuild: true
506
+ dev: true
507
+ optional: true
508
+
509
+ /@rolldown/binding-linux-s390x-gnu@1.0.0-rc.9:
510
+ resolution: {integrity: sha512-OalO94fqj7IWRn3VdXWty75jC5dk4C197AWEuMhIpvVv2lw9fiPhud0+bW2ctCxb3YoBZor71QHbY+9/WToadA==}
511
+ engines: {node: ^20.19.0 || >=22.12.0}
512
+ cpu: [s390x]
513
+ os: [linux]
514
+ libc: [glibc]
515
+ requiresBuild: true
516
+ dev: true
517
+ optional: true
518
+
519
+ /@rolldown/binding-linux-x64-gnu@1.0.0-rc.9:
520
+ resolution: {integrity: sha512-cVEl1vZtBsBZna3YMjGXNvnYYrOJ7RzuWvZU0ffvJUexWkukMaDuGhUXn0rjnV0ptzGVkvc+vW9Yqy6h8YX4pg==}
521
+ engines: {node: ^20.19.0 || >=22.12.0}
522
+ cpu: [x64]
523
+ os: [linux]
524
+ libc: [glibc]
525
+ requiresBuild: true
526
+ dev: true
527
+ optional: true
528
+
529
+ /@rolldown/binding-linux-x64-musl@1.0.0-rc.9:
530
+ resolution: {integrity: sha512-UzYnKCIIc4heAKgI4PZ3dfBGUZefGCJ1TPDuLHoCzgrMYPb5Rv6TLFuYtyM4rWyHM7hymNdsg5ik2C+UD9VDbA==}
531
+ engines: {node: ^20.19.0 || >=22.12.0}
532
+ cpu: [x64]
533
+ os: [linux]
534
+ libc: [musl]
535
+ requiresBuild: true
536
+ dev: true
537
+ optional: true
538
+
539
+ /@rolldown/binding-openharmony-arm64@1.0.0-rc.9:
540
+ resolution: {integrity: sha512-+6zoiF+RRyf5cdlFQP7nm58mq7+/2PFaY2DNQeD4B87N36JzfF/l9mdBkkmTvSYcYPE8tMh/o3cRlsx1ldLfog==}
541
+ engines: {node: ^20.19.0 || >=22.12.0}
542
+ cpu: [arm64]
543
+ os: [openharmony]
544
+ requiresBuild: true
545
+ dev: true
546
+ optional: true
547
+
548
+ /@rolldown/binding-wasm32-wasi@1.0.0-rc.9:
549
+ resolution: {integrity: sha512-rgFN6sA/dyebil3YTlL2evvi/M+ivhfnyxec7AccTpRPccno/rPoNlqybEZQBkcbZu8Hy+eqNJCqfBR8P7Pg8g==}
550
+ engines: {node: '>=14.0.0'}
551
+ cpu: [wasm32]
552
+ requiresBuild: true
553
+ dependencies:
554
+ '@napi-rs/wasm-runtime': 1.1.1
555
+ dev: true
556
+ optional: true
557
+
558
+ /@rolldown/binding-win32-arm64-msvc@1.0.0-rc.9:
559
+ resolution: {integrity: sha512-lHVNUG/8nlF1IQk1C0Ci574qKYyty2goMiPlRqkC5R+3LkXDkL5Dhx8ytbxq35m+pkHVIvIxviD+TWLdfeuadA==}
560
+ engines: {node: ^20.19.0 || >=22.12.0}
561
+ cpu: [arm64]
562
+ os: [win32]
563
+ requiresBuild: true
564
+ dev: true
565
+ optional: true
566
+
567
+ /@rolldown/binding-win32-x64-msvc@1.0.0-rc.9:
568
+ resolution: {integrity: sha512-G0oA4+w1iY5AGi5HcDTxWsoxF509hrFIPB2rduV5aDqS9FtDg1CAfa7V34qImbjfhIcA8C+RekocJZA96EarwQ==}
569
+ engines: {node: ^20.19.0 || >=22.12.0}
570
+ cpu: [x64]
571
+ os: [win32]
572
+ requiresBuild: true
573
+ dev: true
574
+ optional: true
575
+
576
+ /@rolldown/pluginutils@1.0.0-rc.7:
577
+ resolution: {integrity: sha512-qujRfC8sFVInYSPPMLQByRh7zhwkGFS4+tyMQ83srV1qrxL4g8E2tyxVVyxd0+8QeBM1mIk9KbWxkegRr76XzA==}
578
+ dev: true
579
+
580
+ /@rolldown/pluginutils@1.0.0-rc.9:
581
+ resolution: {integrity: sha512-w6oiRWgEBl04QkFZgmW+jnU1EC9b57Oihi2ot3HNWIQRqgHp5PnYDia5iZ5FF7rpa4EQdiqMDXjlqKGXBhsoXw==}
582
+ dev: true
583
+
584
+ /@standard-schema/spec@1.1.0:
585
+ resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==}
586
+ dev: false
587
+
588
+ /@standard-schema/utils@0.3.0:
589
+ resolution: {integrity: sha512-e7Mew686owMaPJVNNLs55PUvgz371nKgwsc4vxE49zsODpJEnxgxRo2y/OKrqueavXgZNMDVj3DdHFlaSAeU8g==}
590
+ dev: false
591
+
592
+ /@tailwindcss/node@4.2.1:
593
+ resolution: {integrity: sha512-jlx6sLk4EOwO6hHe1oCGm1Q4AN/s0rSrTTPBGPM0/RQ6Uylwq17FuU8IeJJKEjtc6K6O07zsvP+gDO6MMWo7pg==}
594
+ dependencies:
595
+ '@jridgewell/remapping': 2.3.5
596
+ enhanced-resolve: 5.20.1
597
+ jiti: 2.6.1
598
+ lightningcss: 1.31.1
599
+ magic-string: 0.30.21
600
+ source-map-js: 1.2.1
601
+ tailwindcss: 4.2.1
602
+ dev: true
603
+
604
+ /@tailwindcss/oxide-android-arm64@4.2.1:
605
+ resolution: {integrity: sha512-eZ7G1Zm5EC8OOKaesIKuw77jw++QJ2lL9N+dDpdQiAB/c/B2wDh0QPFHbkBVrXnwNugvrbJFk1gK2SsVjwWReg==}
606
+ engines: {node: '>= 20'}
607
+ cpu: [arm64]
608
+ os: [android]
609
+ requiresBuild: true
610
+ dev: true
611
+ optional: true
612
+
613
+ /@tailwindcss/oxide-darwin-arm64@4.2.1:
614
+ resolution: {integrity: sha512-q/LHkOstoJ7pI1J0q6djesLzRvQSIfEto148ppAd+BVQK0JYjQIFSK3JgYZJa+Yzi0DDa52ZsQx2rqytBnf8Hw==}
615
+ engines: {node: '>= 20'}
616
+ cpu: [arm64]
617
+ os: [darwin]
618
+ requiresBuild: true
619
+ dev: true
620
+ optional: true
621
+
622
+ /@tailwindcss/oxide-darwin-x64@4.2.1:
623
+ resolution: {integrity: sha512-/f/ozlaXGY6QLbpvd/kFTro2l18f7dHKpB+ieXz+Cijl4Mt9AI2rTrpq7V+t04nK+j9XBQHnSMdeQRhbGyt6fw==}
624
+ engines: {node: '>= 20'}
625
+ cpu: [x64]
626
+ os: [darwin]
627
+ requiresBuild: true
628
+ dev: true
629
+ optional: true
630
+
631
+ /@tailwindcss/oxide-freebsd-x64@4.2.1:
632
+ resolution: {integrity: sha512-5e/AkgYJT/cpbkys/OU2Ei2jdETCLlifwm7ogMC7/hksI2fC3iiq6OcXwjibcIjPung0kRtR3TxEITkqgn0TcA==}
633
+ engines: {node: '>= 20'}
634
+ cpu: [x64]
635
+ os: [freebsd]
636
+ requiresBuild: true
637
+ dev: true
638
+ optional: true
639
+
640
+ /@tailwindcss/oxide-linux-arm-gnueabihf@4.2.1:
641
+ resolution: {integrity: sha512-Uny1EcVTTmerCKt/1ZuKTkb0x8ZaiuYucg2/kImO5A5Y/kBz41/+j0gxUZl+hTF3xkWpDmHX+TaWhOtba2Fyuw==}
642
+ engines: {node: '>= 20'}
643
+ cpu: [arm]
644
+ os: [linux]
645
+ requiresBuild: true
646
+ dev: true
647
+ optional: true
648
+
649
+ /@tailwindcss/oxide-linux-arm64-gnu@4.2.1:
650
+ resolution: {integrity: sha512-CTrwomI+c7n6aSSQlsPL0roRiNMDQ/YzMD9EjcR+H4f0I1SQ8QqIuPnsVp7QgMkC1Qi8rtkekLkOFjo7OlEFRQ==}
651
+ engines: {node: '>= 20'}
652
+ cpu: [arm64]
653
+ os: [linux]
654
+ libc: [glibc]
655
+ requiresBuild: true
656
+ dev: true
657
+ optional: true
658
+
659
+ /@tailwindcss/oxide-linux-arm64-musl@4.2.1:
660
+ resolution: {integrity: sha512-WZA0CHRL/SP1TRbA5mp9htsppSEkWuQ4KsSUumYQnyl8ZdT39ntwqmz4IUHGN6p4XdSlYfJwM4rRzZLShHsGAQ==}
661
+ engines: {node: '>= 20'}
662
+ cpu: [arm64]
663
+ os: [linux]
664
+ libc: [musl]
665
+ requiresBuild: true
666
+ dev: true
667
+ optional: true
668
+
669
+ /@tailwindcss/oxide-linux-x64-gnu@4.2.1:
670
+ resolution: {integrity: sha512-qMFzxI2YlBOLW5PhblzuSWlWfwLHaneBE0xHzLrBgNtqN6mWfs+qYbhryGSXQjFYB1Dzf5w+LN5qbUTPhW7Y5g==}
671
+ engines: {node: '>= 20'}
672
+ cpu: [x64]
673
+ os: [linux]
674
+ libc: [glibc]
675
+ requiresBuild: true
676
+ dev: true
677
+ optional: true
678
+
679
+ /@tailwindcss/oxide-linux-x64-musl@4.2.1:
680
+ resolution: {integrity: sha512-5r1X2FKnCMUPlXTWRYpHdPYUY6a1Ar/t7P24OuiEdEOmms5lyqjDRvVY1yy9Rmioh+AunQ0rWiOTPE8F9A3v5g==}
681
+ engines: {node: '>= 20'}
682
+ cpu: [x64]
683
+ os: [linux]
684
+ libc: [musl]
685
+ requiresBuild: true
686
+ dev: true
687
+ optional: true
688
+
689
+ /@tailwindcss/oxide-wasm32-wasi@4.2.1:
690
+ resolution: {integrity: sha512-MGFB5cVPvshR85MTJkEvqDUnuNoysrsRxd6vnk1Lf2tbiqNlXpHYZqkqOQalydienEWOHHFyyuTSYRsLfxFJ2Q==}
691
+ engines: {node: '>=14.0.0'}
692
+ cpu: [wasm32]
693
+ requiresBuild: true
694
+ dev: true
695
+ optional: true
696
+ bundledDependencies:
697
+ - '@napi-rs/wasm-runtime'
698
+ - '@emnapi/core'
699
+ - '@emnapi/runtime'
700
+ - '@tybys/wasm-util'
701
+ - '@emnapi/wasi-threads'
702
+ - tslib
703
+
704
+ /@tailwindcss/oxide-win32-arm64-msvc@4.2.1:
705
+ resolution: {integrity: sha512-YlUEHRHBGnCMh4Nj4GnqQyBtsshUPdiNroZj8VPkvTZSoHsilRCwXcVKnG9kyi0ZFAS/3u+qKHBdDc81SADTRA==}
706
+ engines: {node: '>= 20'}
707
+ cpu: [arm64]
708
+ os: [win32]
709
+ requiresBuild: true
710
+ dev: true
711
+ optional: true
712
+
713
+ /@tailwindcss/oxide-win32-x64-msvc@4.2.1:
714
+ resolution: {integrity: sha512-rbO34G5sMWWyrN/idLeVxAZgAKWrn5LiR3/I90Q9MkA67s6T1oB0xtTe+0heoBvHSpbU9Mk7i6uwJnpo4u21XQ==}
715
+ engines: {node: '>= 20'}
716
+ cpu: [x64]
717
+ os: [win32]
718
+ requiresBuild: true
719
+ dev: true
720
+ optional: true
721
+
722
+ /@tailwindcss/oxide@4.2.1:
723
+ resolution: {integrity: sha512-yv9jeEFWnjKCI6/T3Oq50yQEOqmpmpfzG1hcZsAOaXFQPfzWprWrlHSdGPEF3WQTi8zu8ohC9Mh9J470nT5pUw==}
724
+ engines: {node: '>= 20'}
725
+ optionalDependencies:
726
+ '@tailwindcss/oxide-android-arm64': 4.2.1
727
+ '@tailwindcss/oxide-darwin-arm64': 4.2.1
728
+ '@tailwindcss/oxide-darwin-x64': 4.2.1
729
+ '@tailwindcss/oxide-freebsd-x64': 4.2.1
730
+ '@tailwindcss/oxide-linux-arm-gnueabihf': 4.2.1
731
+ '@tailwindcss/oxide-linux-arm64-gnu': 4.2.1
732
+ '@tailwindcss/oxide-linux-arm64-musl': 4.2.1
733
+ '@tailwindcss/oxide-linux-x64-gnu': 4.2.1
734
+ '@tailwindcss/oxide-linux-x64-musl': 4.2.1
735
+ '@tailwindcss/oxide-wasm32-wasi': 4.2.1
736
+ '@tailwindcss/oxide-win32-arm64-msvc': 4.2.1
737
+ '@tailwindcss/oxide-win32-x64-msvc': 4.2.1
738
+ dev: true
739
+
740
+ /@tailwindcss/postcss@4.2.1:
741
+ resolution: {integrity: sha512-OEwGIBnXnj7zJeonOh6ZG9woofIjGrd2BORfvE5p9USYKDCZoQmfqLcfNiRWoJlRWLdNPn2IgVZuWAOM4iTYMw==}
742
+ dependencies:
743
+ '@alloc/quick-lru': 5.2.0
744
+ '@tailwindcss/node': 4.2.1
745
+ '@tailwindcss/oxide': 4.2.1
746
+ postcss: 8.5.8
747
+ tailwindcss: 4.2.1
748
+ dev: true
749
+
750
+ /@tybys/wasm-util@0.10.1:
751
+ resolution: {integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==}
752
+ requiresBuild: true
753
+ dependencies:
754
+ tslib: 2.8.1
755
+ dev: true
756
+ optional: true
757
+
758
+ /@types/d3-array@3.2.2:
759
+ resolution: {integrity: sha512-hOLWVbm7uRza0BYXpIIW5pxfrKe0W+D5lrFiAEYR+pb6w3N2SwSMaJbXdUfSEv+dT4MfHBLtn5js0LAWaO6otw==}
760
+ dev: false
761
+
762
+ /@types/d3-color@3.1.3:
763
+ resolution: {integrity: sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==}
764
+ dev: false
765
+
766
+ /@types/d3-ease@3.0.2:
767
+ resolution: {integrity: sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==}
768
+ dev: false
769
+
770
+ /@types/d3-interpolate@3.0.4:
771
+ resolution: {integrity: sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==}
772
+ dependencies:
773
+ '@types/d3-color': 3.1.3
774
+ dev: false
775
+
776
+ /@types/d3-path@3.1.1:
777
+ resolution: {integrity: sha512-VMZBYyQvbGmWyWVea0EHs/BwLgxc+MKi1zLDCONksozI4YJMcTt8ZEuIR4Sb1MMTE8MMW49v0IwI5+b7RmfWlg==}
778
+ dev: false
779
+
780
+ /@types/d3-scale@4.0.9:
781
+ resolution: {integrity: sha512-dLmtwB8zkAeO/juAMfnV+sItKjlsw2lKdZVVy6LRr0cBmegxSABiLEpGVmSJJ8O08i4+sGR6qQtb6WtuwJdvVw==}
782
+ dependencies:
783
+ '@types/d3-time': 3.0.4
784
+ dev: false
785
+
786
+ /@types/d3-shape@3.1.8:
787
+ resolution: {integrity: sha512-lae0iWfcDeR7qt7rA88BNiqdvPS5pFVPpo5OfjElwNaT2yyekbM0C9vK+yqBqEmHr6lDkRnYNoTBYlAgJa7a4w==}
788
+ dependencies:
789
+ '@types/d3-path': 3.1.1
790
+ dev: false
791
+
792
+ /@types/d3-time@3.0.4:
793
+ resolution: {integrity: sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g==}
794
+ dev: false
795
+
796
+ /@types/d3-timer@3.0.2:
797
+ resolution: {integrity: sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==}
798
+ dev: false
799
+
800
+ /@types/estree@1.0.8:
801
+ resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
802
+ dev: true
803
+
804
+ /@types/json-schema@7.0.15:
805
+ resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
806
+ dev: true
807
+
808
+ /@types/node@24.12.0:
809
+ resolution: {integrity: sha512-GYDxsZi3ChgmckRT9HPU0WEhKLP08ev/Yfcq2AstjrDASOYCSXeyjDsHg4v5t4jOj7cyDX3vmprafKlWIG9MXQ==}
810
+ dependencies:
811
+ undici-types: 7.16.0
812
+ dev: true
813
+
814
+ /@types/react-dom@19.2.3(@types/react@19.2.14):
815
+ resolution: {integrity: sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==}
816
+ peerDependencies:
817
+ '@types/react': ^19.2.0
818
+ dependencies:
819
+ '@types/react': 19.2.14
820
+ dev: true
821
+
822
+ /@types/react@19.2.14:
823
+ resolution: {integrity: sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==}
824
+ dependencies:
825
+ csstype: 3.2.3
826
+
827
+ /@types/use-sync-external-store@0.0.6:
828
+ resolution: {integrity: sha512-zFDAD+tlpf2r4asuHEj0XH6pY6i0g5NeAHPn+15wk3BV6JA69eERFXC1gyGThDkVa1zCyKr5jox1+2LbV/AMLg==}
829
+ dev: false
830
+
831
+ /@typescript-eslint/eslint-plugin@8.57.1(@typescript-eslint/parser@8.57.1)(eslint@9.39.4)(typescript@5.9.3):
832
+ resolution: {integrity: sha512-Gn3aqnvNl4NGc6x3/Bqk1AOn0thyTU9bqDRhiRnUWezgvr2OnhYCWCgC8zXXRVqBsIL1pSDt7T9nJUe0oM0kDQ==}
833
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
834
+ peerDependencies:
835
+ '@typescript-eslint/parser': ^8.57.1
836
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
837
+ typescript: '>=4.8.4 <6.0.0'
838
+ dependencies:
839
+ '@eslint-community/regexpp': 4.12.2
840
+ '@typescript-eslint/parser': 8.57.1(eslint@9.39.4)(typescript@5.9.3)
841
+ '@typescript-eslint/scope-manager': 8.57.1
842
+ '@typescript-eslint/type-utils': 8.57.1(eslint@9.39.4)(typescript@5.9.3)
843
+ '@typescript-eslint/utils': 8.57.1(eslint@9.39.4)(typescript@5.9.3)
844
+ '@typescript-eslint/visitor-keys': 8.57.1
845
+ eslint: 9.39.4
846
+ ignore: 7.0.5
847
+ natural-compare: 1.4.0
848
+ ts-api-utils: 2.4.0(typescript@5.9.3)
849
+ typescript: 5.9.3
850
+ transitivePeerDependencies:
851
+ - supports-color
852
+ dev: true
853
+
854
+ /@typescript-eslint/parser@8.57.1(eslint@9.39.4)(typescript@5.9.3):
855
+ resolution: {integrity: sha512-k4eNDan0EIMTT/dUKc/g+rsJ6wcHYhNPdY19VoX/EOtaAG8DLtKCykhrUnuHPYvinn5jhAPgD2Qw9hXBwrahsw==}
856
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
857
+ peerDependencies:
858
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
859
+ typescript: '>=4.8.4 <6.0.0'
860
+ dependencies:
861
+ '@typescript-eslint/scope-manager': 8.57.1
862
+ '@typescript-eslint/types': 8.57.1
863
+ '@typescript-eslint/typescript-estree': 8.57.1(typescript@5.9.3)
864
+ '@typescript-eslint/visitor-keys': 8.57.1
865
+ debug: 4.4.3
866
+ eslint: 9.39.4
867
+ typescript: 5.9.3
868
+ transitivePeerDependencies:
869
+ - supports-color
870
+ dev: true
871
+
872
+ /@typescript-eslint/project-service@8.57.1(typescript@5.9.3):
873
+ resolution: {integrity: sha512-vx1F37BRO1OftsYlmG9xay1TqnjNVlqALymwWVuYTdo18XuKxtBpCj1QlzNIEHlvlB27osvXFWptYiEWsVdYsg==}
874
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
875
+ peerDependencies:
876
+ typescript: '>=4.8.4 <6.0.0'
877
+ dependencies:
878
+ '@typescript-eslint/tsconfig-utils': 8.57.1(typescript@5.9.3)
879
+ '@typescript-eslint/types': 8.57.1
880
+ debug: 4.4.3
881
+ typescript: 5.9.3
882
+ transitivePeerDependencies:
883
+ - supports-color
884
+ dev: true
885
+
886
+ /@typescript-eslint/scope-manager@8.57.1:
887
+ resolution: {integrity: sha512-hs/QcpCwlwT2L5S+3fT6gp0PabyGk4Q0Rv2doJXA0435/OpnSR3VRgvrp8Xdoc3UAYSg9cyUjTeFXZEPg/3OKg==}
888
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
889
+ dependencies:
890
+ '@typescript-eslint/types': 8.57.1
891
+ '@typescript-eslint/visitor-keys': 8.57.1
892
+ dev: true
893
+
894
+ /@typescript-eslint/tsconfig-utils@8.57.1(typescript@5.9.3):
895
+ resolution: {integrity: sha512-0lgOZB8cl19fHO4eI46YUx2EceQqhgkPSuCGLlGi79L2jwYY1cxeYc1Nae8Aw1xjgW3PKVDLlr3YJ6Bxx8HkWg==}
896
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
897
+ peerDependencies:
898
+ typescript: '>=4.8.4 <6.0.0'
899
+ dependencies:
900
+ typescript: 5.9.3
901
+ dev: true
902
+
903
+ /@typescript-eslint/type-utils@8.57.1(eslint@9.39.4)(typescript@5.9.3):
904
+ resolution: {integrity: sha512-+Bwwm0ScukFdyoJsh2u6pp4S9ktegF98pYUU0hkphOOqdMB+1sNQhIz8y5E9+4pOioZijrkfNO/HUJVAFFfPKA==}
905
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
906
+ peerDependencies:
907
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
908
+ typescript: '>=4.8.4 <6.0.0'
909
+ dependencies:
910
+ '@typescript-eslint/types': 8.57.1
911
+ '@typescript-eslint/typescript-estree': 8.57.1(typescript@5.9.3)
912
+ '@typescript-eslint/utils': 8.57.1(eslint@9.39.4)(typescript@5.9.3)
913
+ debug: 4.4.3
914
+ eslint: 9.39.4
915
+ ts-api-utils: 2.4.0(typescript@5.9.3)
916
+ typescript: 5.9.3
917
+ transitivePeerDependencies:
918
+ - supports-color
919
+ dev: true
920
+
921
+ /@typescript-eslint/types@8.57.1:
922
+ resolution: {integrity: sha512-S29BOBPJSFUiblEl6RzPPjJt6w25A6XsBqRVDt53tA/tlL8q7ceQNZHTjPeONt/3S7KRI4quk+yP9jK2WjBiPQ==}
923
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
924
+ dev: true
925
+
926
+ /@typescript-eslint/typescript-estree@8.57.1(typescript@5.9.3):
927
+ resolution: {integrity: sha512-ybe2hS9G6pXpqGtPli9Gx9quNV0TWLOmh58ADlmZe9DguLq0tiAKVjirSbtM1szG6+QH6rVXyU6GTLQbWnMY+g==}
928
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
929
+ peerDependencies:
930
+ typescript: '>=4.8.4 <6.0.0'
931
+ dependencies:
932
+ '@typescript-eslint/project-service': 8.57.1(typescript@5.9.3)
933
+ '@typescript-eslint/tsconfig-utils': 8.57.1(typescript@5.9.3)
934
+ '@typescript-eslint/types': 8.57.1
935
+ '@typescript-eslint/visitor-keys': 8.57.1
936
+ debug: 4.4.3
937
+ minimatch: 10.2.4
938
+ semver: 7.7.4
939
+ tinyglobby: 0.2.15
940
+ ts-api-utils: 2.4.0(typescript@5.9.3)
941
+ typescript: 5.9.3
942
+ transitivePeerDependencies:
943
+ - supports-color
944
+ dev: true
945
+
946
+ /@typescript-eslint/utils@8.57.1(eslint@9.39.4)(typescript@5.9.3):
947
+ resolution: {integrity: sha512-XUNSJ/lEVFttPMMoDVA2r2bwrl8/oPx8cURtczkSEswY5T3AeLmCy+EKWQNdL4u0MmAHOjcWrqJp2cdvgjn8dQ==}
948
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
949
+ peerDependencies:
950
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
951
+ typescript: '>=4.8.4 <6.0.0'
952
+ dependencies:
953
+ '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.4)
954
+ '@typescript-eslint/scope-manager': 8.57.1
955
+ '@typescript-eslint/types': 8.57.1
956
+ '@typescript-eslint/typescript-estree': 8.57.1(typescript@5.9.3)
957
+ eslint: 9.39.4
958
+ typescript: 5.9.3
959
+ transitivePeerDependencies:
960
+ - supports-color
961
+ dev: true
962
+
963
+ /@typescript-eslint/visitor-keys@8.57.1:
964
+ resolution: {integrity: sha512-YWnmJkXbofiz9KbnbbwuA2rpGkFPLbAIetcCNO6mJ8gdhdZ/v7WDXsoGFAJuM6ikUFKTlSQnjWnVO4ux+UzS6A==}
965
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
966
+ dependencies:
967
+ '@typescript-eslint/types': 8.57.1
968
+ eslint-visitor-keys: 5.0.1
969
+ dev: true
970
+
971
+ /@vitejs/plugin-react@6.0.1(vite@8.0.0):
972
+ resolution: {integrity: sha512-l9X/E3cDb+xY3SWzlG1MOGt2usfEHGMNIaegaUGFsLkb3RCn/k8/TOXBcab+OndDI4TBtktT8/9BwwW8Vi9KUQ==}
973
+ engines: {node: ^20.19.0 || >=22.12.0}
974
+ peerDependencies:
975
+ '@rolldown/plugin-babel': ^0.1.7 || ^0.2.0
976
+ babel-plugin-react-compiler: ^1.0.0
977
+ vite: ^8.0.0
978
+ peerDependenciesMeta:
979
+ '@rolldown/plugin-babel':
980
+ optional: true
981
+ babel-plugin-react-compiler:
982
+ optional: true
983
+ dependencies:
984
+ '@rolldown/pluginutils': 1.0.0-rc.7
985
+ vite: 8.0.0(@types/node@24.12.0)
986
+ dev: true
987
+
988
+ /acorn-jsx@5.3.2(acorn@8.16.0):
989
+ resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
990
+ peerDependencies:
991
+ acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
992
+ dependencies:
993
+ acorn: 8.16.0
994
+ dev: true
995
+
996
+ /acorn@8.16.0:
997
+ resolution: {integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==}
998
+ engines: {node: '>=0.4.0'}
999
+ hasBin: true
1000
+ dev: true
1001
+
1002
+ /ajv@6.14.0:
1003
+ resolution: {integrity: sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw==}
1004
+ dependencies:
1005
+ fast-deep-equal: 3.1.3
1006
+ fast-json-stable-stringify: 2.1.0
1007
+ json-schema-traverse: 0.4.1
1008
+ uri-js: 4.4.1
1009
+ dev: true
1010
+
1011
+ /ansi-styles@4.3.0:
1012
+ resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
1013
+ engines: {node: '>=8'}
1014
+ dependencies:
1015
+ color-convert: 2.0.1
1016
+ dev: true
1017
+
1018
+ /argparse@2.0.1:
1019
+ resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
1020
+ dev: true
1021
+
1022
+ /autoprefixer@10.4.27(postcss@8.5.8):
1023
+ resolution: {integrity: sha512-NP9APE+tO+LuJGn7/9+cohklunJsXWiaWEfV3si4Gi/XHDwVNgkwr1J3RQYFIvPy76GmJ9/bW8vyoU1LcxwKHA==}
1024
+ engines: {node: ^10 || ^12 || >=14}
1025
+ hasBin: true
1026
+ peerDependencies:
1027
+ postcss: ^8.1.0
1028
+ dependencies:
1029
+ browserslist: 4.28.1
1030
+ caniuse-lite: 1.0.30001780
1031
+ fraction.js: 5.3.4
1032
+ picocolors: 1.1.1
1033
+ postcss: 8.5.8
1034
+ postcss-value-parser: 4.2.0
1035
+ dev: true
1036
+
1037
+ /balanced-match@1.0.2:
1038
+ resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
1039
+ dev: true
1040
+
1041
+ /balanced-match@4.0.4:
1042
+ resolution: {integrity: sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==}
1043
+ engines: {node: 18 || 20 || >=22}
1044
+ dev: true
1045
+
1046
+ /baseline-browser-mapping@2.10.8:
1047
+ resolution: {integrity: sha512-PCLz/LXGBsNTErbtB6i5u4eLpHeMfi93aUv5duMmj6caNu6IphS4q6UevDnL36sZQv9lrP11dbPKGMaXPwMKfQ==}
1048
+ engines: {node: '>=6.0.0'}
1049
+ hasBin: true
1050
+ dev: true
1051
+
1052
+ /brace-expansion@1.1.12:
1053
+ resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==}
1054
+ dependencies:
1055
+ balanced-match: 1.0.2
1056
+ concat-map: 0.0.1
1057
+ dev: true
1058
+
1059
+ /brace-expansion@5.0.4:
1060
+ resolution: {integrity: sha512-h+DEnpVvxmfVefa4jFbCf5HdH5YMDXRsmKflpf1pILZWRFlTbJpxeU55nJl4Smt5HQaGzg1o6RHFPJaOqnmBDg==}
1061
+ engines: {node: 18 || 20 || >=22}
1062
+ dependencies:
1063
+ balanced-match: 4.0.4
1064
+ dev: true
1065
+
1066
+ /browserslist@4.28.1:
1067
+ resolution: {integrity: sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==}
1068
+ engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
1069
+ hasBin: true
1070
+ dependencies:
1071
+ baseline-browser-mapping: 2.10.8
1072
+ caniuse-lite: 1.0.30001780
1073
+ electron-to-chromium: 1.5.321
1074
+ node-releases: 2.0.36
1075
+ update-browserslist-db: 1.2.3(browserslist@4.28.1)
1076
+ dev: true
1077
+
1078
+ /callsites@3.1.0:
1079
+ resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
1080
+ engines: {node: '>=6'}
1081
+ dev: true
1082
+
1083
+ /caniuse-lite@1.0.30001780:
1084
+ resolution: {integrity: sha512-llngX0E7nQci5BPJDqoZSbuZ5Bcs9F5db7EtgfwBerX9XGtkkiO4NwfDDIRzHTTwcYC8vC7bmeUEPGrKlR/TkQ==}
1085
+ dev: true
1086
+
1087
+ /chalk@4.1.2:
1088
+ resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
1089
+ engines: {node: '>=10'}
1090
+ dependencies:
1091
+ ansi-styles: 4.3.0
1092
+ supports-color: 7.2.0
1093
+ dev: true
1094
+
1095
+ /clsx@2.1.1:
1096
+ resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
1097
+ engines: {node: '>=6'}
1098
+ dev: false
1099
+
1100
+ /color-convert@2.0.1:
1101
+ resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
1102
+ engines: {node: '>=7.0.0'}
1103
+ dependencies:
1104
+ color-name: 1.1.4
1105
+ dev: true
1106
+
1107
+ /color-name@1.1.4:
1108
+ resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
1109
+ dev: true
1110
+
1111
+ /concat-map@0.0.1:
1112
+ resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
1113
+ dev: true
1114
+
1115
+ /convert-source-map@2.0.0:
1116
+ resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
1117
+ dev: true
1118
+
1119
+ /cookie@1.1.1:
1120
+ resolution: {integrity: sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==}
1121
+ engines: {node: '>=18'}
1122
+ dev: false
1123
+
1124
+ /cross-spawn@7.0.6:
1125
+ resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
1126
+ engines: {node: '>= 8'}
1127
+ dependencies:
1128
+ path-key: 3.1.1
1129
+ shebang-command: 2.0.0
1130
+ which: 2.0.2
1131
+ dev: true
1132
+
1133
+ /csstype@3.2.3:
1134
+ resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
1135
+
1136
+ /d3-array@3.2.4:
1137
+ resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==}
1138
+ engines: {node: '>=12'}
1139
+ dependencies:
1140
+ internmap: 2.0.3
1141
+ dev: false
1142
+
1143
+ /d3-color@3.1.0:
1144
+ resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==}
1145
+ engines: {node: '>=12'}
1146
+ dev: false
1147
+
1148
+ /d3-ease@3.0.1:
1149
+ resolution: {integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==}
1150
+ engines: {node: '>=12'}
1151
+ dev: false
1152
+
1153
+ /d3-format@3.1.2:
1154
+ resolution: {integrity: sha512-AJDdYOdnyRDV5b6ArilzCPPwc1ejkHcoyFarqlPqT7zRYjhavcT3uSrqcMvsgh2CgoPbK3RCwyHaVyxYcP2Arg==}
1155
+ engines: {node: '>=12'}
1156
+ dev: false
1157
+
1158
+ /d3-interpolate@3.0.1:
1159
+ resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==}
1160
+ engines: {node: '>=12'}
1161
+ dependencies:
1162
+ d3-color: 3.1.0
1163
+ dev: false
1164
+
1165
+ /d3-path@3.1.0:
1166
+ resolution: {integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==}
1167
+ engines: {node: '>=12'}
1168
+ dev: false
1169
+
1170
+ /d3-scale@4.0.2:
1171
+ resolution: {integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==}
1172
+ engines: {node: '>=12'}
1173
+ dependencies:
1174
+ d3-array: 3.2.4
1175
+ d3-format: 3.1.2
1176
+ d3-interpolate: 3.0.1
1177
+ d3-time: 3.1.0
1178
+ d3-time-format: 4.1.0
1179
+ dev: false
1180
+
1181
+ /d3-shape@3.2.0:
1182
+ resolution: {integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==}
1183
+ engines: {node: '>=12'}
1184
+ dependencies:
1185
+ d3-path: 3.1.0
1186
+ dev: false
1187
+
1188
+ /d3-time-format@4.1.0:
1189
+ resolution: {integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==}
1190
+ engines: {node: '>=12'}
1191
+ dependencies:
1192
+ d3-time: 3.1.0
1193
+ dev: false
1194
+
1195
+ /d3-time@3.1.0:
1196
+ resolution: {integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==}
1197
+ engines: {node: '>=12'}
1198
+ dependencies:
1199
+ d3-array: 3.2.4
1200
+ dev: false
1201
+
1202
+ /d3-timer@3.0.1:
1203
+ resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==}
1204
+ engines: {node: '>=12'}
1205
+ dev: false
1206
+
1207
+ /debug@4.4.3:
1208
+ resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
1209
+ engines: {node: '>=6.0'}
1210
+ peerDependencies:
1211
+ supports-color: '*'
1212
+ peerDependenciesMeta:
1213
+ supports-color:
1214
+ optional: true
1215
+ dependencies:
1216
+ ms: 2.1.3
1217
+ dev: true
1218
+
1219
+ /decimal.js-light@2.5.1:
1220
+ resolution: {integrity: sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==}
1221
+ dev: false
1222
+
1223
+ /deep-is@0.1.4:
1224
+ resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
1225
+ dev: true
1226
+
1227
+ /detect-libc@2.1.2:
1228
+ resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
1229
+ engines: {node: '>=8'}
1230
+ dev: true
1231
+
1232
+ /electron-to-chromium@1.5.321:
1233
+ resolution: {integrity: sha512-L2C7Q279W2D/J4PLZLk7sebOILDSWos7bMsMNN06rK482umHUrh/3lM8G7IlHFOYip2oAg5nha1rCMxr/rs6ZQ==}
1234
+ dev: true
1235
+
1236
+ /enhanced-resolve@5.20.1:
1237
+ resolution: {integrity: sha512-Qohcme7V1inbAfvjItgw0EaxVX5q2rdVEZHRBrEQdRZTssLDGsL8Lwrznl8oQ/6kuTJONLaDcGjkNP247XEhcA==}
1238
+ engines: {node: '>=10.13.0'}
1239
+ dependencies:
1240
+ graceful-fs: 4.2.11
1241
+ tapable: 2.3.0
1242
+ dev: true
1243
+
1244
+ /es-toolkit@1.45.1:
1245
+ resolution: {integrity: sha512-/jhoOj/Fx+A+IIyDNOvO3TItGmlMKhtX8ISAHKE90c4b/k1tqaqEZ+uUqfpU8DMnW5cgNJv606zS55jGvza0Xw==}
1246
+ dev: false
1247
+
1248
+ /escalade@3.2.0:
1249
+ resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
1250
+ engines: {node: '>=6'}
1251
+ dev: true
1252
+
1253
+ /escape-string-regexp@4.0.0:
1254
+ resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
1255
+ engines: {node: '>=10'}
1256
+ dev: true
1257
+
1258
+ /eslint-plugin-react-hooks@7.0.1(eslint@9.39.4):
1259
+ resolution: {integrity: sha512-O0d0m04evaNzEPoSW+59Mezf8Qt0InfgGIBJnpC0h3NH/WjUAR7BIKUfysC6todmtiZ/A0oUVS8Gce0WhBrHsA==}
1260
+ engines: {node: '>=18'}
1261
+ peerDependencies:
1262
+ eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0
1263
+ dependencies:
1264
+ '@babel/core': 7.29.0
1265
+ '@babel/parser': 7.29.2
1266
+ eslint: 9.39.4
1267
+ hermes-parser: 0.25.1
1268
+ zod: 4.3.6
1269
+ zod-validation-error: 4.0.2(zod@4.3.6)
1270
+ transitivePeerDependencies:
1271
+ - supports-color
1272
+ dev: true
1273
+
1274
+ /eslint-plugin-react-refresh@0.5.2(eslint@9.39.4):
1275
+ resolution: {integrity: sha512-hmgTH57GfzoTFjVN0yBwTggnsVUF2tcqi7RJZHqi9lIezSs4eFyAMktA68YD4r5kNw1mxyY4dmkyoFDb3FIqrA==}
1276
+ peerDependencies:
1277
+ eslint: ^9 || ^10
1278
+ dependencies:
1279
+ eslint: 9.39.4
1280
+ dev: true
1281
+
1282
+ /eslint-scope@8.4.0:
1283
+ resolution: {integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==}
1284
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1285
+ dependencies:
1286
+ esrecurse: 4.3.0
1287
+ estraverse: 5.3.0
1288
+ dev: true
1289
+
1290
+ /eslint-visitor-keys@3.4.3:
1291
+ resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
1292
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1293
+ dev: true
1294
+
1295
+ /eslint-visitor-keys@4.2.1:
1296
+ resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==}
1297
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1298
+ dev: true
1299
+
1300
+ /eslint-visitor-keys@5.0.1:
1301
+ resolution: {integrity: sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==}
1302
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
1303
+ dev: true
1304
+
1305
+ /eslint@9.39.4:
1306
+ resolution: {integrity: sha512-XoMjdBOwe/esVgEvLmNsD3IRHkm7fbKIUGvrleloJXUZgDHig2IPWNniv+GwjyJXzuNqVjlr5+4yVUZjycJwfQ==}
1307
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1308
+ hasBin: true
1309
+ peerDependencies:
1310
+ jiti: '*'
1311
+ peerDependenciesMeta:
1312
+ jiti:
1313
+ optional: true
1314
+ dependencies:
1315
+ '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.4)
1316
+ '@eslint-community/regexpp': 4.12.2
1317
+ '@eslint/config-array': 0.21.2
1318
+ '@eslint/config-helpers': 0.4.2
1319
+ '@eslint/core': 0.17.0
1320
+ '@eslint/eslintrc': 3.3.5
1321
+ '@eslint/js': 9.39.4
1322
+ '@eslint/plugin-kit': 0.4.1
1323
+ '@humanfs/node': 0.16.7
1324
+ '@humanwhocodes/module-importer': 1.0.1
1325
+ '@humanwhocodes/retry': 0.4.3
1326
+ '@types/estree': 1.0.8
1327
+ ajv: 6.14.0
1328
+ chalk: 4.1.2
1329
+ cross-spawn: 7.0.6
1330
+ debug: 4.4.3
1331
+ escape-string-regexp: 4.0.0
1332
+ eslint-scope: 8.4.0
1333
+ eslint-visitor-keys: 4.2.1
1334
+ espree: 10.4.0
1335
+ esquery: 1.7.0
1336
+ esutils: 2.0.3
1337
+ fast-deep-equal: 3.1.3
1338
+ file-entry-cache: 8.0.0
1339
+ find-up: 5.0.0
1340
+ glob-parent: 6.0.2
1341
+ ignore: 5.3.2
1342
+ imurmurhash: 0.1.4
1343
+ is-glob: 4.0.3
1344
+ json-stable-stringify-without-jsonify: 1.0.1
1345
+ lodash.merge: 4.6.2
1346
+ minimatch: 3.1.5
1347
+ natural-compare: 1.4.0
1348
+ optionator: 0.9.4
1349
+ transitivePeerDependencies:
1350
+ - supports-color
1351
+ dev: true
1352
+
1353
+ /espree@10.4.0:
1354
+ resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==}
1355
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1356
+ dependencies:
1357
+ acorn: 8.16.0
1358
+ acorn-jsx: 5.3.2(acorn@8.16.0)
1359
+ eslint-visitor-keys: 4.2.1
1360
+ dev: true
1361
+
1362
+ /esquery@1.7.0:
1363
+ resolution: {integrity: sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==}
1364
+ engines: {node: '>=0.10'}
1365
+ dependencies:
1366
+ estraverse: 5.3.0
1367
+ dev: true
1368
+
1369
+ /esrecurse@4.3.0:
1370
+ resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
1371
+ engines: {node: '>=4.0'}
1372
+ dependencies:
1373
+ estraverse: 5.3.0
1374
+ dev: true
1375
+
1376
+ /estraverse@5.3.0:
1377
+ resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
1378
+ engines: {node: '>=4.0'}
1379
+ dev: true
1380
+
1381
+ /esutils@2.0.3:
1382
+ resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
1383
+ engines: {node: '>=0.10.0'}
1384
+ dev: true
1385
+
1386
+ /eventemitter3@5.0.4:
1387
+ resolution: {integrity: sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==}
1388
+ dev: false
1389
+
1390
+ /fast-deep-equal@3.1.3:
1391
+ resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
1392
+ dev: true
1393
+
1394
+ /fast-json-stable-stringify@2.1.0:
1395
+ resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
1396
+ dev: true
1397
+
1398
+ /fast-levenshtein@2.0.6:
1399
+ resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
1400
+ dev: true
1401
+
1402
+ /fdir@6.5.0(picomatch@4.0.3):
1403
+ resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
1404
+ engines: {node: '>=12.0.0'}
1405
+ peerDependencies:
1406
+ picomatch: ^3 || ^4
1407
+ peerDependenciesMeta:
1408
+ picomatch:
1409
+ optional: true
1410
+ dependencies:
1411
+ picomatch: 4.0.3
1412
+ dev: true
1413
+
1414
+ /file-entry-cache@8.0.0:
1415
+ resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
1416
+ engines: {node: '>=16.0.0'}
1417
+ dependencies:
1418
+ flat-cache: 4.0.1
1419
+ dev: true
1420
+
1421
+ /find-up@5.0.0:
1422
+ resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
1423
+ engines: {node: '>=10'}
1424
+ dependencies:
1425
+ locate-path: 6.0.0
1426
+ path-exists: 4.0.0
1427
+ dev: true
1428
+
1429
+ /flat-cache@4.0.1:
1430
+ resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
1431
+ engines: {node: '>=16'}
1432
+ dependencies:
1433
+ flatted: 3.4.2
1434
+ keyv: 4.5.4
1435
+ dev: true
1436
+
1437
+ /flatted@3.4.2:
1438
+ resolution: {integrity: sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==}
1439
+ dev: true
1440
+
1441
+ /fraction.js@5.3.4:
1442
+ resolution: {integrity: sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==}
1443
+ dev: true
1444
+
1445
+ /framer-motion@12.38.0(react-dom@19.2.4)(react@19.2.4):
1446
+ resolution: {integrity: sha512-rFYkY/pigbcswl1XQSb7q424kSTQ8q6eAC+YUsSKooHQYuLdzdHjrt6uxUC+PRAO++q5IS7+TamgIw1AphxR+g==}
1447
+ peerDependencies:
1448
+ '@emotion/is-prop-valid': '*'
1449
+ react: ^18.0.0 || ^19.0.0
1450
+ react-dom: ^18.0.0 || ^19.0.0
1451
+ peerDependenciesMeta:
1452
+ '@emotion/is-prop-valid':
1453
+ optional: true
1454
+ react:
1455
+ optional: true
1456
+ react-dom:
1457
+ optional: true
1458
+ dependencies:
1459
+ motion-dom: 12.38.0
1460
+ motion-utils: 12.36.0
1461
+ react: 19.2.4
1462
+ react-dom: 19.2.4(react@19.2.4)
1463
+ tslib: 2.8.1
1464
+ dev: false
1465
+
1466
+ /fsevents@2.3.3:
1467
+ resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
1468
+ engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
1469
+ os: [darwin]
1470
+ requiresBuild: true
1471
+ dev: true
1472
+ optional: true
1473
+
1474
+ /gensync@1.0.0-beta.2:
1475
+ resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
1476
+ engines: {node: '>=6.9.0'}
1477
+ dev: true
1478
+
1479
+ /glob-parent@6.0.2:
1480
+ resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
1481
+ engines: {node: '>=10.13.0'}
1482
+ dependencies:
1483
+ is-glob: 4.0.3
1484
+ dev: true
1485
+
1486
+ /globals@14.0.0:
1487
+ resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
1488
+ engines: {node: '>=18'}
1489
+ dev: true
1490
+
1491
+ /globals@17.4.0:
1492
+ resolution: {integrity: sha512-hjrNztw/VajQwOLsMNT1cbJiH2muO3OROCHnbehc8eY5JyD2gqz4AcMHPqgaOR59DjgUjYAYLeH699g/eWi2jw==}
1493
+ engines: {node: '>=18'}
1494
+ dev: true
1495
+
1496
+ /graceful-fs@4.2.11:
1497
+ resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
1498
+ dev: true
1499
+
1500
+ /has-flag@4.0.0:
1501
+ resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
1502
+ engines: {node: '>=8'}
1503
+ dev: true
1504
+
1505
+ /hermes-estree@0.25.1:
1506
+ resolution: {integrity: sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==}
1507
+ dev: true
1508
+
1509
+ /hermes-parser@0.25.1:
1510
+ resolution: {integrity: sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==}
1511
+ dependencies:
1512
+ hermes-estree: 0.25.1
1513
+ dev: true
1514
+
1515
+ /ignore@5.3.2:
1516
+ resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
1517
+ engines: {node: '>= 4'}
1518
+ dev: true
1519
+
1520
+ /ignore@7.0.5:
1521
+ resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==}
1522
+ engines: {node: '>= 4'}
1523
+ dev: true
1524
+
1525
+ /immer@10.2.0:
1526
+ resolution: {integrity: sha512-d/+XTN3zfODyjr89gM3mPq1WNX2B8pYsu7eORitdwyA2sBubnTl3laYlBk4sXY5FUa5qTZGBDPJICVbvqzjlbw==}
1527
+ dev: false
1528
+
1529
+ /immer@11.1.4:
1530
+ resolution: {integrity: sha512-XREFCPo6ksxVzP4E0ekD5aMdf8WMwmdNaz6vuvxgI40UaEiu6q3p8X52aU6GdyvLY3XXX/8R7JOTXStz/nBbRw==}
1531
+ dev: false
1532
+
1533
+ /import-fresh@3.3.1:
1534
+ resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
1535
+ engines: {node: '>=6'}
1536
+ dependencies:
1537
+ parent-module: 1.0.1
1538
+ resolve-from: 4.0.0
1539
+ dev: true
1540
+
1541
+ /imurmurhash@0.1.4:
1542
+ resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
1543
+ engines: {node: '>=0.8.19'}
1544
+ dev: true
1545
+
1546
+ /internmap@2.0.3:
1547
+ resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==}
1548
+ engines: {node: '>=12'}
1549
+ dev: false
1550
+
1551
+ /is-extglob@2.1.1:
1552
+ resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
1553
+ engines: {node: '>=0.10.0'}
1554
+ dev: true
1555
+
1556
+ /is-glob@4.0.3:
1557
+ resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
1558
+ engines: {node: '>=0.10.0'}
1559
+ dependencies:
1560
+ is-extglob: 2.1.1
1561
+ dev: true
1562
+
1563
+ /isexe@2.0.0:
1564
+ resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
1565
+ dev: true
1566
+
1567
+ /jiti@2.6.1:
1568
+ resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==}
1569
+ hasBin: true
1570
+ dev: true
1571
+
1572
+ /js-tokens@4.0.0:
1573
+ resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
1574
+ dev: true
1575
+
1576
+ /js-yaml@4.1.1:
1577
+ resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==}
1578
+ hasBin: true
1579
+ dependencies:
1580
+ argparse: 2.0.1
1581
+ dev: true
1582
+
1583
+ /jsesc@3.1.0:
1584
+ resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
1585
+ engines: {node: '>=6'}
1586
+ hasBin: true
1587
+ dev: true
1588
+
1589
+ /json-buffer@3.0.1:
1590
+ resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
1591
+ dev: true
1592
+
1593
+ /json-schema-traverse@0.4.1:
1594
+ resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
1595
+ dev: true
1596
+
1597
+ /json-stable-stringify-without-jsonify@1.0.1:
1598
+ resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
1599
+ dev: true
1600
+
1601
+ /json5@2.2.3:
1602
+ resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
1603
+ engines: {node: '>=6'}
1604
+ hasBin: true
1605
+ dev: true
1606
+
1607
+ /keyv@4.5.4:
1608
+ resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
1609
+ dependencies:
1610
+ json-buffer: 3.0.1
1611
+ dev: true
1612
+
1613
+ /levn@0.4.1:
1614
+ resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
1615
+ engines: {node: '>= 0.8.0'}
1616
+ dependencies:
1617
+ prelude-ls: 1.2.1
1618
+ type-check: 0.4.0
1619
+ dev: true
1620
+
1621
+ /lightningcss-android-arm64@1.31.1:
1622
+ resolution: {integrity: sha512-HXJF3x8w9nQ4jbXRiNppBCqeZPIAfUo8zE/kOEGbW5NZvGc/K7nMxbhIr+YlFlHW5mpbg/YFPdbnCh1wAXCKFg==}
1623
+ engines: {node: '>= 12.0.0'}
1624
+ cpu: [arm64]
1625
+ os: [android]
1626
+ requiresBuild: true
1627
+ dev: true
1628
+ optional: true
1629
+
1630
+ /lightningcss-android-arm64@1.32.0:
1631
+ resolution: {integrity: sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==}
1632
+ engines: {node: '>= 12.0.0'}
1633
+ cpu: [arm64]
1634
+ os: [android]
1635
+ requiresBuild: true
1636
+ dev: true
1637
+ optional: true
1638
+
1639
+ /lightningcss-darwin-arm64@1.31.1:
1640
+ resolution: {integrity: sha512-02uTEqf3vIfNMq3h/z2cJfcOXnQ0GRwQrkmPafhueLb2h7mqEidiCzkE4gBMEH65abHRiQvhdcQ+aP0D0g67sg==}
1641
+ engines: {node: '>= 12.0.0'}
1642
+ cpu: [arm64]
1643
+ os: [darwin]
1644
+ requiresBuild: true
1645
+ dev: true
1646
+ optional: true
1647
+
1648
+ /lightningcss-darwin-arm64@1.32.0:
1649
+ resolution: {integrity: sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==}
1650
+ engines: {node: '>= 12.0.0'}
1651
+ cpu: [arm64]
1652
+ os: [darwin]
1653
+ requiresBuild: true
1654
+ dev: true
1655
+ optional: true
1656
+
1657
+ /lightningcss-darwin-x64@1.31.1:
1658
+ resolution: {integrity: sha512-1ObhyoCY+tGxtsz1lSx5NXCj3nirk0Y0kB/g8B8DT+sSx4G9djitg9ejFnjb3gJNWo7qXH4DIy2SUHvpoFwfTA==}
1659
+ engines: {node: '>= 12.0.0'}
1660
+ cpu: [x64]
1661
+ os: [darwin]
1662
+ requiresBuild: true
1663
+ dev: true
1664
+ optional: true
1665
+
1666
+ /lightningcss-darwin-x64@1.32.0:
1667
+ resolution: {integrity: sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==}
1668
+ engines: {node: '>= 12.0.0'}
1669
+ cpu: [x64]
1670
+ os: [darwin]
1671
+ requiresBuild: true
1672
+ dev: true
1673
+ optional: true
1674
+
1675
+ /lightningcss-freebsd-x64@1.31.1:
1676
+ resolution: {integrity: sha512-1RINmQKAItO6ISxYgPwszQE1BrsVU5aB45ho6O42mu96UiZBxEXsuQ7cJW4zs4CEodPUioj/QrXW1r9pLUM74A==}
1677
+ engines: {node: '>= 12.0.0'}
1678
+ cpu: [x64]
1679
+ os: [freebsd]
1680
+ requiresBuild: true
1681
+ dev: true
1682
+ optional: true
1683
+
1684
+ /lightningcss-freebsd-x64@1.32.0:
1685
+ resolution: {integrity: sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==}
1686
+ engines: {node: '>= 12.0.0'}
1687
+ cpu: [x64]
1688
+ os: [freebsd]
1689
+ requiresBuild: true
1690
+ dev: true
1691
+ optional: true
1692
+
1693
+ /lightningcss-linux-arm-gnueabihf@1.31.1:
1694
+ resolution: {integrity: sha512-OOCm2//MZJ87CdDK62rZIu+aw9gBv4azMJuA8/KB74wmfS3lnC4yoPHm0uXZ/dvNNHmnZnB8XLAZzObeG0nS1g==}
1695
+ engines: {node: '>= 12.0.0'}
1696
+ cpu: [arm]
1697
+ os: [linux]
1698
+ requiresBuild: true
1699
+ dev: true
1700
+ optional: true
1701
+
1702
+ /lightningcss-linux-arm-gnueabihf@1.32.0:
1703
+ resolution: {integrity: sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==}
1704
+ engines: {node: '>= 12.0.0'}
1705
+ cpu: [arm]
1706
+ os: [linux]
1707
+ requiresBuild: true
1708
+ dev: true
1709
+ optional: true
1710
+
1711
+ /lightningcss-linux-arm64-gnu@1.31.1:
1712
+ resolution: {integrity: sha512-WKyLWztD71rTnou4xAD5kQT+982wvca7E6QoLpoawZ1gP9JM0GJj4Tp5jMUh9B3AitHbRZ2/H3W5xQmdEOUlLg==}
1713
+ engines: {node: '>= 12.0.0'}
1714
+ cpu: [arm64]
1715
+ os: [linux]
1716
+ libc: [glibc]
1717
+ requiresBuild: true
1718
+ dev: true
1719
+ optional: true
1720
+
1721
+ /lightningcss-linux-arm64-gnu@1.32.0:
1722
+ resolution: {integrity: sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==}
1723
+ engines: {node: '>= 12.0.0'}
1724
+ cpu: [arm64]
1725
+ os: [linux]
1726
+ libc: [glibc]
1727
+ requiresBuild: true
1728
+ dev: true
1729
+ optional: true
1730
+
1731
+ /lightningcss-linux-arm64-musl@1.31.1:
1732
+ resolution: {integrity: sha512-mVZ7Pg2zIbe3XlNbZJdjs86YViQFoJSpc41CbVmKBPiGmC4YrfeOyz65ms2qpAobVd7WQsbW4PdsSJEMymyIMg==}
1733
+ engines: {node: '>= 12.0.0'}
1734
+ cpu: [arm64]
1735
+ os: [linux]
1736
+ libc: [musl]
1737
+ requiresBuild: true
1738
+ dev: true
1739
+ optional: true
1740
+
1741
+ /lightningcss-linux-arm64-musl@1.32.0:
1742
+ resolution: {integrity: sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==}
1743
+ engines: {node: '>= 12.0.0'}
1744
+ cpu: [arm64]
1745
+ os: [linux]
1746
+ libc: [musl]
1747
+ requiresBuild: true
1748
+ dev: true
1749
+ optional: true
1750
+
1751
+ /lightningcss-linux-x64-gnu@1.31.1:
1752
+ resolution: {integrity: sha512-xGlFWRMl+0KvUhgySdIaReQdB4FNudfUTARn7q0hh/V67PVGCs3ADFjw+6++kG1RNd0zdGRlEKa+T13/tQjPMA==}
1753
+ engines: {node: '>= 12.0.0'}
1754
+ cpu: [x64]
1755
+ os: [linux]
1756
+ libc: [glibc]
1757
+ requiresBuild: true
1758
+ dev: true
1759
+ optional: true
1760
+
1761
+ /lightningcss-linux-x64-gnu@1.32.0:
1762
+ resolution: {integrity: sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==}
1763
+ engines: {node: '>= 12.0.0'}
1764
+ cpu: [x64]
1765
+ os: [linux]
1766
+ libc: [glibc]
1767
+ requiresBuild: true
1768
+ dev: true
1769
+ optional: true
1770
+
1771
+ /lightningcss-linux-x64-musl@1.31.1:
1772
+ resolution: {integrity: sha512-eowF8PrKHw9LpoZii5tdZwnBcYDxRw2rRCyvAXLi34iyeYfqCQNA9rmUM0ce62NlPhCvof1+9ivRaTY6pSKDaA==}
1773
+ engines: {node: '>= 12.0.0'}
1774
+ cpu: [x64]
1775
+ os: [linux]
1776
+ libc: [musl]
1777
+ requiresBuild: true
1778
+ dev: true
1779
+ optional: true
1780
+
1781
+ /lightningcss-linux-x64-musl@1.32.0:
1782
+ resolution: {integrity: sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==}
1783
+ engines: {node: '>= 12.0.0'}
1784
+ cpu: [x64]
1785
+ os: [linux]
1786
+ libc: [musl]
1787
+ requiresBuild: true
1788
+ dev: true
1789
+ optional: true
1790
+
1791
+ /lightningcss-win32-arm64-msvc@1.31.1:
1792
+ resolution: {integrity: sha512-aJReEbSEQzx1uBlQizAOBSjcmr9dCdL3XuC/6HLXAxmtErsj2ICo5yYggg1qOODQMtnjNQv2UHb9NpOuFtYe4w==}
1793
+ engines: {node: '>= 12.0.0'}
1794
+ cpu: [arm64]
1795
+ os: [win32]
1796
+ requiresBuild: true
1797
+ dev: true
1798
+ optional: true
1799
+
1800
+ /lightningcss-win32-arm64-msvc@1.32.0:
1801
+ resolution: {integrity: sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==}
1802
+ engines: {node: '>= 12.0.0'}
1803
+ cpu: [arm64]
1804
+ os: [win32]
1805
+ requiresBuild: true
1806
+ dev: true
1807
+ optional: true
1808
+
1809
+ /lightningcss-win32-x64-msvc@1.31.1:
1810
+ resolution: {integrity: sha512-I9aiFrbd7oYHwlnQDqr1Roz+fTz61oDDJX7n9tYF9FJymH1cIN1DtKw3iYt6b8WZgEjoNwVSncwF4wx/ZedMhw==}
1811
+ engines: {node: '>= 12.0.0'}
1812
+ cpu: [x64]
1813
+ os: [win32]
1814
+ requiresBuild: true
1815
+ dev: true
1816
+ optional: true
1817
+
1818
+ /lightningcss-win32-x64-msvc@1.32.0:
1819
+ resolution: {integrity: sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==}
1820
+ engines: {node: '>= 12.0.0'}
1821
+ cpu: [x64]
1822
+ os: [win32]
1823
+ requiresBuild: true
1824
+ dev: true
1825
+ optional: true
1826
+
1827
+ /lightningcss@1.31.1:
1828
+ resolution: {integrity: sha512-l51N2r93WmGUye3WuFoN5k10zyvrVs0qfKBhyC5ogUQ6Ew6JUSswh78mbSO+IU3nTWsyOArqPCcShdQSadghBQ==}
1829
+ engines: {node: '>= 12.0.0'}
1830
+ dependencies:
1831
+ detect-libc: 2.1.2
1832
+ optionalDependencies:
1833
+ lightningcss-android-arm64: 1.31.1
1834
+ lightningcss-darwin-arm64: 1.31.1
1835
+ lightningcss-darwin-x64: 1.31.1
1836
+ lightningcss-freebsd-x64: 1.31.1
1837
+ lightningcss-linux-arm-gnueabihf: 1.31.1
1838
+ lightningcss-linux-arm64-gnu: 1.31.1
1839
+ lightningcss-linux-arm64-musl: 1.31.1
1840
+ lightningcss-linux-x64-gnu: 1.31.1
1841
+ lightningcss-linux-x64-musl: 1.31.1
1842
+ lightningcss-win32-arm64-msvc: 1.31.1
1843
+ lightningcss-win32-x64-msvc: 1.31.1
1844
+ dev: true
1845
+
1846
+ /lightningcss@1.32.0:
1847
+ resolution: {integrity: sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==}
1848
+ engines: {node: '>= 12.0.0'}
1849
+ dependencies:
1850
+ detect-libc: 2.1.2
1851
+ optionalDependencies:
1852
+ lightningcss-android-arm64: 1.32.0
1853
+ lightningcss-darwin-arm64: 1.32.0
1854
+ lightningcss-darwin-x64: 1.32.0
1855
+ lightningcss-freebsd-x64: 1.32.0
1856
+ lightningcss-linux-arm-gnueabihf: 1.32.0
1857
+ lightningcss-linux-arm64-gnu: 1.32.0
1858
+ lightningcss-linux-arm64-musl: 1.32.0
1859
+ lightningcss-linux-x64-gnu: 1.32.0
1860
+ lightningcss-linux-x64-musl: 1.32.0
1861
+ lightningcss-win32-arm64-msvc: 1.32.0
1862
+ lightningcss-win32-x64-msvc: 1.32.0
1863
+ dev: true
1864
+
1865
+ /locate-path@6.0.0:
1866
+ resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
1867
+ engines: {node: '>=10'}
1868
+ dependencies:
1869
+ p-locate: 5.0.0
1870
+ dev: true
1871
+
1872
+ /lodash.merge@4.6.2:
1873
+ resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
1874
+ dev: true
1875
+
1876
+ /lru-cache@5.1.1:
1877
+ resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
1878
+ dependencies:
1879
+ yallist: 3.1.1
1880
+ dev: true
1881
+
1882
+ /lucide-react@0.577.0(react@19.2.4):
1883
+ resolution: {integrity: sha512-4LjoFv2eEPwYDPg/CUdBJQSDfPyzXCRrVW1X7jrx/trgxnxkHFjnVZINbzvzxjN70dxychOfg+FTYwBiS3pQ5A==}
1884
+ peerDependencies:
1885
+ react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0
1886
+ dependencies:
1887
+ react: 19.2.4
1888
+ dev: false
1889
+
1890
+ /magic-string@0.30.21:
1891
+ resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
1892
+ dependencies:
1893
+ '@jridgewell/sourcemap-codec': 1.5.5
1894
+ dev: true
1895
+
1896
+ /minimatch@10.2.4:
1897
+ resolution: {integrity: sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==}
1898
+ engines: {node: 18 || 20 || >=22}
1899
+ dependencies:
1900
+ brace-expansion: 5.0.4
1901
+ dev: true
1902
+
1903
+ /minimatch@3.1.5:
1904
+ resolution: {integrity: sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==}
1905
+ dependencies:
1906
+ brace-expansion: 1.1.12
1907
+ dev: true
1908
+
1909
+ /motion-dom@12.38.0:
1910
+ resolution: {integrity: sha512-pdkHLD8QYRp8VfiNLb8xIBJis1byQ9gPT3Jnh2jqfFtAsWUA3dEepDlsWe/xMpO8McV+VdpKVcp+E+TGJEtOoA==}
1911
+ dependencies:
1912
+ motion-utils: 12.36.0
1913
+ dev: false
1914
+
1915
+ /motion-utils@12.36.0:
1916
+ resolution: {integrity: sha512-eHWisygbiwVvf6PZ1vhaHCLamvkSbPIeAYxWUuL3a2PD/TROgE7FvfHWTIH4vMl798QLfMw15nRqIaRDXTlYRg==}
1917
+ dev: false
1918
+
1919
+ /ms@2.1.3:
1920
+ resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
1921
+ dev: true
1922
+
1923
+ /nanoid@3.3.11:
1924
+ resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
1925
+ engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
1926
+ hasBin: true
1927
+ dev: true
1928
+
1929
+ /natural-compare@1.4.0:
1930
+ resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
1931
+ dev: true
1932
+
1933
+ /node-releases@2.0.36:
1934
+ resolution: {integrity: sha512-TdC8FSgHz8Mwtw9g5L4gR/Sh9XhSP/0DEkQxfEFXOpiul5IiHgHan2VhYYb6agDSfp4KuvltmGApc8HMgUrIkA==}
1935
+ dev: true
1936
+
1937
+ /optionator@0.9.4:
1938
+ resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
1939
+ engines: {node: '>= 0.8.0'}
1940
+ dependencies:
1941
+ deep-is: 0.1.4
1942
+ fast-levenshtein: 2.0.6
1943
+ levn: 0.4.1
1944
+ prelude-ls: 1.2.1
1945
+ type-check: 0.4.0
1946
+ word-wrap: 1.2.5
1947
+ dev: true
1948
+
1949
+ /p-limit@3.1.0:
1950
+ resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
1951
+ engines: {node: '>=10'}
1952
+ dependencies:
1953
+ yocto-queue: 0.1.0
1954
+ dev: true
1955
+
1956
+ /p-locate@5.0.0:
1957
+ resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
1958
+ engines: {node: '>=10'}
1959
+ dependencies:
1960
+ p-limit: 3.1.0
1961
+ dev: true
1962
+
1963
+ /parent-module@1.0.1:
1964
+ resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
1965
+ engines: {node: '>=6'}
1966
+ dependencies:
1967
+ callsites: 3.1.0
1968
+ dev: true
1969
+
1970
+ /path-exists@4.0.0:
1971
+ resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
1972
+ engines: {node: '>=8'}
1973
+ dev: true
1974
+
1975
+ /path-key@3.1.1:
1976
+ resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
1977
+ engines: {node: '>=8'}
1978
+ dev: true
1979
+
1980
+ /picocolors@1.1.1:
1981
+ resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
1982
+ dev: true
1983
+
1984
+ /picomatch@4.0.3:
1985
+ resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
1986
+ engines: {node: '>=12'}
1987
+ dev: true
1988
+
1989
+ /postcss-value-parser@4.2.0:
1990
+ resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
1991
+ dev: true
1992
+
1993
+ /postcss@8.5.8:
1994
+ resolution: {integrity: sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==}
1995
+ engines: {node: ^10 || ^12 || >=14}
1996
+ dependencies:
1997
+ nanoid: 3.3.11
1998
+ picocolors: 1.1.1
1999
+ source-map-js: 1.2.1
2000
+ dev: true
2001
+
2002
+ /prelude-ls@1.2.1:
2003
+ resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
2004
+ engines: {node: '>= 0.8.0'}
2005
+ dev: true
2006
+
2007
+ /punycode@2.3.1:
2008
+ resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
2009
+ engines: {node: '>=6'}
2010
+ dev: true
2011
+
2012
+ /react-dom@19.2.4(react@19.2.4):
2013
+ resolution: {integrity: sha512-AXJdLo8kgMbimY95O2aKQqsz2iWi9jMgKJhRBAxECE4IFxfcazB2LmzloIoibJI3C12IlY20+KFaLv+71bUJeQ==}
2014
+ peerDependencies:
2015
+ react: ^19.2.4
2016
+ dependencies:
2017
+ react: 19.2.4
2018
+ scheduler: 0.27.0
2019
+ dev: false
2020
+
2021
+ /react-is@19.2.4:
2022
+ resolution: {integrity: sha512-W+EWGn2v0ApPKgKKCy/7s7WHXkboGcsrXE+2joLyVxkbyVQfO3MUEaUQDHoSmb8TFFrSKYa9mw64WZHNHSDzYA==}
2023
+ dev: false
2024
+
2025
+ /react-redux@9.2.0(@types/react@19.2.14)(react@19.2.4)(redux@5.0.1):
2026
+ resolution: {integrity: sha512-ROY9fvHhwOD9ySfrF0wmvu//bKCQ6AeZZq1nJNtbDC+kk5DuSuNX/n6YWYF/SYy7bSba4D4FSz8DJeKY/S/r+g==}
2027
+ peerDependencies:
2028
+ '@types/react': ^18.2.25 || ^19
2029
+ react: ^18.0 || ^19
2030
+ redux: ^5.0.0
2031
+ peerDependenciesMeta:
2032
+ '@types/react':
2033
+ optional: true
2034
+ redux:
2035
+ optional: true
2036
+ dependencies:
2037
+ '@types/react': 19.2.14
2038
+ '@types/use-sync-external-store': 0.0.6
2039
+ react: 19.2.4
2040
+ redux: 5.0.1
2041
+ use-sync-external-store: 1.6.0(react@19.2.4)
2042
+ dev: false
2043
+
2044
+ /react-router-dom@7.13.1(react-dom@19.2.4)(react@19.2.4):
2045
+ resolution: {integrity: sha512-UJnV3Rxc5TgUPJt2KJpo1Jpy0OKQr0AjgbZzBFjaPJcFOb2Y8jA5H3LT8HUJAiRLlWrEXWHbF1Z4SCZaQjWDHw==}
2046
+ engines: {node: '>=20.0.0'}
2047
+ peerDependencies:
2048
+ react: '>=18'
2049
+ react-dom: '>=18'
2050
+ dependencies:
2051
+ react: 19.2.4
2052
+ react-dom: 19.2.4(react@19.2.4)
2053
+ react-router: 7.13.1(react-dom@19.2.4)(react@19.2.4)
2054
+ dev: false
2055
+
2056
+ /react-router@7.13.1(react-dom@19.2.4)(react@19.2.4):
2057
+ resolution: {integrity: sha512-td+xP4X2/6BJvZoX6xw++A2DdEi++YypA69bJUV5oVvqf6/9/9nNlD70YO1e9d3MyamJEBQFEzk6mbfDYbqrSA==}
2058
+ engines: {node: '>=20.0.0'}
2059
+ peerDependencies:
2060
+ react: '>=18'
2061
+ react-dom: '>=18'
2062
+ peerDependenciesMeta:
2063
+ react-dom:
2064
+ optional: true
2065
+ dependencies:
2066
+ cookie: 1.1.1
2067
+ react: 19.2.4
2068
+ react-dom: 19.2.4(react@19.2.4)
2069
+ set-cookie-parser: 2.7.2
2070
+ dev: false
2071
+
2072
+ /react@19.2.4:
2073
+ resolution: {integrity: sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==}
2074
+ engines: {node: '>=0.10.0'}
2075
+ dev: false
2076
+
2077
+ /recharts@3.8.0(@types/react@19.2.14)(react-dom@19.2.4)(react-is@19.2.4)(react@19.2.4)(redux@5.0.1):
2078
+ resolution: {integrity: sha512-Z/m38DX3L73ExO4Tpc9/iZWHmHnlzWG4njQbxsF5aSjwqmHNDDIm0rdEBArkwsBvR8U6EirlEHiQNYWCVh9sGQ==}
2079
+ engines: {node: '>=18'}
2080
+ peerDependencies:
2081
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
2082
+ react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
2083
+ react-is: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
2084
+ dependencies:
2085
+ '@reduxjs/toolkit': 2.11.2(react-redux@9.2.0)(react@19.2.4)
2086
+ clsx: 2.1.1
2087
+ decimal.js-light: 2.5.1
2088
+ es-toolkit: 1.45.1
2089
+ eventemitter3: 5.0.4
2090
+ immer: 10.2.0
2091
+ react: 19.2.4
2092
+ react-dom: 19.2.4(react@19.2.4)
2093
+ react-is: 19.2.4
2094
+ react-redux: 9.2.0(@types/react@19.2.14)(react@19.2.4)(redux@5.0.1)
2095
+ reselect: 5.1.1
2096
+ tiny-invariant: 1.3.3
2097
+ use-sync-external-store: 1.6.0(react@19.2.4)
2098
+ victory-vendor: 37.3.6
2099
+ transitivePeerDependencies:
2100
+ - '@types/react'
2101
+ - redux
2102
+ dev: false
2103
+
2104
+ /redux-thunk@3.1.0(redux@5.0.1):
2105
+ resolution: {integrity: sha512-NW2r5T6ksUKXCabzhL9z+h206HQw/NJkcLm1GPImRQ8IzfXwRGqjVhKJGauHirT0DAuyy6hjdnMZaRoAcy0Klw==}
2106
+ peerDependencies:
2107
+ redux: ^5.0.0
2108
+ dependencies:
2109
+ redux: 5.0.1
2110
+ dev: false
2111
+
2112
+ /redux@5.0.1:
2113
+ resolution: {integrity: sha512-M9/ELqF6fy8FwmkpnF0S3YKOqMyoWJ4+CS5Efg2ct3oY9daQvd/Pc71FpGZsVsbl3Cpb+IIcjBDUnnyBdQbq4w==}
2114
+ dev: false
2115
+
2116
+ /reselect@5.1.1:
2117
+ resolution: {integrity: sha512-K/BG6eIky/SBpzfHZv/dd+9JBFiS4SWV7FIujVyJRux6e45+73RaUHXLmIR1f7WOMaQ0U1km6qwklRQxpJJY0w==}
2118
+ dev: false
2119
+
2120
+ /resolve-from@4.0.0:
2121
+ resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
2122
+ engines: {node: '>=4'}
2123
+ dev: true
2124
+
2125
+ /rolldown@1.0.0-rc.9:
2126
+ resolution: {integrity: sha512-9EbgWge7ZH+yqb4d2EnELAntgPTWbfL8ajiTW+SyhJEC4qhBbkCKbqFV4Ge4zmu5ziQuVbWxb/XwLZ+RIO7E8Q==}
2127
+ engines: {node: ^20.19.0 || >=22.12.0}
2128
+ hasBin: true
2129
+ dependencies:
2130
+ '@oxc-project/types': 0.115.0
2131
+ '@rolldown/pluginutils': 1.0.0-rc.9
2132
+ optionalDependencies:
2133
+ '@rolldown/binding-android-arm64': 1.0.0-rc.9
2134
+ '@rolldown/binding-darwin-arm64': 1.0.0-rc.9
2135
+ '@rolldown/binding-darwin-x64': 1.0.0-rc.9
2136
+ '@rolldown/binding-freebsd-x64': 1.0.0-rc.9
2137
+ '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-rc.9
2138
+ '@rolldown/binding-linux-arm64-gnu': 1.0.0-rc.9
2139
+ '@rolldown/binding-linux-arm64-musl': 1.0.0-rc.9
2140
+ '@rolldown/binding-linux-ppc64-gnu': 1.0.0-rc.9
2141
+ '@rolldown/binding-linux-s390x-gnu': 1.0.0-rc.9
2142
+ '@rolldown/binding-linux-x64-gnu': 1.0.0-rc.9
2143
+ '@rolldown/binding-linux-x64-musl': 1.0.0-rc.9
2144
+ '@rolldown/binding-openharmony-arm64': 1.0.0-rc.9
2145
+ '@rolldown/binding-wasm32-wasi': 1.0.0-rc.9
2146
+ '@rolldown/binding-win32-arm64-msvc': 1.0.0-rc.9
2147
+ '@rolldown/binding-win32-x64-msvc': 1.0.0-rc.9
2148
+ dev: true
2149
+
2150
+ /scheduler@0.27.0:
2151
+ resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==}
2152
+ dev: false
2153
+
2154
+ /semver@6.3.1:
2155
+ resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
2156
+ hasBin: true
2157
+ dev: true
2158
+
2159
+ /semver@7.7.4:
2160
+ resolution: {integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==}
2161
+ engines: {node: '>=10'}
2162
+ hasBin: true
2163
+ dev: true
2164
+
2165
+ /set-cookie-parser@2.7.2:
2166
+ resolution: {integrity: sha512-oeM1lpU/UvhTxw+g3cIfxXHyJRc/uidd3yK1P242gzHds0udQBYzs3y8j4gCCW+ZJ7ad0yctld8RYO+bdurlvw==}
2167
+ dev: false
2168
+
2169
+ /shebang-command@2.0.0:
2170
+ resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
2171
+ engines: {node: '>=8'}
2172
+ dependencies:
2173
+ shebang-regex: 3.0.0
2174
+ dev: true
2175
+
2176
+ /shebang-regex@3.0.0:
2177
+ resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
2178
+ engines: {node: '>=8'}
2179
+ dev: true
2180
+
2181
+ /source-map-js@1.2.1:
2182
+ resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
2183
+ engines: {node: '>=0.10.0'}
2184
+ dev: true
2185
+
2186
+ /strip-json-comments@3.1.1:
2187
+ resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
2188
+ engines: {node: '>=8'}
2189
+ dev: true
2190
+
2191
+ /supports-color@7.2.0:
2192
+ resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
2193
+ engines: {node: '>=8'}
2194
+ dependencies:
2195
+ has-flag: 4.0.0
2196
+ dev: true
2197
+
2198
+ /tailwind-merge@3.5.0:
2199
+ resolution: {integrity: sha512-I8K9wewnVDkL1NTGoqWmVEIlUcB9gFriAEkXkfCjX5ib8ezGxtR3xD7iZIxrfArjEsH7F1CHD4RFUtxefdqV/A==}
2200
+ dev: false
2201
+
2202
+ /tailwindcss@4.2.1:
2203
+ resolution: {integrity: sha512-/tBrSQ36vCleJkAOsy9kbNTgaxvGbyOamC30PRePTQe/o1MFwEKHQk4Cn7BNGaPtjp+PuUrByJehM1hgxfq4sw==}
2204
+ dev: true
2205
+
2206
+ /tapable@2.3.0:
2207
+ resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==}
2208
+ engines: {node: '>=6'}
2209
+ dev: true
2210
+
2211
+ /tiny-invariant@1.3.3:
2212
+ resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
2213
+ dev: false
2214
+
2215
+ /tinyglobby@0.2.15:
2216
+ resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
2217
+ engines: {node: '>=12.0.0'}
2218
+ dependencies:
2219
+ fdir: 6.5.0(picomatch@4.0.3)
2220
+ picomatch: 4.0.3
2221
+ dev: true
2222
+
2223
+ /ts-api-utils@2.4.0(typescript@5.9.3):
2224
+ resolution: {integrity: sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==}
2225
+ engines: {node: '>=18.12'}
2226
+ peerDependencies:
2227
+ typescript: '>=4.8.4'
2228
+ dependencies:
2229
+ typescript: 5.9.3
2230
+ dev: true
2231
+
2232
+ /tslib@2.8.1:
2233
+ resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
2234
+ requiresBuild: true
2235
+
2236
+ /type-check@0.4.0:
2237
+ resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
2238
+ engines: {node: '>= 0.8.0'}
2239
+ dependencies:
2240
+ prelude-ls: 1.2.1
2241
+ dev: true
2242
+
2243
+ /typescript-eslint@8.57.1(eslint@9.39.4)(typescript@5.9.3):
2244
+ resolution: {integrity: sha512-fLvZWf+cAGw3tqMCYzGIU6yR8K+Y9NT2z23RwOjlNFF2HwSB3KhdEFI5lSBv8tNmFkkBShSjsCjzx1vahZfISA==}
2245
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
2246
+ peerDependencies:
2247
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
2248
+ typescript: '>=4.8.4 <6.0.0'
2249
+ dependencies:
2250
+ '@typescript-eslint/eslint-plugin': 8.57.1(@typescript-eslint/parser@8.57.1)(eslint@9.39.4)(typescript@5.9.3)
2251
+ '@typescript-eslint/parser': 8.57.1(eslint@9.39.4)(typescript@5.9.3)
2252
+ '@typescript-eslint/typescript-estree': 8.57.1(typescript@5.9.3)
2253
+ '@typescript-eslint/utils': 8.57.1(eslint@9.39.4)(typescript@5.9.3)
2254
+ eslint: 9.39.4
2255
+ typescript: 5.9.3
2256
+ transitivePeerDependencies:
2257
+ - supports-color
2258
+ dev: true
2259
+
2260
+ /typescript@5.9.3:
2261
+ resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
2262
+ engines: {node: '>=14.17'}
2263
+ hasBin: true
2264
+ dev: true
2265
+
2266
+ /undici-types@7.16.0:
2267
+ resolution: {integrity: sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==}
2268
+ dev: true
2269
+
2270
+ /update-browserslist-db@1.2.3(browserslist@4.28.1):
2271
+ resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==}
2272
+ hasBin: true
2273
+ peerDependencies:
2274
+ browserslist: '>= 4.21.0'
2275
+ dependencies:
2276
+ browserslist: 4.28.1
2277
+ escalade: 3.2.0
2278
+ picocolors: 1.1.1
2279
+ dev: true
2280
+
2281
+ /uri-js@4.4.1:
2282
+ resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
2283
+ dependencies:
2284
+ punycode: 2.3.1
2285
+ dev: true
2286
+
2287
+ /use-sync-external-store@1.6.0(react@19.2.4):
2288
+ resolution: {integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==}
2289
+ peerDependencies:
2290
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
2291
+ dependencies:
2292
+ react: 19.2.4
2293
+ dev: false
2294
+
2295
+ /victory-vendor@37.3.6:
2296
+ resolution: {integrity: sha512-SbPDPdDBYp+5MJHhBCAyI7wKM3d5ivekigc2Dk2s7pgbZ9wIgIBYGVw4zGHBml/qTFbexrofXW6Gu4noGxrOwQ==}
2297
+ dependencies:
2298
+ '@types/d3-array': 3.2.2
2299
+ '@types/d3-ease': 3.0.2
2300
+ '@types/d3-interpolate': 3.0.4
2301
+ '@types/d3-scale': 4.0.9
2302
+ '@types/d3-shape': 3.1.8
2303
+ '@types/d3-time': 3.0.4
2304
+ '@types/d3-timer': 3.0.2
2305
+ d3-array: 3.2.4
2306
+ d3-ease: 3.0.1
2307
+ d3-interpolate: 3.0.1
2308
+ d3-scale: 4.0.2
2309
+ d3-shape: 3.2.0
2310
+ d3-time: 3.1.0
2311
+ d3-timer: 3.0.1
2312
+ dev: false
2313
+
2314
+ /vite@8.0.0(@types/node@24.12.0):
2315
+ resolution: {integrity: sha512-fPGaRNj9Zytaf8LEiBhY7Z6ijnFKdzU/+mL8EFBaKr7Vw1/FWcTBAMW0wLPJAGMPX38ZPVCVgLceWiEqeoqL2Q==}
2316
+ engines: {node: ^20.19.0 || >=22.12.0}
2317
+ hasBin: true
2318
+ peerDependencies:
2319
+ '@types/node': ^20.19.0 || >=22.12.0
2320
+ '@vitejs/devtools': ^0.0.0-alpha.31
2321
+ esbuild: ^0.27.0
2322
+ jiti: '>=1.21.0'
2323
+ less: ^4.0.0
2324
+ sass: ^1.70.0
2325
+ sass-embedded: ^1.70.0
2326
+ stylus: '>=0.54.8'
2327
+ sugarss: ^5.0.0
2328
+ terser: ^5.16.0
2329
+ tsx: ^4.8.1
2330
+ yaml: ^2.4.2
2331
+ peerDependenciesMeta:
2332
+ '@types/node':
2333
+ optional: true
2334
+ '@vitejs/devtools':
2335
+ optional: true
2336
+ esbuild:
2337
+ optional: true
2338
+ jiti:
2339
+ optional: true
2340
+ less:
2341
+ optional: true
2342
+ sass:
2343
+ optional: true
2344
+ sass-embedded:
2345
+ optional: true
2346
+ stylus:
2347
+ optional: true
2348
+ sugarss:
2349
+ optional: true
2350
+ terser:
2351
+ optional: true
2352
+ tsx:
2353
+ optional: true
2354
+ yaml:
2355
+ optional: true
2356
+ dependencies:
2357
+ '@oxc-project/runtime': 0.115.0
2358
+ '@types/node': 24.12.0
2359
+ lightningcss: 1.32.0
2360
+ picomatch: 4.0.3
2361
+ postcss: 8.5.8
2362
+ rolldown: 1.0.0-rc.9
2363
+ tinyglobby: 0.2.15
2364
+ optionalDependencies:
2365
+ fsevents: 2.3.3
2366
+ dev: true
2367
+
2368
+ /which@2.0.2:
2369
+ resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
2370
+ engines: {node: '>= 8'}
2371
+ hasBin: true
2372
+ dependencies:
2373
+ isexe: 2.0.0
2374
+ dev: true
2375
+
2376
+ /word-wrap@1.2.5:
2377
+ resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
2378
+ engines: {node: '>=0.10.0'}
2379
+ dev: true
2380
+
2381
+ /yallist@3.1.1:
2382
+ resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
2383
+ dev: true
2384
+
2385
+ /yocto-queue@0.1.0:
2386
+ resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
2387
+ engines: {node: '>=10'}
2388
+ dev: true
2389
+
2390
+ /zod-validation-error@4.0.2(zod@4.3.6):
2391
+ resolution: {integrity: sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==}
2392
+ engines: {node: '>=18.0.0'}
2393
+ peerDependencies:
2394
+ zod: ^3.25.0 || ^4.0.0
2395
+ dependencies:
2396
+ zod: 4.3.6
2397
+ dev: true
2398
+
2399
+ /zod@4.3.6:
2400
+ resolution: {integrity: sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==}
2401
+ dev: true