create-bluecopa-react-app 1.0.4 → 1.0.6

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 (108) hide show
  1. package/README.md +47 -10
  2. package/bin/create-bluecopa-react-app.js +257 -51
  3. package/package.json +6 -5
  4. package/templates/latest/Agent.md +254 -0
  5. package/templates/latest/Dockerfile +22 -0
  6. package/templates/latest/README.md +157 -221
  7. package/templates/latest/app/app.css +134 -0
  8. package/templates/latest/app/app.tsx +46 -0
  9. package/templates/latest/app/components/app-sidebar.tsx +174 -0
  10. package/templates/latest/app/components/chart-area-interactive.tsx +290 -0
  11. package/templates/latest/app/components/data-table.tsx +807 -0
  12. package/templates/latest/app/components/nav-documents.tsx +92 -0
  13. package/templates/latest/app/components/nav-main.tsx +56 -0
  14. package/templates/latest/app/components/nav-secondary.tsx +42 -0
  15. package/templates/latest/app/components/nav-user.tsx +112 -0
  16. package/templates/latest/app/components/section-cards.tsx +102 -0
  17. package/templates/latest/app/components/site-header.tsx +19 -0
  18. package/templates/latest/app/components/ui/avatar.tsx +53 -0
  19. package/templates/latest/app/components/ui/badge.tsx +46 -0
  20. package/templates/latest/app/components/ui/breadcrumb.tsx +109 -0
  21. package/templates/latest/app/components/ui/button.tsx +58 -0
  22. package/templates/latest/app/components/ui/card.tsx +92 -0
  23. package/templates/latest/app/components/ui/chart.tsx +352 -0
  24. package/templates/latest/app/components/ui/checkbox.tsx +30 -0
  25. package/templates/latest/app/components/ui/drawer.tsx +139 -0
  26. package/templates/latest/app/components/ui/dropdown-menu.tsx +258 -0
  27. package/templates/latest/app/components/ui/input.tsx +21 -0
  28. package/templates/latest/app/components/ui/label.tsx +24 -0
  29. package/templates/latest/app/components/ui/select.tsx +183 -0
  30. package/templates/latest/app/components/ui/separator.tsx +26 -0
  31. package/templates/latest/app/components/ui/sheet.tsx +139 -0
  32. package/templates/latest/app/components/ui/sidebar.tsx +731 -0
  33. package/templates/latest/app/components/ui/skeleton.tsx +13 -0
  34. package/templates/latest/app/components/ui/sonner.tsx +23 -0
  35. package/templates/latest/app/components/ui/table.tsx +117 -0
  36. package/templates/latest/app/components/ui/tabs.tsx +66 -0
  37. package/templates/latest/app/components/ui/toggle-group.tsx +73 -0
  38. package/templates/latest/app/components/ui/toggle.tsx +47 -0
  39. package/templates/latest/app/components/ui/tooltip.tsx +59 -0
  40. package/templates/latest/app/dashboard/data.json +614 -0
  41. package/templates/latest/app/hooks/use-bluecopa-user.ts +37 -0
  42. package/templates/latest/app/hooks/use-mobile.ts +19 -0
  43. package/templates/latest/{src → app}/lib/utils.ts +1 -1
  44. package/templates/latest/app/main.tsx +12 -0
  45. package/templates/latest/app/routes/home.tsx +40 -0
  46. package/templates/latest/app/routes.tsx +15 -0
  47. package/templates/latest/{src → app}/single-spa.tsx +38 -28
  48. package/templates/latest/components.json +22 -0
  49. package/templates/latest/dist/assets/__federation_expose_App-DRwKKpS2.js +91 -0
  50. package/templates/latest/dist/assets/__federation_fn_import-CzfA7kmP.js +438 -0
  51. package/templates/latest/dist/assets/__federation_shared_react-Bp6HVBS4.js +16 -0
  52. package/templates/latest/dist/assets/__federation_shared_react-dom-BCcRGiYp.js +17 -0
  53. package/templates/latest/dist/assets/client-DgSav55y.js +12658 -0
  54. package/templates/latest/dist/assets/home-DOL6GrYV.js +54951 -0
  55. package/templates/latest/dist/assets/index-BzNimew1.js +69 -0
  56. package/templates/latest/dist/assets/index-DMFtQdNS.js +412 -0
  57. package/templates/latest/dist/assets/index-DdYpcDMk.js +60 -0
  58. package/templates/latest/dist/assets/remoteEntry.js +88 -0
  59. package/templates/latest/dist/assets/style-36A39bNN.css +3683 -0
  60. package/templates/latest/dist/avatars/shadcn.svg +6 -0
  61. package/templates/latest/dist/favicon.ico +0 -0
  62. package/templates/latest/dist/index.html +19 -0
  63. package/templates/latest/index.html +1 -1
  64. package/templates/latest/package-lock.json +1227 -3353
  65. package/templates/latest/package.json +47 -43
  66. package/templates/latest/pnpm-lock.yaml +4767 -0
  67. package/templates/latest/preview/index.html +32 -2
  68. package/templates/latest/public/avatars/shadcn.svg +6 -0
  69. package/templates/latest/public/favicon.ico +0 -0
  70. package/templates/latest/tsconfig.json +18 -11
  71. package/templates/latest/vite.config.ts +41 -41
  72. package/templates/latest/.env.example +0 -14
  73. package/templates/latest/.eslintrc.cjs +0 -42
  74. package/templates/latest/AGENT.md +0 -284
  75. package/templates/latest/clean.sh +0 -39
  76. package/templates/latest/postcss.config.cjs +0 -6
  77. package/templates/latest/public/bluecopa-logo.svg +0 -30
  78. package/templates/latest/public/favicon-32x32.png +0 -0
  79. package/templates/latest/public/favicon-96x96.png +0 -0
  80. package/templates/latest/setup.sh +0 -55
  81. package/templates/latest/src/App.tsx +0 -15
  82. package/templates/latest/src/components/layout/dashboard-header.tsx +0 -139
  83. package/templates/latest/src/components/layout/dashboard-layout.tsx +0 -29
  84. package/templates/latest/src/components/layout/sidebar.tsx +0 -54
  85. package/templates/latest/src/components/page/dashboard.tsx +0 -1506
  86. package/templates/latest/src/components/page/navbar.tsx +0 -104
  87. package/templates/latest/src/components/tables/data-grid.tsx +0 -439
  88. package/templates/latest/src/components/ui/alert.tsx +0 -59
  89. package/templates/latest/src/components/ui/avatar.tsx +0 -50
  90. package/templates/latest/src/components/ui/badge.tsx +0 -36
  91. package/templates/latest/src/components/ui/bluecopa-logo.tsx +0 -54
  92. package/templates/latest/src/components/ui/button.tsx +0 -58
  93. package/templates/latest/src/components/ui/card.tsx +0 -79
  94. package/templates/latest/src/components/ui/dropdown-menu.tsx +0 -200
  95. package/templates/latest/src/components/ui/input.tsx +0 -24
  96. package/templates/latest/src/components/ui/label.tsx +0 -23
  97. package/templates/latest/src/components/ui/select.tsx +0 -29
  98. package/templates/latest/src/hooks/use-api.ts +0 -55
  99. package/templates/latest/src/index.css +0 -59
  100. package/templates/latest/src/main.tsx +0 -13
  101. package/templates/latest/src/pages/Dashboard.tsx +0 -13
  102. package/templates/latest/src/pages/Home.tsx +0 -622
  103. package/templates/latest/src/providers/query-provider.tsx +0 -48
  104. package/templates/latest/src/types/api.ts +0 -78
  105. package/templates/latest/src/vite-env.d.ts +0 -11
  106. package/templates/latest/tailwind.config.js +0 -88
  107. package/templates/latest/tsconfig.app.json +0 -26
  108. package/templates/latest/tsconfig.node.json +0 -10
@@ -0,0 +1,4767 @@
1
+ lockfileVersion: '9.0'
2
+
3
+ settings:
4
+ autoInstallPeers: true
5
+ excludeLinksFromLockfile: false
6
+
7
+ importers:
8
+
9
+ .:
10
+ dependencies:
11
+ '@bluecopa/react':
12
+ specifier: 0.1.4
13
+ version: 0.1.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
14
+ '@dnd-kit/core':
15
+ specifier: ^6.3.1
16
+ version: 6.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
17
+ '@dnd-kit/modifiers':
18
+ specifier: ^9.0.0
19
+ version: 9.0.0(@dnd-kit/core@6.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)
20
+ '@dnd-kit/sortable':
21
+ specifier: ^10.0.0
22
+ version: 10.0.0(@dnd-kit/core@6.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)
23
+ '@dnd-kit/utilities':
24
+ specifier: ^3.2.2
25
+ version: 3.2.2(react@18.3.1)
26
+ '@radix-ui/react-avatar':
27
+ specifier: ^1.1.10
28
+ version: 1.1.10(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
29
+ '@radix-ui/react-checkbox':
30
+ specifier: ^1.3.3
31
+ version: 1.3.3(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
32
+ '@radix-ui/react-dialog':
33
+ specifier: ^1.1.15
34
+ version: 1.1.15(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
35
+ '@radix-ui/react-dropdown-menu':
36
+ specifier: ^2.1.16
37
+ version: 2.1.16(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
38
+ '@radix-ui/react-label':
39
+ specifier: ^2.1.7
40
+ version: 2.1.7(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
41
+ '@radix-ui/react-select':
42
+ specifier: ^2.2.6
43
+ version: 2.2.6(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
44
+ '@radix-ui/react-separator':
45
+ specifier: ^1.1.7
46
+ version: 1.1.7(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
47
+ '@radix-ui/react-slot':
48
+ specifier: ^1.2.3
49
+ version: 1.2.3(@types/react@18.3.24)(react@18.3.1)
50
+ '@radix-ui/react-tabs':
51
+ specifier: ^1.1.13
52
+ version: 1.1.13(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
53
+ '@radix-ui/react-toggle':
54
+ specifier: ^1.1.10
55
+ version: 1.1.10(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
56
+ '@radix-ui/react-toggle-group':
57
+ specifier: ^1.1.11
58
+ version: 1.1.11(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
59
+ '@radix-ui/react-tooltip':
60
+ specifier: ^1.2.8
61
+ version: 1.2.8(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
62
+ '@react-router/node':
63
+ specifier: ^7.7.1
64
+ version: 7.8.2(react-router@7.8.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.9.2)
65
+ '@react-router/serve':
66
+ specifier: ^7.7.1
67
+ version: 7.8.2(react-router@7.8.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.9.2)
68
+ '@tabler/icons-react':
69
+ specifier: ^3.34.1
70
+ version: 3.34.1(react@18.3.1)
71
+ '@tanstack/react-table':
72
+ specifier: ^8.21.3
73
+ version: 8.21.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
74
+ class-variance-authority:
75
+ specifier: ^0.7.1
76
+ version: 0.7.1
77
+ clsx:
78
+ specifier: ^2.1.1
79
+ version: 2.1.1
80
+ isbot:
81
+ specifier: ^5.1.27
82
+ version: 5.1.30
83
+ lucide-react:
84
+ specifier: ^0.544.0
85
+ version: 0.544.0(react@18.3.1)
86
+ next-themes:
87
+ specifier: ^0.4.6
88
+ version: 0.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
89
+ react:
90
+ specifier: ^18.3.1
91
+ version: 18.3.1
92
+ react-dom:
93
+ specifier: ^18.3.1
94
+ version: 18.3.1(react@18.3.1)
95
+ react-router:
96
+ specifier: ^7.7.1
97
+ version: 7.8.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
98
+ recharts:
99
+ specifier: 2.15.4
100
+ version: 2.15.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
101
+ sonner:
102
+ specifier: ^2.0.7
103
+ version: 2.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
104
+ tailwind-merge:
105
+ specifier: ^3.3.1
106
+ version: 3.3.1
107
+ vaul:
108
+ specifier: ^1.1.2
109
+ version: 1.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
110
+ zod:
111
+ specifier: ^4.1.8
112
+ version: 4.1.8
113
+ devDependencies:
114
+ '@react-router/dev':
115
+ specifier: ^7.7.1
116
+ version: 7.8.2(@react-router/serve@7.8.2(react-router@7.8.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.9.2))(@types/node@20.19.13)(jiti@2.5.1)(lightningcss@1.30.1)(react-dom@18.3.1(react@18.3.1))(react-router@7.8.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(typescript@5.9.2)(vite@6.3.6(@types/node@20.19.13)(jiti@2.5.1)(lightningcss@1.30.1))
117
+ '@tailwindcss/vite':
118
+ specifier: ^4.1.13
119
+ version: 4.1.13(vite@6.3.6(@types/node@20.19.13)(jiti@2.5.1)(lightningcss@1.30.1))
120
+ '@types/node':
121
+ specifier: ^20
122
+ version: 20.19.13
123
+ '@types/react':
124
+ specifier: ^18.3.12
125
+ version: 18.3.24
126
+ '@types/react-dom':
127
+ specifier: ^18.3.1
128
+ version: 18.3.7(@types/react@18.3.24)
129
+ tailwindcss:
130
+ specifier: ^4.1.13
131
+ version: 4.1.13
132
+ tw-animate-css:
133
+ specifier: ^1.3.8
134
+ version: 1.3.8
135
+ typescript:
136
+ specifier: ^5.8.3
137
+ version: 5.9.2
138
+ vite:
139
+ specifier: ^6.3.3
140
+ version: 6.3.6(@types/node@20.19.13)(jiti@2.5.1)(lightningcss@1.30.1)
141
+ vite-tsconfig-paths:
142
+ specifier: ^5.1.4
143
+ version: 5.1.4(typescript@5.9.2)(vite@6.3.6(@types/node@20.19.13)(jiti@2.5.1)(lightningcss@1.30.1))
144
+
145
+ packages:
146
+
147
+ '@babel/code-frame@7.27.1':
148
+ resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
149
+ engines: {node: '>=6.9.0'}
150
+
151
+ '@babel/compat-data@7.28.4':
152
+ resolution: {integrity: sha512-YsmSKC29MJwf0gF8Rjjrg5LQCmyh+j/nD8/eP7f+BeoQTKYqs9RoWbjGOdy0+1Ekr68RJZMUOPVQaQisnIo4Rw==}
153
+ engines: {node: '>=6.9.0'}
154
+
155
+ '@babel/core@7.28.4':
156
+ resolution: {integrity: sha512-2BCOP7TN8M+gVDj7/ht3hsaO/B/n5oDbiAyyvnRlNOs+u1o+JWNYTQrmpuNp1/Wq2gcFrI01JAW+paEKDMx/CA==}
157
+ engines: {node: '>=6.9.0'}
158
+
159
+ '@babel/generator@7.28.3':
160
+ resolution: {integrity: sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==}
161
+ engines: {node: '>=6.9.0'}
162
+
163
+ '@babel/helper-annotate-as-pure@7.27.3':
164
+ resolution: {integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==}
165
+ engines: {node: '>=6.9.0'}
166
+
167
+ '@babel/helper-compilation-targets@7.27.2':
168
+ resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==}
169
+ engines: {node: '>=6.9.0'}
170
+
171
+ '@babel/helper-create-class-features-plugin@7.28.3':
172
+ resolution: {integrity: sha512-V9f6ZFIYSLNEbuGA/92uOvYsGCJNsuA8ESZ4ldc09bWk/j8H8TKiPw8Mk1eG6olpnO0ALHJmYfZvF4MEE4gajg==}
173
+ engines: {node: '>=6.9.0'}
174
+ peerDependencies:
175
+ '@babel/core': ^7.0.0
176
+
177
+ '@babel/helper-globals@7.28.0':
178
+ resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==}
179
+ engines: {node: '>=6.9.0'}
180
+
181
+ '@babel/helper-member-expression-to-functions@7.27.1':
182
+ resolution: {integrity: sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==}
183
+ engines: {node: '>=6.9.0'}
184
+
185
+ '@babel/helper-module-imports@7.27.1':
186
+ resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==}
187
+ engines: {node: '>=6.9.0'}
188
+
189
+ '@babel/helper-module-transforms@7.28.3':
190
+ resolution: {integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==}
191
+ engines: {node: '>=6.9.0'}
192
+ peerDependencies:
193
+ '@babel/core': ^7.0.0
194
+
195
+ '@babel/helper-optimise-call-expression@7.27.1':
196
+ resolution: {integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==}
197
+ engines: {node: '>=6.9.0'}
198
+
199
+ '@babel/helper-plugin-utils@7.27.1':
200
+ resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==}
201
+ engines: {node: '>=6.9.0'}
202
+
203
+ '@babel/helper-replace-supers@7.27.1':
204
+ resolution: {integrity: sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==}
205
+ engines: {node: '>=6.9.0'}
206
+ peerDependencies:
207
+ '@babel/core': ^7.0.0
208
+
209
+ '@babel/helper-skip-transparent-expression-wrappers@7.27.1':
210
+ resolution: {integrity: sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==}
211
+ engines: {node: '>=6.9.0'}
212
+
213
+ '@babel/helper-string-parser@7.27.1':
214
+ resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
215
+ engines: {node: '>=6.9.0'}
216
+
217
+ '@babel/helper-validator-identifier@7.27.1':
218
+ resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==}
219
+ engines: {node: '>=6.9.0'}
220
+
221
+ '@babel/helper-validator-option@7.27.1':
222
+ resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
223
+ engines: {node: '>=6.9.0'}
224
+
225
+ '@babel/helpers@7.28.4':
226
+ resolution: {integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==}
227
+ engines: {node: '>=6.9.0'}
228
+
229
+ '@babel/parser@7.28.4':
230
+ resolution: {integrity: sha512-yZbBqeM6TkpP9du/I2pUZnJsRMGGvOuIrhjzC1AwHwW+6he4mni6Bp/m8ijn0iOuZuPI2BfkCoSRunpyjnrQKg==}
231
+ engines: {node: '>=6.0.0'}
232
+ hasBin: true
233
+
234
+ '@babel/plugin-syntax-jsx@7.27.1':
235
+ resolution: {integrity: sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==}
236
+ engines: {node: '>=6.9.0'}
237
+ peerDependencies:
238
+ '@babel/core': ^7.0.0-0
239
+
240
+ '@babel/plugin-syntax-typescript@7.27.1':
241
+ resolution: {integrity: sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==}
242
+ engines: {node: '>=6.9.0'}
243
+ peerDependencies:
244
+ '@babel/core': ^7.0.0-0
245
+
246
+ '@babel/plugin-transform-modules-commonjs@7.27.1':
247
+ resolution: {integrity: sha512-OJguuwlTYlN0gBZFRPqwOGNWssZjfIUdS7HMYtN8c1KmwpwHFBwTeFZrg9XZa+DFTitWOW5iTAG7tyCUPsCCyw==}
248
+ engines: {node: '>=6.9.0'}
249
+ peerDependencies:
250
+ '@babel/core': ^7.0.0-0
251
+
252
+ '@babel/plugin-transform-typescript@7.28.0':
253
+ resolution: {integrity: sha512-4AEiDEBPIZvLQaWlc9liCavE0xRM0dNca41WtBeM3jgFptfUOSG9z0uteLhq6+3rq+WB6jIvUwKDTpXEHPJ2Vg==}
254
+ engines: {node: '>=6.9.0'}
255
+ peerDependencies:
256
+ '@babel/core': ^7.0.0-0
257
+
258
+ '@babel/preset-typescript@7.27.1':
259
+ resolution: {integrity: sha512-l7WfQfX0WK4M0v2RudjuQK4u99BS6yLHYEmdtVPP7lKV013zr9DygFuWNlnbvQ9LR+LS0Egz/XAvGx5U9MX0fQ==}
260
+ engines: {node: '>=6.9.0'}
261
+ peerDependencies:
262
+ '@babel/core': ^7.0.0-0
263
+
264
+ '@babel/runtime@7.28.4':
265
+ resolution: {integrity: sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==}
266
+ engines: {node: '>=6.9.0'}
267
+
268
+ '@babel/template@7.27.2':
269
+ resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
270
+ engines: {node: '>=6.9.0'}
271
+
272
+ '@babel/traverse@7.28.4':
273
+ resolution: {integrity: sha512-YEzuboP2qvQavAcjgQNVgsvHIDv6ZpwXvcvjmyySP2DIMuByS/6ioU5G9pYrWHM6T2YDfc7xga9iNzYOs12CFQ==}
274
+ engines: {node: '>=6.9.0'}
275
+
276
+ '@babel/types@7.28.4':
277
+ resolution: {integrity: sha512-bkFqkLhh3pMBUQQkpVgWDWq/lqzc2678eUyDlTBhRqhCHFguYYGM0Efga7tYk4TogG/3x0EEl66/OQ+WGbWB/Q==}
278
+ engines: {node: '>=6.9.0'}
279
+
280
+ '@bluecopa/core@0.1.5':
281
+ resolution: {integrity: sha512-oUvyRE0g2roYv+iOHCJlZ0glVtmXQJ0XU+8dsqzNCPkJfCi36Gm98T0zfWfPa6TKMjvA+23TBul2EdUQawBF+g==}
282
+ engines: {node: '>=18.0.0'}
283
+
284
+ '@bluecopa/react@0.1.4':
285
+ resolution: {integrity: sha512-FUI03xk6ZgrFL6annUA+VhIULwa5d8K/Ig/V3szhvBJnzrJUVeIKfwJR/uNabGzWI8YfGg1jl2AJ7pchvTQdZw==}
286
+ engines: {node: '>=18.0.0'}
287
+ peerDependencies:
288
+ react: '>=18.0.0'
289
+ react-dom: '>=18.0.0'
290
+
291
+ '@dnd-kit/accessibility@3.1.1':
292
+ resolution: {integrity: sha512-2P+YgaXF+gRsIihwwY1gCsQSYnu9Zyj2py8kY5fFvUM1qm2WA2u639R6YNVfU4GWr+ZM5mqEsfHZZLoRONbemw==}
293
+ peerDependencies:
294
+ react: '>=16.8.0'
295
+
296
+ '@dnd-kit/core@6.3.1':
297
+ resolution: {integrity: sha512-xkGBRQQab4RLwgXxoqETICr6S5JlogafbhNsidmrkVv2YRs5MLwpjoF2qpiGjQt8S9AoxtIV603s0GIUpY5eYQ==}
298
+ peerDependencies:
299
+ react: '>=16.8.0'
300
+ react-dom: '>=16.8.0'
301
+
302
+ '@dnd-kit/modifiers@9.0.0':
303
+ resolution: {integrity: sha512-ybiLc66qRGuZoC20wdSSG6pDXFikui/dCNGthxv4Ndy8ylErY0N3KVxY2bgo7AWwIbxDmXDg3ylAFmnrjcbVvw==}
304
+ peerDependencies:
305
+ '@dnd-kit/core': ^6.3.0
306
+ react: '>=16.8.0'
307
+
308
+ '@dnd-kit/sortable@10.0.0':
309
+ resolution: {integrity: sha512-+xqhmIIzvAYMGfBYYnbKuNicfSsk4RksY2XdmJhT+HAC01nix6fHCztU68jooFiMUB01Ky3F0FyOvhG/BZrWkg==}
310
+ peerDependencies:
311
+ '@dnd-kit/core': ^6.3.0
312
+ react: '>=16.8.0'
313
+
314
+ '@dnd-kit/utilities@3.2.2':
315
+ resolution: {integrity: sha512-+MKAJEOfaBe5SmV6t34p80MMKhjvUz0vRrvVJbPT0WElzaOJ/1xs+D+KDv+tD/NE5ujfrChEcshd4fLn0wpiqg==}
316
+ peerDependencies:
317
+ react: '>=16.8.0'
318
+
319
+ '@esbuild/aix-ppc64@0.25.9':
320
+ resolution: {integrity: sha512-OaGtL73Jck6pBKjNIe24BnFE6agGl+6KxDtTfHhy1HmhthfKouEcOhqpSL64K4/0WCtbKFLOdzD/44cJ4k9opA==}
321
+ engines: {node: '>=18'}
322
+ cpu: [ppc64]
323
+ os: [aix]
324
+
325
+ '@esbuild/android-arm64@0.25.9':
326
+ resolution: {integrity: sha512-IDrddSmpSv51ftWslJMvl3Q2ZT98fUSL2/rlUXuVqRXHCs5EUF1/f+jbjF5+NG9UffUDMCiTyh8iec7u8RlTLg==}
327
+ engines: {node: '>=18'}
328
+ cpu: [arm64]
329
+ os: [android]
330
+
331
+ '@esbuild/android-arm@0.25.9':
332
+ resolution: {integrity: sha512-5WNI1DaMtxQ7t7B6xa572XMXpHAaI/9Hnhk8lcxF4zVN4xstUgTlvuGDorBguKEnZO70qwEcLpfifMLoxiPqHQ==}
333
+ engines: {node: '>=18'}
334
+ cpu: [arm]
335
+ os: [android]
336
+
337
+ '@esbuild/android-x64@0.25.9':
338
+ resolution: {integrity: sha512-I853iMZ1hWZdNllhVZKm34f4wErd4lMyeV7BLzEExGEIZYsOzqDWDf+y082izYUE8gtJnYHdeDpN/6tUdwvfiw==}
339
+ engines: {node: '>=18'}
340
+ cpu: [x64]
341
+ os: [android]
342
+
343
+ '@esbuild/darwin-arm64@0.25.9':
344
+ resolution: {integrity: sha512-XIpIDMAjOELi/9PB30vEbVMs3GV1v2zkkPnuyRRURbhqjyzIINwj+nbQATh4H9GxUgH1kFsEyQMxwiLFKUS6Rg==}
345
+ engines: {node: '>=18'}
346
+ cpu: [arm64]
347
+ os: [darwin]
348
+
349
+ '@esbuild/darwin-x64@0.25.9':
350
+ resolution: {integrity: sha512-jhHfBzjYTA1IQu8VyrjCX4ApJDnH+ez+IYVEoJHeqJm9VhG9Dh2BYaJritkYK3vMaXrf7Ogr/0MQ8/MeIefsPQ==}
351
+ engines: {node: '>=18'}
352
+ cpu: [x64]
353
+ os: [darwin]
354
+
355
+ '@esbuild/freebsd-arm64@0.25.9':
356
+ resolution: {integrity: sha512-z93DmbnY6fX9+KdD4Ue/H6sYs+bhFQJNCPZsi4XWJoYblUqT06MQUdBCpcSfuiN72AbqeBFu5LVQTjfXDE2A6Q==}
357
+ engines: {node: '>=18'}
358
+ cpu: [arm64]
359
+ os: [freebsd]
360
+
361
+ '@esbuild/freebsd-x64@0.25.9':
362
+ resolution: {integrity: sha512-mrKX6H/vOyo5v71YfXWJxLVxgy1kyt1MQaD8wZJgJfG4gq4DpQGpgTB74e5yBeQdyMTbgxp0YtNj7NuHN0PoZg==}
363
+ engines: {node: '>=18'}
364
+ cpu: [x64]
365
+ os: [freebsd]
366
+
367
+ '@esbuild/linux-arm64@0.25.9':
368
+ resolution: {integrity: sha512-BlB7bIcLT3G26urh5Dmse7fiLmLXnRlopw4s8DalgZ8ef79Jj4aUcYbk90g8iCa2467HX8SAIidbL7gsqXHdRw==}
369
+ engines: {node: '>=18'}
370
+ cpu: [arm64]
371
+ os: [linux]
372
+
373
+ '@esbuild/linux-arm@0.25.9':
374
+ resolution: {integrity: sha512-HBU2Xv78SMgaydBmdor38lg8YDnFKSARg1Q6AT0/y2ezUAKiZvc211RDFHlEZRFNRVhcMamiToo7bDx3VEOYQw==}
375
+ engines: {node: '>=18'}
376
+ cpu: [arm]
377
+ os: [linux]
378
+
379
+ '@esbuild/linux-ia32@0.25.9':
380
+ resolution: {integrity: sha512-e7S3MOJPZGp2QW6AK6+Ly81rC7oOSerQ+P8L0ta4FhVi+/j/v2yZzx5CqqDaWjtPFfYz21Vi1S0auHrap3Ma3A==}
381
+ engines: {node: '>=18'}
382
+ cpu: [ia32]
383
+ os: [linux]
384
+
385
+ '@esbuild/linux-loong64@0.25.9':
386
+ resolution: {integrity: sha512-Sbe10Bnn0oUAB2AalYztvGcK+o6YFFA/9829PhOCUS9vkJElXGdphz0A3DbMdP8gmKkqPmPcMJmJOrI3VYB1JQ==}
387
+ engines: {node: '>=18'}
388
+ cpu: [loong64]
389
+ os: [linux]
390
+
391
+ '@esbuild/linux-mips64el@0.25.9':
392
+ resolution: {integrity: sha512-YcM5br0mVyZw2jcQeLIkhWtKPeVfAerES5PvOzaDxVtIyZ2NUBZKNLjC5z3/fUlDgT6w89VsxP2qzNipOaaDyA==}
393
+ engines: {node: '>=18'}
394
+ cpu: [mips64el]
395
+ os: [linux]
396
+
397
+ '@esbuild/linux-ppc64@0.25.9':
398
+ resolution: {integrity: sha512-++0HQvasdo20JytyDpFvQtNrEsAgNG2CY1CLMwGXfFTKGBGQT3bOeLSYE2l1fYdvML5KUuwn9Z8L1EWe2tzs1w==}
399
+ engines: {node: '>=18'}
400
+ cpu: [ppc64]
401
+ os: [linux]
402
+
403
+ '@esbuild/linux-riscv64@0.25.9':
404
+ resolution: {integrity: sha512-uNIBa279Y3fkjV+2cUjx36xkx7eSjb8IvnL01eXUKXez/CBHNRw5ekCGMPM0BcmqBxBcdgUWuUXmVWwm4CH9kg==}
405
+ engines: {node: '>=18'}
406
+ cpu: [riscv64]
407
+ os: [linux]
408
+
409
+ '@esbuild/linux-s390x@0.25.9':
410
+ resolution: {integrity: sha512-Mfiphvp3MjC/lctb+7D287Xw1DGzqJPb/J2aHHcHxflUo+8tmN/6d4k6I2yFR7BVo5/g7x2Monq4+Yew0EHRIA==}
411
+ engines: {node: '>=18'}
412
+ cpu: [s390x]
413
+ os: [linux]
414
+
415
+ '@esbuild/linux-x64@0.25.9':
416
+ resolution: {integrity: sha512-iSwByxzRe48YVkmpbgoxVzn76BXjlYFXC7NvLYq+b+kDjyyk30J0JY47DIn8z1MO3K0oSl9fZoRmZPQI4Hklzg==}
417
+ engines: {node: '>=18'}
418
+ cpu: [x64]
419
+ os: [linux]
420
+
421
+ '@esbuild/netbsd-arm64@0.25.9':
422
+ resolution: {integrity: sha512-9jNJl6FqaUG+COdQMjSCGW4QiMHH88xWbvZ+kRVblZsWrkXlABuGdFJ1E9L7HK+T0Yqd4akKNa/lO0+jDxQD4Q==}
423
+ engines: {node: '>=18'}
424
+ cpu: [arm64]
425
+ os: [netbsd]
426
+
427
+ '@esbuild/netbsd-x64@0.25.9':
428
+ resolution: {integrity: sha512-RLLdkflmqRG8KanPGOU7Rpg829ZHu8nFy5Pqdi9U01VYtG9Y0zOG6Vr2z4/S+/3zIyOxiK6cCeYNWOFR9QP87g==}
429
+ engines: {node: '>=18'}
430
+ cpu: [x64]
431
+ os: [netbsd]
432
+
433
+ '@esbuild/openbsd-arm64@0.25.9':
434
+ resolution: {integrity: sha512-YaFBlPGeDasft5IIM+CQAhJAqS3St3nJzDEgsgFixcfZeyGPCd6eJBWzke5piZuZ7CtL656eOSYKk4Ls2C0FRQ==}
435
+ engines: {node: '>=18'}
436
+ cpu: [arm64]
437
+ os: [openbsd]
438
+
439
+ '@esbuild/openbsd-x64@0.25.9':
440
+ resolution: {integrity: sha512-1MkgTCuvMGWuqVtAvkpkXFmtL8XhWy+j4jaSO2wxfJtilVCi0ZE37b8uOdMItIHz4I6z1bWWtEX4CJwcKYLcuA==}
441
+ engines: {node: '>=18'}
442
+ cpu: [x64]
443
+ os: [openbsd]
444
+
445
+ '@esbuild/openharmony-arm64@0.25.9':
446
+ resolution: {integrity: sha512-4Xd0xNiMVXKh6Fa7HEJQbrpP3m3DDn43jKxMjxLLRjWnRsfxjORYJlXPO4JNcXtOyfajXorRKY9NkOpTHptErg==}
447
+ engines: {node: '>=18'}
448
+ cpu: [arm64]
449
+ os: [openharmony]
450
+
451
+ '@esbuild/sunos-x64@0.25.9':
452
+ resolution: {integrity: sha512-WjH4s6hzo00nNezhp3wFIAfmGZ8U7KtrJNlFMRKxiI9mxEK1scOMAaa9i4crUtu+tBr+0IN6JCuAcSBJZfnphw==}
453
+ engines: {node: '>=18'}
454
+ cpu: [x64]
455
+ os: [sunos]
456
+
457
+ '@esbuild/win32-arm64@0.25.9':
458
+ resolution: {integrity: sha512-mGFrVJHmZiRqmP8xFOc6b84/7xa5y5YvR1x8djzXpJBSv/UsNK6aqec+6JDjConTgvvQefdGhFDAs2DLAds6gQ==}
459
+ engines: {node: '>=18'}
460
+ cpu: [arm64]
461
+ os: [win32]
462
+
463
+ '@esbuild/win32-ia32@0.25.9':
464
+ resolution: {integrity: sha512-b33gLVU2k11nVx1OhX3C8QQP6UHQK4ZtN56oFWvVXvz2VkDoe6fbG8TOgHFxEvqeqohmRnIHe5A1+HADk4OQww==}
465
+ engines: {node: '>=18'}
466
+ cpu: [ia32]
467
+ os: [win32]
468
+
469
+ '@esbuild/win32-x64@0.25.9':
470
+ resolution: {integrity: sha512-PPOl1mi6lpLNQxnGoyAfschAodRFYXJ+9fs6WHXz7CSWKbOqiMZsubC+BQsVKuul+3vKLuwTHsS2c2y9EoKwxQ==}
471
+ engines: {node: '>=18'}
472
+ cpu: [x64]
473
+ os: [win32]
474
+
475
+ '@floating-ui/core@1.7.3':
476
+ resolution: {integrity: sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==}
477
+
478
+ '@floating-ui/dom@1.7.4':
479
+ resolution: {integrity: sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA==}
480
+
481
+ '@floating-ui/react-dom@2.1.6':
482
+ resolution: {integrity: sha512-4JX6rEatQEvlmgU80wZyq9RT96HZJa88q8hp0pBd+LrczeDI4o6uA2M+uvxngVHo4Ihr8uibXxH6+70zhAFrVw==}
483
+ peerDependencies:
484
+ react: '>=16.8.0'
485
+ react-dom: '>=16.8.0'
486
+
487
+ '@floating-ui/utils@0.2.10':
488
+ resolution: {integrity: sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==}
489
+
490
+ '@isaacs/cliui@8.0.2':
491
+ resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
492
+ engines: {node: '>=12'}
493
+
494
+ '@isaacs/fs-minipass@4.0.1':
495
+ resolution: {integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==}
496
+ engines: {node: '>=18.0.0'}
497
+
498
+ '@jridgewell/gen-mapping@0.3.13':
499
+ resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
500
+
501
+ '@jridgewell/remapping@2.3.5':
502
+ resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
503
+
504
+ '@jridgewell/resolve-uri@3.1.2':
505
+ resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
506
+ engines: {node: '>=6.0.0'}
507
+
508
+ '@jridgewell/sourcemap-codec@1.5.5':
509
+ resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
510
+
511
+ '@jridgewell/trace-mapping@0.3.31':
512
+ resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
513
+
514
+ '@mjackson/node-fetch-server@0.2.0':
515
+ resolution: {integrity: sha512-EMlH1e30yzmTpGLQjlFmaDAjyOeZhng1/XCd7DExR8PNAnG/G1tyruZxEoUe11ClnwGhGrtsdnyyUx1frSzjng==}
516
+
517
+ '@mjackson/node-fetch-server@0.7.0':
518
+ resolution: {integrity: sha512-un8diyEBKU3BTVj3GzlTPA1kIjCkGdD+AMYQy31Gf9JCkfoZzwgJ79GUtHrF2BN3XPNMLpubbzPcxys+a3uZEw==}
519
+
520
+ '@npmcli/git@4.1.0':
521
+ resolution: {integrity: sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ==}
522
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
523
+
524
+ '@npmcli/package-json@4.0.1':
525
+ resolution: {integrity: sha512-lRCEGdHZomFsURroh522YvA/2cVb9oPIJrjHanCJZkiasz1BzcnLr3tBJhlV7S86MBJBuAQ33is2D60YitZL2Q==}
526
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
527
+
528
+ '@npmcli/promise-spawn@6.0.2':
529
+ resolution: {integrity: sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg==}
530
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
531
+
532
+ '@pkgjs/parseargs@0.11.0':
533
+ resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
534
+ engines: {node: '>=14'}
535
+
536
+ '@radix-ui/number@1.1.1':
537
+ resolution: {integrity: sha512-MkKCwxlXTgz6CFoJx3pCwn07GKp36+aZyu/u2Ln2VrA5DcdyCZkASEDBTd8x5whTQQL5CiYf4prXKLcgQdv29g==}
538
+
539
+ '@radix-ui/primitive@1.1.3':
540
+ resolution: {integrity: sha512-JTF99U/6XIjCBo0wqkU5sK10glYe27MRRsfwoiq5zzOEZLHU3A3KCMa5X/azekYRCJ0HlwI0crAXS/5dEHTzDg==}
541
+
542
+ '@radix-ui/react-arrow@1.1.7':
543
+ resolution: {integrity: sha512-F+M1tLhO+mlQaOWspE8Wstg+z6PwxwRd8oQ8IXceWz92kfAmalTRf0EjrouQeo7QssEPfCn05B4Ihs1K9WQ/7w==}
544
+ peerDependencies:
545
+ '@types/react': '*'
546
+ '@types/react-dom': '*'
547
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
548
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
549
+ peerDependenciesMeta:
550
+ '@types/react':
551
+ optional: true
552
+ '@types/react-dom':
553
+ optional: true
554
+
555
+ '@radix-ui/react-avatar@1.1.10':
556
+ resolution: {integrity: sha512-V8piFfWapM5OmNCXTzVQY+E1rDa53zY+MQ4Y7356v4fFz6vqCyUtIz2rUD44ZEdwg78/jKmMJHj07+C/Z/rcog==}
557
+ peerDependencies:
558
+ '@types/react': '*'
559
+ '@types/react-dom': '*'
560
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
561
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
562
+ peerDependenciesMeta:
563
+ '@types/react':
564
+ optional: true
565
+ '@types/react-dom':
566
+ optional: true
567
+
568
+ '@radix-ui/react-checkbox@1.3.3':
569
+ resolution: {integrity: sha512-wBbpv+NQftHDdG86Qc0pIyXk5IR3tM8Vd0nWLKDcX8nNn4nXFOFwsKuqw2okA/1D/mpaAkmuyndrPJTYDNZtFw==}
570
+ peerDependencies:
571
+ '@types/react': '*'
572
+ '@types/react-dom': '*'
573
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
574
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
575
+ peerDependenciesMeta:
576
+ '@types/react':
577
+ optional: true
578
+ '@types/react-dom':
579
+ optional: true
580
+
581
+ '@radix-ui/react-collection@1.1.7':
582
+ resolution: {integrity: sha512-Fh9rGN0MoI4ZFUNyfFVNU4y9LUz93u9/0K+yLgA2bwRojxM8JU1DyvvMBabnZPBgMWREAJvU2jjVzq+LrFUglw==}
583
+ peerDependencies:
584
+ '@types/react': '*'
585
+ '@types/react-dom': '*'
586
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
587
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
588
+ peerDependenciesMeta:
589
+ '@types/react':
590
+ optional: true
591
+ '@types/react-dom':
592
+ optional: true
593
+
594
+ '@radix-ui/react-compose-refs@1.1.2':
595
+ resolution: {integrity: sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==}
596
+ peerDependencies:
597
+ '@types/react': '*'
598
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
599
+ peerDependenciesMeta:
600
+ '@types/react':
601
+ optional: true
602
+
603
+ '@radix-ui/react-context@1.1.2':
604
+ resolution: {integrity: sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA==}
605
+ peerDependencies:
606
+ '@types/react': '*'
607
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
608
+ peerDependenciesMeta:
609
+ '@types/react':
610
+ optional: true
611
+
612
+ '@radix-ui/react-dialog@1.1.15':
613
+ resolution: {integrity: sha512-TCglVRtzlffRNxRMEyR36DGBLJpeusFcgMVD9PZEzAKnUs1lKCgX5u9BmC2Yg+LL9MgZDugFFs1Vl+Jp4t/PGw==}
614
+ peerDependencies:
615
+ '@types/react': '*'
616
+ '@types/react-dom': '*'
617
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
618
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
619
+ peerDependenciesMeta:
620
+ '@types/react':
621
+ optional: true
622
+ '@types/react-dom':
623
+ optional: true
624
+
625
+ '@radix-ui/react-direction@1.1.1':
626
+ resolution: {integrity: sha512-1UEWRX6jnOA2y4H5WczZ44gOOjTEmlqv1uNW4GAJEO5+bauCBhv8snY65Iw5/VOS/ghKN9gr2KjnLKxrsvoMVw==}
627
+ peerDependencies:
628
+ '@types/react': '*'
629
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
630
+ peerDependenciesMeta:
631
+ '@types/react':
632
+ optional: true
633
+
634
+ '@radix-ui/react-dismissable-layer@1.1.11':
635
+ resolution: {integrity: sha512-Nqcp+t5cTB8BinFkZgXiMJniQH0PsUt2k51FUhbdfeKvc4ACcG2uQniY/8+h1Yv6Kza4Q7lD7PQV0z0oicE0Mg==}
636
+ peerDependencies:
637
+ '@types/react': '*'
638
+ '@types/react-dom': '*'
639
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
640
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
641
+ peerDependenciesMeta:
642
+ '@types/react':
643
+ optional: true
644
+ '@types/react-dom':
645
+ optional: true
646
+
647
+ '@radix-ui/react-dropdown-menu@2.1.16':
648
+ resolution: {integrity: sha512-1PLGQEynI/3OX/ftV54COn+3Sud/Mn8vALg2rWnBLnRaGtJDduNW/22XjlGgPdpcIbiQxjKtb7BkcjP00nqfJw==}
649
+ peerDependencies:
650
+ '@types/react': '*'
651
+ '@types/react-dom': '*'
652
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
653
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
654
+ peerDependenciesMeta:
655
+ '@types/react':
656
+ optional: true
657
+ '@types/react-dom':
658
+ optional: true
659
+
660
+ '@radix-ui/react-focus-guards@1.1.3':
661
+ resolution: {integrity: sha512-0rFg/Rj2Q62NCm62jZw0QX7a3sz6QCQU0LpZdNrJX8byRGaGVTqbrW9jAoIAHyMQqsNpeZ81YgSizOt5WXq0Pw==}
662
+ peerDependencies:
663
+ '@types/react': '*'
664
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
665
+ peerDependenciesMeta:
666
+ '@types/react':
667
+ optional: true
668
+
669
+ '@radix-ui/react-focus-scope@1.1.7':
670
+ resolution: {integrity: sha512-t2ODlkXBQyn7jkl6TNaw/MtVEVvIGelJDCG41Okq/KwUsJBwQ4XVZsHAVUkK4mBv3ewiAS3PGuUWuY2BoK4ZUw==}
671
+ peerDependencies:
672
+ '@types/react': '*'
673
+ '@types/react-dom': '*'
674
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
675
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
676
+ peerDependenciesMeta:
677
+ '@types/react':
678
+ optional: true
679
+ '@types/react-dom':
680
+ optional: true
681
+
682
+ '@radix-ui/react-id@1.1.1':
683
+ resolution: {integrity: sha512-kGkGegYIdQsOb4XjsfM97rXsiHaBwco+hFI66oO4s9LU+PLAC5oJ7khdOVFxkhsmlbpUqDAvXw11CluXP+jkHg==}
684
+ peerDependencies:
685
+ '@types/react': '*'
686
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
687
+ peerDependenciesMeta:
688
+ '@types/react':
689
+ optional: true
690
+
691
+ '@radix-ui/react-label@2.1.7':
692
+ resolution: {integrity: sha512-YT1GqPSL8kJn20djelMX7/cTRp/Y9w5IZHvfxQTVHrOqa2yMl7i/UfMqKRU5V7mEyKTrUVgJXhNQPVCG8PBLoQ==}
693
+ peerDependencies:
694
+ '@types/react': '*'
695
+ '@types/react-dom': '*'
696
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
697
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
698
+ peerDependenciesMeta:
699
+ '@types/react':
700
+ optional: true
701
+ '@types/react-dom':
702
+ optional: true
703
+
704
+ '@radix-ui/react-menu@2.1.16':
705
+ resolution: {integrity: sha512-72F2T+PLlphrqLcAotYPp0uJMr5SjP5SL01wfEspJbru5Zs5vQaSHb4VB3ZMJPimgHHCHG7gMOeOB9H3Hdmtxg==}
706
+ peerDependencies:
707
+ '@types/react': '*'
708
+ '@types/react-dom': '*'
709
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
710
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
711
+ peerDependenciesMeta:
712
+ '@types/react':
713
+ optional: true
714
+ '@types/react-dom':
715
+ optional: true
716
+
717
+ '@radix-ui/react-popper@1.2.8':
718
+ resolution: {integrity: sha512-0NJQ4LFFUuWkE7Oxf0htBKS6zLkkjBH+hM1uk7Ng705ReR8m/uelduy1DBo0PyBXPKVnBA6YBlU94MBGXrSBCw==}
719
+ peerDependencies:
720
+ '@types/react': '*'
721
+ '@types/react-dom': '*'
722
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
723
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
724
+ peerDependenciesMeta:
725
+ '@types/react':
726
+ optional: true
727
+ '@types/react-dom':
728
+ optional: true
729
+
730
+ '@radix-ui/react-portal@1.1.9':
731
+ resolution: {integrity: sha512-bpIxvq03if6UNwXZ+HTK71JLh4APvnXntDc6XOX8UVq4XQOVl7lwok0AvIl+b8zgCw3fSaVTZMpAPPagXbKmHQ==}
732
+ peerDependencies:
733
+ '@types/react': '*'
734
+ '@types/react-dom': '*'
735
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
736
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
737
+ peerDependenciesMeta:
738
+ '@types/react':
739
+ optional: true
740
+ '@types/react-dom':
741
+ optional: true
742
+
743
+ '@radix-ui/react-presence@1.1.5':
744
+ resolution: {integrity: sha512-/jfEwNDdQVBCNvjkGit4h6pMOzq8bHkopq458dPt2lMjx+eBQUohZNG9A7DtO/O5ukSbxuaNGXMjHicgwy6rQQ==}
745
+ peerDependencies:
746
+ '@types/react': '*'
747
+ '@types/react-dom': '*'
748
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
749
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
750
+ peerDependenciesMeta:
751
+ '@types/react':
752
+ optional: true
753
+ '@types/react-dom':
754
+ optional: true
755
+
756
+ '@radix-ui/react-primitive@2.1.3':
757
+ resolution: {integrity: sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==}
758
+ peerDependencies:
759
+ '@types/react': '*'
760
+ '@types/react-dom': '*'
761
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
762
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
763
+ peerDependenciesMeta:
764
+ '@types/react':
765
+ optional: true
766
+ '@types/react-dom':
767
+ optional: true
768
+
769
+ '@radix-ui/react-roving-focus@1.1.11':
770
+ resolution: {integrity: sha512-7A6S9jSgm/S+7MdtNDSb+IU859vQqJ/QAtcYQcfFC6W8RS4IxIZDldLR0xqCFZ6DCyrQLjLPsxtTNch5jVA4lA==}
771
+ peerDependencies:
772
+ '@types/react': '*'
773
+ '@types/react-dom': '*'
774
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
775
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
776
+ peerDependenciesMeta:
777
+ '@types/react':
778
+ optional: true
779
+ '@types/react-dom':
780
+ optional: true
781
+
782
+ '@radix-ui/react-select@2.2.6':
783
+ resolution: {integrity: sha512-I30RydO+bnn2PQztvo25tswPH+wFBjehVGtmagkU78yMdwTwVf12wnAOF+AeP8S2N8xD+5UPbGhkUfPyvT+mwQ==}
784
+ peerDependencies:
785
+ '@types/react': '*'
786
+ '@types/react-dom': '*'
787
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
788
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
789
+ peerDependenciesMeta:
790
+ '@types/react':
791
+ optional: true
792
+ '@types/react-dom':
793
+ optional: true
794
+
795
+ '@radix-ui/react-separator@1.1.7':
796
+ resolution: {integrity: sha512-0HEb8R9E8A+jZjvmFCy/J4xhbXy3TV+9XSnGJ3KvTtjlIUy/YQ/p6UYZvi7YbeoeXdyU9+Y3scizK6hkY37baA==}
797
+ peerDependencies:
798
+ '@types/react': '*'
799
+ '@types/react-dom': '*'
800
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
801
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
802
+ peerDependenciesMeta:
803
+ '@types/react':
804
+ optional: true
805
+ '@types/react-dom':
806
+ optional: true
807
+
808
+ '@radix-ui/react-slot@1.2.3':
809
+ resolution: {integrity: sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==}
810
+ peerDependencies:
811
+ '@types/react': '*'
812
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
813
+ peerDependenciesMeta:
814
+ '@types/react':
815
+ optional: true
816
+
817
+ '@radix-ui/react-tabs@1.1.13':
818
+ resolution: {integrity: sha512-7xdcatg7/U+7+Udyoj2zodtI9H/IIopqo+YOIcZOq1nJwXWBZ9p8xiu5llXlekDbZkca79a/fozEYQXIA4sW6A==}
819
+ peerDependencies:
820
+ '@types/react': '*'
821
+ '@types/react-dom': '*'
822
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
823
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
824
+ peerDependenciesMeta:
825
+ '@types/react':
826
+ optional: true
827
+ '@types/react-dom':
828
+ optional: true
829
+
830
+ '@radix-ui/react-toggle-group@1.1.11':
831
+ resolution: {integrity: sha512-5umnS0T8JQzQT6HbPyO7Hh9dgd82NmS36DQr+X/YJ9ctFNCiiQd6IJAYYZ33LUwm8M+taCz5t2ui29fHZc4Y6Q==}
832
+ peerDependencies:
833
+ '@types/react': '*'
834
+ '@types/react-dom': '*'
835
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
836
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
837
+ peerDependenciesMeta:
838
+ '@types/react':
839
+ optional: true
840
+ '@types/react-dom':
841
+ optional: true
842
+
843
+ '@radix-ui/react-toggle@1.1.10':
844
+ resolution: {integrity: sha512-lS1odchhFTeZv3xwHH31YPObmJn8gOg7Lq12inrr0+BH/l3Tsq32VfjqH1oh80ARM3mlkfMic15n0kg4sD1poQ==}
845
+ peerDependencies:
846
+ '@types/react': '*'
847
+ '@types/react-dom': '*'
848
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
849
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
850
+ peerDependenciesMeta:
851
+ '@types/react':
852
+ optional: true
853
+ '@types/react-dom':
854
+ optional: true
855
+
856
+ '@radix-ui/react-tooltip@1.2.8':
857
+ resolution: {integrity: sha512-tY7sVt1yL9ozIxvmbtN5qtmH2krXcBCfjEiCgKGLqunJHvgvZG2Pcl2oQ3kbcZARb1BGEHdkLzcYGO8ynVlieg==}
858
+ peerDependencies:
859
+ '@types/react': '*'
860
+ '@types/react-dom': '*'
861
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
862
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
863
+ peerDependenciesMeta:
864
+ '@types/react':
865
+ optional: true
866
+ '@types/react-dom':
867
+ optional: true
868
+
869
+ '@radix-ui/react-use-callback-ref@1.1.1':
870
+ resolution: {integrity: sha512-FkBMwD+qbGQeMu1cOHnuGB6x4yzPjho8ap5WtbEJ26umhgqVXbhekKUQO+hZEL1vU92a3wHwdp0HAcqAUF5iDg==}
871
+ peerDependencies:
872
+ '@types/react': '*'
873
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
874
+ peerDependenciesMeta:
875
+ '@types/react':
876
+ optional: true
877
+
878
+ '@radix-ui/react-use-controllable-state@1.2.2':
879
+ resolution: {integrity: sha512-BjasUjixPFdS+NKkypcyyN5Pmg83Olst0+c6vGov0diwTEo6mgdqVR6hxcEgFuh4QrAs7Rc+9KuGJ9TVCj0Zzg==}
880
+ peerDependencies:
881
+ '@types/react': '*'
882
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
883
+ peerDependenciesMeta:
884
+ '@types/react':
885
+ optional: true
886
+
887
+ '@radix-ui/react-use-effect-event@0.0.2':
888
+ resolution: {integrity: sha512-Qp8WbZOBe+blgpuUT+lw2xheLP8q0oatc9UpmiemEICxGvFLYmHm9QowVZGHtJlGbS6A6yJ3iViad/2cVjnOiA==}
889
+ peerDependencies:
890
+ '@types/react': '*'
891
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
892
+ peerDependenciesMeta:
893
+ '@types/react':
894
+ optional: true
895
+
896
+ '@radix-ui/react-use-escape-keydown@1.1.1':
897
+ resolution: {integrity: sha512-Il0+boE7w/XebUHyBjroE+DbByORGR9KKmITzbR7MyQ4akpORYP/ZmbhAr0DG7RmmBqoOnZdy2QlvajJ2QA59g==}
898
+ peerDependencies:
899
+ '@types/react': '*'
900
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
901
+ peerDependenciesMeta:
902
+ '@types/react':
903
+ optional: true
904
+
905
+ '@radix-ui/react-use-is-hydrated@0.1.0':
906
+ resolution: {integrity: sha512-U+UORVEq+cTnRIaostJv9AGdV3G6Y+zbVd+12e18jQ5A3c0xL03IhnHuiU4UV69wolOQp5GfR58NW/EgdQhwOA==}
907
+ peerDependencies:
908
+ '@types/react': '*'
909
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
910
+ peerDependenciesMeta:
911
+ '@types/react':
912
+ optional: true
913
+
914
+ '@radix-ui/react-use-layout-effect@1.1.1':
915
+ resolution: {integrity: sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ==}
916
+ peerDependencies:
917
+ '@types/react': '*'
918
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
919
+ peerDependenciesMeta:
920
+ '@types/react':
921
+ optional: true
922
+
923
+ '@radix-ui/react-use-previous@1.1.1':
924
+ resolution: {integrity: sha512-2dHfToCj/pzca2Ck724OZ5L0EVrr3eHRNsG/b3xQJLA2hZpVCS99bLAX+hm1IHXDEnzU6by5z/5MIY794/a8NQ==}
925
+ peerDependencies:
926
+ '@types/react': '*'
927
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
928
+ peerDependenciesMeta:
929
+ '@types/react':
930
+ optional: true
931
+
932
+ '@radix-ui/react-use-rect@1.1.1':
933
+ resolution: {integrity: sha512-QTYuDesS0VtuHNNvMh+CjlKJ4LJickCMUAqjlE3+j8w+RlRpwyX3apEQKGFzbZGdo7XNG1tXa+bQqIE7HIXT2w==}
934
+ peerDependencies:
935
+ '@types/react': '*'
936
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
937
+ peerDependenciesMeta:
938
+ '@types/react':
939
+ optional: true
940
+
941
+ '@radix-ui/react-use-size@1.1.1':
942
+ resolution: {integrity: sha512-ewrXRDTAqAXlkl6t/fkXWNAhFX9I+CkKlw6zjEwk86RSPKwZr3xpBRso655aqYafwtnbpHLj6toFzmd6xdVptQ==}
943
+ peerDependencies:
944
+ '@types/react': '*'
945
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
946
+ peerDependenciesMeta:
947
+ '@types/react':
948
+ optional: true
949
+
950
+ '@radix-ui/react-visually-hidden@1.2.3':
951
+ resolution: {integrity: sha512-pzJq12tEaaIhqjbzpCuv/OypJY/BPavOofm+dbab+MHLajy277+1lLm6JFcGgF5eskJ6mquGirhXY2GD/8u8Ug==}
952
+ peerDependencies:
953
+ '@types/react': '*'
954
+ '@types/react-dom': '*'
955
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
956
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
957
+ peerDependenciesMeta:
958
+ '@types/react':
959
+ optional: true
960
+ '@types/react-dom':
961
+ optional: true
962
+
963
+ '@radix-ui/rect@1.1.1':
964
+ resolution: {integrity: sha512-HPwpGIzkl28mWyZqG52jiqDJ12waP11Pa1lGoiyUkIEuMLBP0oeK/C89esbXrxsky5we7dfd8U58nm0SgAWpVw==}
965
+
966
+ '@react-router/dev@7.8.2':
967
+ resolution: {integrity: sha512-9ilgQoNhvgvUyQKDapALt9qVO3GpSw9ng5X2BwIhLIwqh8CTyRM/jz5cK53p5yzGiVeyx9njXXfeuxUlvQgJuA==}
968
+ engines: {node: '>=20.0.0'}
969
+ hasBin: true
970
+ peerDependencies:
971
+ '@react-router/serve': ^7.8.2
972
+ react-router: ^7.8.2
973
+ typescript: ^5.1.0
974
+ vite: ^5.1.0 || ^6.0.0 || ^7.0.0
975
+ wrangler: ^3.28.2 || ^4.0.0
976
+ peerDependenciesMeta:
977
+ '@react-router/serve':
978
+ optional: true
979
+ typescript:
980
+ optional: true
981
+ wrangler:
982
+ optional: true
983
+
984
+ '@react-router/express@7.8.2':
985
+ resolution: {integrity: sha512-AJUNsE5Q+vD8TsNlKTw2MGUUnp/QJGlRV1jG2ItV30lwIx2wE7d4NHx/jWkGZIEblHQBTpodcp6MFirZXbisJw==}
986
+ engines: {node: '>=20.0.0'}
987
+ peerDependencies:
988
+ express: ^4.17.1 || ^5
989
+ react-router: 7.8.2
990
+ typescript: ^5.1.0
991
+ peerDependenciesMeta:
992
+ typescript:
993
+ optional: true
994
+
995
+ '@react-router/node@7.8.2':
996
+ resolution: {integrity: sha512-FNepNg4Aya6V0ZxD/+uObtqxtMXcsBGa0ax9PznUh5qr8g4M6Xo9IN+soLb1tghz6iS/F9djFyhJ/lDkF77dEw==}
997
+ engines: {node: '>=20.0.0'}
998
+ peerDependencies:
999
+ react-router: 7.8.2
1000
+ typescript: ^5.1.0
1001
+ peerDependenciesMeta:
1002
+ typescript:
1003
+ optional: true
1004
+
1005
+ '@react-router/serve@7.8.2':
1006
+ resolution: {integrity: sha512-1AwKjBWmyWWA7dGCRjn2glWwO6cA7dDX7roP1tosFi5cu1EvqHaqelRH6K6MZSV10Tv6oPtFG7rgV+rCafJvyw==}
1007
+ engines: {node: '>=20.0.0'}
1008
+ hasBin: true
1009
+ peerDependencies:
1010
+ react-router: 7.8.2
1011
+
1012
+ '@rollup/rollup-android-arm-eabi@4.50.1':
1013
+ resolution: {integrity: sha512-HJXwzoZN4eYTdD8bVV22DN8gsPCAj3V20NHKOs8ezfXanGpmVPR7kalUHd+Y31IJp9stdB87VKPFbsGY3H/2ag==}
1014
+ cpu: [arm]
1015
+ os: [android]
1016
+
1017
+ '@rollup/rollup-android-arm64@4.50.1':
1018
+ resolution: {integrity: sha512-PZlsJVcjHfcH53mOImyt3bc97Ep3FJDXRpk9sMdGX0qgLmY0EIWxCag6EigerGhLVuL8lDVYNnSo8qnTElO4xw==}
1019
+ cpu: [arm64]
1020
+ os: [android]
1021
+
1022
+ '@rollup/rollup-darwin-arm64@4.50.1':
1023
+ resolution: {integrity: sha512-xc6i2AuWh++oGi4ylOFPmzJOEeAa2lJeGUGb4MudOtgfyyjr4UPNK+eEWTPLvmPJIY/pgw6ssFIox23SyrkkJw==}
1024
+ cpu: [arm64]
1025
+ os: [darwin]
1026
+
1027
+ '@rollup/rollup-darwin-x64@4.50.1':
1028
+ resolution: {integrity: sha512-2ofU89lEpDYhdLAbRdeyz/kX3Y2lpYc6ShRnDjY35bZhd2ipuDMDi6ZTQ9NIag94K28nFMofdnKeHR7BT0CATw==}
1029
+ cpu: [x64]
1030
+ os: [darwin]
1031
+
1032
+ '@rollup/rollup-freebsd-arm64@4.50.1':
1033
+ resolution: {integrity: sha512-wOsE6H2u6PxsHY/BeFHA4VGQN3KUJFZp7QJBmDYI983fgxq5Th8FDkVuERb2l9vDMs1D5XhOrhBrnqcEY6l8ZA==}
1034
+ cpu: [arm64]
1035
+ os: [freebsd]
1036
+
1037
+ '@rollup/rollup-freebsd-x64@4.50.1':
1038
+ resolution: {integrity: sha512-A/xeqaHTlKbQggxCqispFAcNjycpUEHP52mwMQZUNqDUJFFYtPHCXS1VAG29uMlDzIVr+i00tSFWFLivMcoIBQ==}
1039
+ cpu: [x64]
1040
+ os: [freebsd]
1041
+
1042
+ '@rollup/rollup-linux-arm-gnueabihf@4.50.1':
1043
+ resolution: {integrity: sha512-54v4okehwl5TaSIkpp97rAHGp7t3ghinRd/vyC1iXqXMfjYUTm7TfYmCzXDoHUPTTf36L8pr0E7YsD3CfB3ZDg==}
1044
+ cpu: [arm]
1045
+ os: [linux]
1046
+
1047
+ '@rollup/rollup-linux-arm-musleabihf@4.50.1':
1048
+ resolution: {integrity: sha512-p/LaFyajPN/0PUHjv8TNyxLiA7RwmDoVY3flXHPSzqrGcIp/c2FjwPPP5++u87DGHtw+5kSH5bCJz0mvXngYxw==}
1049
+ cpu: [arm]
1050
+ os: [linux]
1051
+
1052
+ '@rollup/rollup-linux-arm64-gnu@4.50.1':
1053
+ resolution: {integrity: sha512-2AbMhFFkTo6Ptna1zO7kAXXDLi7H9fGTbVaIq2AAYO7yzcAsuTNWPHhb2aTA6GPiP+JXh85Y8CiS54iZoj4opw==}
1054
+ cpu: [arm64]
1055
+ os: [linux]
1056
+
1057
+ '@rollup/rollup-linux-arm64-musl@4.50.1':
1058
+ resolution: {integrity: sha512-Cgef+5aZwuvesQNw9eX7g19FfKX5/pQRIyhoXLCiBOrWopjo7ycfB292TX9MDcDijiuIJlx1IzJz3IoCPfqs9w==}
1059
+ cpu: [arm64]
1060
+ os: [linux]
1061
+
1062
+ '@rollup/rollup-linux-loongarch64-gnu@4.50.1':
1063
+ resolution: {integrity: sha512-RPhTwWMzpYYrHrJAS7CmpdtHNKtt2Ueo+BlLBjfZEhYBhK00OsEqM08/7f+eohiF6poe0YRDDd8nAvwtE/Y62Q==}
1064
+ cpu: [loong64]
1065
+ os: [linux]
1066
+
1067
+ '@rollup/rollup-linux-ppc64-gnu@4.50.1':
1068
+ resolution: {integrity: sha512-eSGMVQw9iekut62O7eBdbiccRguuDgiPMsw++BVUg+1K7WjZXHOg/YOT9SWMzPZA+w98G+Fa1VqJgHZOHHnY0Q==}
1069
+ cpu: [ppc64]
1070
+ os: [linux]
1071
+
1072
+ '@rollup/rollup-linux-riscv64-gnu@4.50.1':
1073
+ resolution: {integrity: sha512-S208ojx8a4ciIPrLgazF6AgdcNJzQE4+S9rsmOmDJkusvctii+ZvEuIC4v/xFqzbuP8yDjn73oBlNDgF6YGSXQ==}
1074
+ cpu: [riscv64]
1075
+ os: [linux]
1076
+
1077
+ '@rollup/rollup-linux-riscv64-musl@4.50.1':
1078
+ resolution: {integrity: sha512-3Ag8Ls1ggqkGUvSZWYcdgFwriy2lWo+0QlYgEFra/5JGtAd6C5Hw59oojx1DeqcA2Wds2ayRgvJ4qxVTzCHgzg==}
1079
+ cpu: [riscv64]
1080
+ os: [linux]
1081
+
1082
+ '@rollup/rollup-linux-s390x-gnu@4.50.1':
1083
+ resolution: {integrity: sha512-t9YrKfaxCYe7l7ldFERE1BRg/4TATxIg+YieHQ966jwvo7ddHJxPj9cNFWLAzhkVsbBvNA4qTbPVNsZKBO4NSg==}
1084
+ cpu: [s390x]
1085
+ os: [linux]
1086
+
1087
+ '@rollup/rollup-linux-x64-gnu@4.50.1':
1088
+ resolution: {integrity: sha512-MCgtFB2+SVNuQmmjHf+wfI4CMxy3Tk8XjA5Z//A0AKD7QXUYFMQcns91K6dEHBvZPCnhJSyDWLApk40Iq/H3tA==}
1089
+ cpu: [x64]
1090
+ os: [linux]
1091
+
1092
+ '@rollup/rollup-linux-x64-musl@4.50.1':
1093
+ resolution: {integrity: sha512-nEvqG+0jeRmqaUMuwzlfMKwcIVffy/9KGbAGyoa26iu6eSngAYQ512bMXuqqPrlTyfqdlB9FVINs93j534UJrg==}
1094
+ cpu: [x64]
1095
+ os: [linux]
1096
+
1097
+ '@rollup/rollup-openharmony-arm64@4.50.1':
1098
+ resolution: {integrity: sha512-RDsLm+phmT3MJd9SNxA9MNuEAO/J2fhW8GXk62G/B4G7sLVumNFbRwDL6v5NrESb48k+QMqdGbHgEtfU0LCpbA==}
1099
+ cpu: [arm64]
1100
+ os: [openharmony]
1101
+
1102
+ '@rollup/rollup-win32-arm64-msvc@4.50.1':
1103
+ resolution: {integrity: sha512-hpZB/TImk2FlAFAIsoElM3tLzq57uxnGYwplg6WDyAxbYczSi8O2eQ+H2Lx74504rwKtZ3N2g4bCUkiamzS6TQ==}
1104
+ cpu: [arm64]
1105
+ os: [win32]
1106
+
1107
+ '@rollup/rollup-win32-ia32-msvc@4.50.1':
1108
+ resolution: {integrity: sha512-SXjv8JlbzKM0fTJidX4eVsH+Wmnp0/WcD8gJxIZyR6Gay5Qcsmdbi9zVtnbkGPG8v2vMR1AD06lGWy5FLMcG7A==}
1109
+ cpu: [ia32]
1110
+ os: [win32]
1111
+
1112
+ '@rollup/rollup-win32-x64-msvc@4.50.1':
1113
+ resolution: {integrity: sha512-StxAO/8ts62KZVRAm4JZYq9+NqNsV7RvimNK+YM7ry//zebEH6meuugqW/P5OFUCjyQgui+9fUxT6d5NShvMvA==}
1114
+ cpu: [x64]
1115
+ os: [win32]
1116
+
1117
+ '@tabler/icons-react@3.34.1':
1118
+ resolution: {integrity: sha512-Ld6g0NqOO05kyyHsfU8h787PdHBm7cFmOycQSIrGp45XcXYDuOK2Bs0VC4T2FWSKZ6bx5g04imfzazf/nqtk1A==}
1119
+ peerDependencies:
1120
+ react: '>= 16'
1121
+
1122
+ '@tabler/icons@3.34.1':
1123
+ resolution: {integrity: sha512-9gTnUvd7Fd/DmQgr3MKY+oJLa1RfNsQo8c/ir3TJAWghOuZXodbtbVp0QBY2DxWuuvrSZFys0HEbv1CoiI5y6A==}
1124
+
1125
+ '@tailwindcss/node@4.1.13':
1126
+ resolution: {integrity: sha512-eq3ouolC1oEFOAvOMOBAmfCIqZBJuvWvvYWh5h5iOYfe1HFC6+GZ6EIL0JdM3/niGRJmnrOc+8gl9/HGUaaptw==}
1127
+
1128
+ '@tailwindcss/oxide-android-arm64@4.1.13':
1129
+ resolution: {integrity: sha512-BrpTrVYyejbgGo57yc8ieE+D6VT9GOgnNdmh5Sac6+t0m+v+sKQevpFVpwX3pBrM2qKrQwJ0c5eDbtjouY/+ew==}
1130
+ engines: {node: '>= 10'}
1131
+ cpu: [arm64]
1132
+ os: [android]
1133
+
1134
+ '@tailwindcss/oxide-darwin-arm64@4.1.13':
1135
+ resolution: {integrity: sha512-YP+Jksc4U0KHcu76UhRDHq9bx4qtBftp9ShK/7UGfq0wpaP96YVnnjFnj3ZFrUAjc5iECzODl/Ts0AN7ZPOANQ==}
1136
+ engines: {node: '>= 10'}
1137
+ cpu: [arm64]
1138
+ os: [darwin]
1139
+
1140
+ '@tailwindcss/oxide-darwin-x64@4.1.13':
1141
+ resolution: {integrity: sha512-aAJ3bbwrn/PQHDxCto9sxwQfT30PzyYJFG0u/BWZGeVXi5Hx6uuUOQEI2Fa43qvmUjTRQNZnGqe9t0Zntexeuw==}
1142
+ engines: {node: '>= 10'}
1143
+ cpu: [x64]
1144
+ os: [darwin]
1145
+
1146
+ '@tailwindcss/oxide-freebsd-x64@4.1.13':
1147
+ resolution: {integrity: sha512-Wt8KvASHwSXhKE/dJLCCWcTSVmBj3xhVhp/aF3RpAhGeZ3sVo7+NTfgiN8Vey/Fi8prRClDs6/f0KXPDTZE6nQ==}
1148
+ engines: {node: '>= 10'}
1149
+ cpu: [x64]
1150
+ os: [freebsd]
1151
+
1152
+ '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.13':
1153
+ resolution: {integrity: sha512-mbVbcAsW3Gkm2MGwA93eLtWrwajz91aXZCNSkGTx/R5eb6KpKD5q8Ueckkh9YNboU8RH7jiv+ol/I7ZyQ9H7Bw==}
1154
+ engines: {node: '>= 10'}
1155
+ cpu: [arm]
1156
+ os: [linux]
1157
+
1158
+ '@tailwindcss/oxide-linux-arm64-gnu@4.1.13':
1159
+ resolution: {integrity: sha512-wdtfkmpXiwej/yoAkrCP2DNzRXCALq9NVLgLELgLim1QpSfhQM5+ZxQQF8fkOiEpuNoKLp4nKZ6RC4kmeFH0HQ==}
1160
+ engines: {node: '>= 10'}
1161
+ cpu: [arm64]
1162
+ os: [linux]
1163
+
1164
+ '@tailwindcss/oxide-linux-arm64-musl@4.1.13':
1165
+ resolution: {integrity: sha512-hZQrmtLdhyqzXHB7mkXfq0IYbxegaqTmfa1p9MBj72WPoDD3oNOh1Lnxf6xZLY9C3OV6qiCYkO1i/LrzEdW2mg==}
1166
+ engines: {node: '>= 10'}
1167
+ cpu: [arm64]
1168
+ os: [linux]
1169
+
1170
+ '@tailwindcss/oxide-linux-x64-gnu@4.1.13':
1171
+ resolution: {integrity: sha512-uaZTYWxSXyMWDJZNY1Ul7XkJTCBRFZ5Fo6wtjrgBKzZLoJNrG+WderJwAjPzuNZOnmdrVg260DKwXCFtJ/hWRQ==}
1172
+ engines: {node: '>= 10'}
1173
+ cpu: [x64]
1174
+ os: [linux]
1175
+
1176
+ '@tailwindcss/oxide-linux-x64-musl@4.1.13':
1177
+ resolution: {integrity: sha512-oXiPj5mi4Hdn50v5RdnuuIms0PVPI/EG4fxAfFiIKQh5TgQgX7oSuDWntHW7WNIi/yVLAiS+CRGW4RkoGSSgVQ==}
1178
+ engines: {node: '>= 10'}
1179
+ cpu: [x64]
1180
+ os: [linux]
1181
+
1182
+ '@tailwindcss/oxide-wasm32-wasi@4.1.13':
1183
+ resolution: {integrity: sha512-+LC2nNtPovtrDwBc/nqnIKYh/W2+R69FA0hgoeOn64BdCX522u19ryLh3Vf3F8W49XBcMIxSe665kwy21FkhvA==}
1184
+ engines: {node: '>=14.0.0'}
1185
+ cpu: [wasm32]
1186
+ bundledDependencies:
1187
+ - '@napi-rs/wasm-runtime'
1188
+ - '@emnapi/core'
1189
+ - '@emnapi/runtime'
1190
+ - '@tybys/wasm-util'
1191
+ - '@emnapi/wasi-threads'
1192
+ - tslib
1193
+
1194
+ '@tailwindcss/oxide-win32-arm64-msvc@4.1.13':
1195
+ resolution: {integrity: sha512-dziTNeQXtoQ2KBXmrjCxsuPk3F3CQ/yb7ZNZNA+UkNTeiTGgfeh+gH5Pi7mRncVgcPD2xgHvkFCh/MhZWSgyQg==}
1196
+ engines: {node: '>= 10'}
1197
+ cpu: [arm64]
1198
+ os: [win32]
1199
+
1200
+ '@tailwindcss/oxide-win32-x64-msvc@4.1.13':
1201
+ resolution: {integrity: sha512-3+LKesjXydTkHk5zXX01b5KMzLV1xl2mcktBJkje7rhFUpUlYJy7IMOLqjIRQncLTa1WZZiFY/foAeB5nmaiTw==}
1202
+ engines: {node: '>= 10'}
1203
+ cpu: [x64]
1204
+ os: [win32]
1205
+
1206
+ '@tailwindcss/oxide@4.1.13':
1207
+ resolution: {integrity: sha512-CPgsM1IpGRa880sMbYmG1s4xhAy3xEt1QULgTJGQmZUeNgXFR7s1YxYygmJyBGtou4SyEosGAGEeYqY7R53bIA==}
1208
+ engines: {node: '>= 10'}
1209
+
1210
+ '@tailwindcss/vite@4.1.13':
1211
+ resolution: {integrity: sha512-0PmqLQ010N58SbMTJ7BVJ4I2xopiQn/5i6nlb4JmxzQf8zcS5+m2Cv6tqh+sfDwtIdjoEnOvwsGQ1hkUi8QEHQ==}
1212
+ peerDependencies:
1213
+ vite: ^5.2.0 || ^6 || ^7
1214
+
1215
+ '@tanstack/query-core@5.59.0':
1216
+ resolution: {integrity: sha512-WGD8uIhX6/deH/tkZqPNcRyAhDUqs729bWKoByYHSogcshXfFbppOdTER5+qY7mFvu8KEFJwT0nxr8RfPTVh0Q==}
1217
+
1218
+ '@tanstack/query-devtools@5.58.0':
1219
+ resolution: {integrity: sha512-iFdQEFXaYYxqgrv63ots+65FGI+tNp5ZS5PdMU1DWisxk3fez5HG3FyVlbUva+RdYS5hSLbxZ9aw3yEs97GNTw==}
1220
+
1221
+ '@tanstack/react-query-devtools@5.59.0':
1222
+ resolution: {integrity: sha512-Kz7577FQGU8qmJxROIT/aOwmkTcxfBqgTP6r1AIvuJxVMVHPkp8eQxWQ7BnfBsy/KTJHiV9vMtRVo1+R1tB3vg==}
1223
+ peerDependencies:
1224
+ '@tanstack/react-query': ^5.59.0
1225
+ react: ^18 || ^19
1226
+
1227
+ '@tanstack/react-query@5.59.0':
1228
+ resolution: {integrity: sha512-YDXp3OORbYR+8HNQx+lf4F73NoiCmCcSvZvgxE29OifmQFk0sBlO26NWLHpcNERo92tVk3w+JQ53/vkcRUY1hA==}
1229
+ peerDependencies:
1230
+ react: ^18 || ^19
1231
+
1232
+ '@tanstack/react-table@8.21.3':
1233
+ resolution: {integrity: sha512-5nNMTSETP4ykGegmVkhjcS8tTLW6Vl4axfEGQN3v0zdHYbK4UfoqfPChclTrJ4EoK9QynqAu9oUf8VEmrpZ5Ww==}
1234
+ engines: {node: '>=12'}
1235
+ peerDependencies:
1236
+ react: '>=16.8'
1237
+ react-dom: '>=16.8'
1238
+
1239
+ '@tanstack/table-core@8.21.3':
1240
+ resolution: {integrity: sha512-ldZXEhOBb8Is7xLs01fR3YEc3DERiz5silj8tnGkFZytt1abEvl/GhUmCE0PMLaMPTa3Jk4HbKmRlHmu+gCftg==}
1241
+ engines: {node: '>=12'}
1242
+
1243
+ '@types/d3-array@3.2.1':
1244
+ resolution: {integrity: sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==}
1245
+
1246
+ '@types/d3-color@3.1.3':
1247
+ resolution: {integrity: sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==}
1248
+
1249
+ '@types/d3-ease@3.0.2':
1250
+ resolution: {integrity: sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==}
1251
+
1252
+ '@types/d3-interpolate@3.0.4':
1253
+ resolution: {integrity: sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==}
1254
+
1255
+ '@types/d3-path@3.1.1':
1256
+ resolution: {integrity: sha512-VMZBYyQvbGmWyWVea0EHs/BwLgxc+MKi1zLDCONksozI4YJMcTt8ZEuIR4Sb1MMTE8MMW49v0IwI5+b7RmfWlg==}
1257
+
1258
+ '@types/d3-scale@4.0.9':
1259
+ resolution: {integrity: sha512-dLmtwB8zkAeO/juAMfnV+sItKjlsw2lKdZVVy6LRr0cBmegxSABiLEpGVmSJJ8O08i4+sGR6qQtb6WtuwJdvVw==}
1260
+
1261
+ '@types/d3-shape@3.1.7':
1262
+ resolution: {integrity: sha512-VLvUQ33C+3J+8p+Daf+nYSOsjB4GXp19/S/aGo60m9h1v6XaxjiT82lKVWJCfzhtuZ3yD7i/TPeC/fuKLLOSmg==}
1263
+
1264
+ '@types/d3-time@3.0.4':
1265
+ resolution: {integrity: sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g==}
1266
+
1267
+ '@types/d3-timer@3.0.2':
1268
+ resolution: {integrity: sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==}
1269
+
1270
+ '@types/estree@1.0.8':
1271
+ resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
1272
+
1273
+ '@types/node@20.19.13':
1274
+ resolution: {integrity: sha512-yCAeZl7a0DxgNVteXFHt9+uyFbqXGy/ShC4BlcHkoE0AfGXYv/BUiplV72DjMYXHDBXFjhvr6DD1NiRVfB4j8g==}
1275
+
1276
+ '@types/prop-types@15.7.15':
1277
+ resolution: {integrity: sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==}
1278
+
1279
+ '@types/react-dom@18.3.7':
1280
+ resolution: {integrity: sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ==}
1281
+ peerDependencies:
1282
+ '@types/react': ^18.0.0
1283
+
1284
+ '@types/react@18.3.24':
1285
+ resolution: {integrity: sha512-0dLEBsA1kI3OezMBF8nSsb7Nk19ZnsyE1LLhB8r27KbgU5H4pvuqZLdtE+aUkJVoXgTVuA+iLIwmZ0TuK4tx6A==}
1286
+
1287
+ '@vitejs/plugin-rsc@0.4.11':
1288
+ resolution: {integrity: sha512-+4H4wLi+Y9yF58znBfKgGfX8zcqUGt8ngnmNgzrdGdF1SVz7EO0sg7WnhK5fFVHt6fUxsVEjmEabsCWHKPL1Tw==}
1289
+ peerDependencies:
1290
+ react: '*'
1291
+ react-dom: '*'
1292
+ vite: '*'
1293
+
1294
+ accepts@1.3.8:
1295
+ resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
1296
+ engines: {node: '>= 0.6'}
1297
+
1298
+ ansi-regex@5.0.1:
1299
+ resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
1300
+ engines: {node: '>=8'}
1301
+
1302
+ ansi-regex@6.2.2:
1303
+ resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==}
1304
+ engines: {node: '>=12'}
1305
+
1306
+ ansi-styles@4.3.0:
1307
+ resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
1308
+ engines: {node: '>=8'}
1309
+
1310
+ ansi-styles@6.2.3:
1311
+ resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==}
1312
+ engines: {node: '>=12'}
1313
+
1314
+ arg@5.0.2:
1315
+ resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
1316
+
1317
+ aria-hidden@1.2.6:
1318
+ resolution: {integrity: sha512-ik3ZgC9dY/lYVVM++OISsaYDeg1tb0VtP5uL3ouh1koGOaUMDPpbFIei4JkFimWUFPn90sbMNMXQAIVOlnYKJA==}
1319
+ engines: {node: '>=10'}
1320
+
1321
+ array-flatten@1.1.1:
1322
+ resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==}
1323
+
1324
+ asynckit@0.4.0:
1325
+ resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
1326
+
1327
+ axios@1.11.0:
1328
+ resolution: {integrity: sha512-1Lx3WLFQWm3ooKDYZD1eXmoGO9fxYQjrycfHFC8P0sCfQVXyROp0p9PFWBehewBOdCwHc+f/b8I0fMto5eSfwA==}
1329
+
1330
+ babel-dead-code-elimination@1.0.10:
1331
+ resolution: {integrity: sha512-DV5bdJZTzZ0zn0DC24v3jD7Mnidh6xhKa4GfKCbq3sfW8kaWhDdZjP3i81geA8T33tdYqWKw4D3fVv0CwEgKVA==}
1332
+
1333
+ balanced-match@1.0.2:
1334
+ resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
1335
+
1336
+ basic-auth@2.0.1:
1337
+ resolution: {integrity: sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==}
1338
+ engines: {node: '>= 0.8'}
1339
+
1340
+ body-parser@1.20.3:
1341
+ resolution: {integrity: sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==}
1342
+ engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
1343
+
1344
+ brace-expansion@2.0.2:
1345
+ resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==}
1346
+
1347
+ browserslist@4.25.4:
1348
+ resolution: {integrity: sha512-4jYpcjabC606xJ3kw2QwGEZKX0Aw7sgQdZCvIK9dhVSPh76BKo+C+btT1RRofH7B+8iNpEbgGNVWiLki5q93yg==}
1349
+ engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
1350
+ hasBin: true
1351
+
1352
+ buffer-from@1.1.2:
1353
+ resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
1354
+
1355
+ bytes@3.1.2:
1356
+ resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
1357
+ engines: {node: '>= 0.8'}
1358
+
1359
+ cac@6.7.14:
1360
+ resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
1361
+ engines: {node: '>=8'}
1362
+
1363
+ call-bind-apply-helpers@1.0.2:
1364
+ resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
1365
+ engines: {node: '>= 0.4'}
1366
+
1367
+ call-bound@1.0.4:
1368
+ resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==}
1369
+ engines: {node: '>= 0.4'}
1370
+
1371
+ caniuse-lite@1.0.30001741:
1372
+ resolution: {integrity: sha512-QGUGitqsc8ARjLdgAfxETDhRbJ0REsP6O3I96TAth/mVjh2cYzN2u+3AzPP3aVSm2FehEItaJw1xd+IGBXWeSw==}
1373
+
1374
+ chokidar@4.0.3:
1375
+ resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
1376
+ engines: {node: '>= 14.16.0'}
1377
+
1378
+ chownr@3.0.0:
1379
+ resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==}
1380
+ engines: {node: '>=18'}
1381
+
1382
+ class-variance-authority@0.7.1:
1383
+ resolution: {integrity: sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==}
1384
+
1385
+ clsx@2.1.1:
1386
+ resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
1387
+ engines: {node: '>=6'}
1388
+
1389
+ color-convert@2.0.1:
1390
+ resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
1391
+ engines: {node: '>=7.0.0'}
1392
+
1393
+ color-name@1.1.4:
1394
+ resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
1395
+
1396
+ combined-stream@1.0.8:
1397
+ resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
1398
+ engines: {node: '>= 0.8'}
1399
+
1400
+ compressible@2.0.18:
1401
+ resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==}
1402
+ engines: {node: '>= 0.6'}
1403
+
1404
+ compression@1.8.1:
1405
+ resolution: {integrity: sha512-9mAqGPHLakhCLeNyxPkK4xVo746zQ/czLH1Ky+vkitMnWfWZps8r0qXuwhwizagCRttsL4lfG4pIOvaWLpAP0w==}
1406
+ engines: {node: '>= 0.8.0'}
1407
+
1408
+ content-disposition@0.5.4:
1409
+ resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==}
1410
+ engines: {node: '>= 0.6'}
1411
+
1412
+ content-type@1.0.5:
1413
+ resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==}
1414
+ engines: {node: '>= 0.6'}
1415
+
1416
+ convert-source-map@2.0.0:
1417
+ resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
1418
+
1419
+ cookie-signature@1.0.6:
1420
+ resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==}
1421
+
1422
+ cookie@0.7.1:
1423
+ resolution: {integrity: sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==}
1424
+ engines: {node: '>= 0.6'}
1425
+
1426
+ cookie@1.0.2:
1427
+ resolution: {integrity: sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA==}
1428
+ engines: {node: '>=18'}
1429
+
1430
+ cross-spawn@7.0.6:
1431
+ resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
1432
+ engines: {node: '>= 8'}
1433
+
1434
+ csstype@3.1.3:
1435
+ resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
1436
+
1437
+ d3-array@3.2.4:
1438
+ resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==}
1439
+ engines: {node: '>=12'}
1440
+
1441
+ d3-color@3.1.0:
1442
+ resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==}
1443
+ engines: {node: '>=12'}
1444
+
1445
+ d3-ease@3.0.1:
1446
+ resolution: {integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==}
1447
+ engines: {node: '>=12'}
1448
+
1449
+ d3-format@3.1.0:
1450
+ resolution: {integrity: sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==}
1451
+ engines: {node: '>=12'}
1452
+
1453
+ d3-interpolate@3.0.1:
1454
+ resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==}
1455
+ engines: {node: '>=12'}
1456
+
1457
+ d3-path@3.1.0:
1458
+ resolution: {integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==}
1459
+ engines: {node: '>=12'}
1460
+
1461
+ d3-scale@4.0.2:
1462
+ resolution: {integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==}
1463
+ engines: {node: '>=12'}
1464
+
1465
+ d3-shape@3.2.0:
1466
+ resolution: {integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==}
1467
+ engines: {node: '>=12'}
1468
+
1469
+ d3-time-format@4.1.0:
1470
+ resolution: {integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==}
1471
+ engines: {node: '>=12'}
1472
+
1473
+ d3-time@3.1.0:
1474
+ resolution: {integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==}
1475
+ engines: {node: '>=12'}
1476
+
1477
+ d3-timer@3.0.1:
1478
+ resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==}
1479
+ engines: {node: '>=12'}
1480
+
1481
+ debug@2.6.9:
1482
+ resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
1483
+ peerDependencies:
1484
+ supports-color: '*'
1485
+ peerDependenciesMeta:
1486
+ supports-color:
1487
+ optional: true
1488
+
1489
+ debug@4.4.1:
1490
+ resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==}
1491
+ engines: {node: '>=6.0'}
1492
+ peerDependencies:
1493
+ supports-color: '*'
1494
+ peerDependenciesMeta:
1495
+ supports-color:
1496
+ optional: true
1497
+
1498
+ decimal.js-light@2.5.1:
1499
+ resolution: {integrity: sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==}
1500
+
1501
+ dedent@1.7.0:
1502
+ resolution: {integrity: sha512-HGFtf8yhuhGhqO07SV79tRp+br4MnbdjeVxotpn1QBl30pcLLCQjX5b2295ll0fv8RKDKsmWYrl05usHM9CewQ==}
1503
+ peerDependencies:
1504
+ babel-plugin-macros: ^3.1.0
1505
+ peerDependenciesMeta:
1506
+ babel-plugin-macros:
1507
+ optional: true
1508
+
1509
+ delayed-stream@1.0.0:
1510
+ resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
1511
+ engines: {node: '>=0.4.0'}
1512
+
1513
+ depd@2.0.0:
1514
+ resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
1515
+ engines: {node: '>= 0.8'}
1516
+
1517
+ destroy@1.2.0:
1518
+ resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
1519
+ engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
1520
+
1521
+ detect-libc@2.0.4:
1522
+ resolution: {integrity: sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==}
1523
+ engines: {node: '>=8'}
1524
+
1525
+ detect-node-es@1.1.0:
1526
+ resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==}
1527
+
1528
+ dom-helpers@5.2.1:
1529
+ resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==}
1530
+
1531
+ dunder-proto@1.0.1:
1532
+ resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
1533
+ engines: {node: '>= 0.4'}
1534
+
1535
+ eastasianwidth@0.2.0:
1536
+ resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
1537
+
1538
+ ee-first@1.1.1:
1539
+ resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
1540
+
1541
+ electron-to-chromium@1.5.218:
1542
+ resolution: {integrity: sha512-uwwdN0TUHs8u6iRgN8vKeWZMRll4gBkz+QMqdS7DDe49uiK68/UX92lFb61oiFPrpYZNeZIqa4bA7O6Aiasnzg==}
1543
+
1544
+ emoji-regex@8.0.0:
1545
+ resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
1546
+
1547
+ emoji-regex@9.2.2:
1548
+ resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
1549
+
1550
+ encodeurl@1.0.2:
1551
+ resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
1552
+ engines: {node: '>= 0.8'}
1553
+
1554
+ encodeurl@2.0.0:
1555
+ resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
1556
+ engines: {node: '>= 0.8'}
1557
+
1558
+ enhanced-resolve@5.18.3:
1559
+ resolution: {integrity: sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==}
1560
+ engines: {node: '>=10.13.0'}
1561
+
1562
+ err-code@2.0.3:
1563
+ resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==}
1564
+
1565
+ es-define-property@1.0.1:
1566
+ resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
1567
+ engines: {node: '>= 0.4'}
1568
+
1569
+ es-errors@1.3.0:
1570
+ resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
1571
+ engines: {node: '>= 0.4'}
1572
+
1573
+ es-module-lexer@1.7.0:
1574
+ resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==}
1575
+
1576
+ es-object-atoms@1.1.1:
1577
+ resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
1578
+ engines: {node: '>= 0.4'}
1579
+
1580
+ es-set-tostringtag@2.1.0:
1581
+ resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
1582
+ engines: {node: '>= 0.4'}
1583
+
1584
+ esbuild@0.25.9:
1585
+ resolution: {integrity: sha512-CRbODhYyQx3qp7ZEwzxOk4JBqmD/seJrzPa/cGjY1VtIn5E09Oi9/dB4JwctnfZ8Q8iT7rioVv5k/FNT/uf54g==}
1586
+ engines: {node: '>=18'}
1587
+ hasBin: true
1588
+
1589
+ escalade@3.2.0:
1590
+ resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
1591
+ engines: {node: '>=6'}
1592
+
1593
+ escape-html@1.0.3:
1594
+ resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
1595
+
1596
+ estree-walker@3.0.3:
1597
+ resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
1598
+
1599
+ etag@1.8.1:
1600
+ resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
1601
+ engines: {node: '>= 0.6'}
1602
+
1603
+ eventemitter3@4.0.7:
1604
+ resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
1605
+
1606
+ exit-hook@2.2.1:
1607
+ resolution: {integrity: sha512-eNTPlAD67BmP31LDINZ3U7HSF8l57TxOY2PmBJ1shpCvpnxBF93mWCE8YHBnXs8qiUZJc9WDcWIeC3a2HIAMfw==}
1608
+ engines: {node: '>=6'}
1609
+
1610
+ express@4.21.2:
1611
+ resolution: {integrity: sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==}
1612
+ engines: {node: '>= 0.10.0'}
1613
+
1614
+ fast-equals@5.2.2:
1615
+ resolution: {integrity: sha512-V7/RktU11J3I36Nwq2JnZEM7tNm17eBJz+u25qdxBZeCKiX6BkVSZQjwWIr+IobgnZy+ag73tTZgZi7tr0LrBw==}
1616
+ engines: {node: '>=6.0.0'}
1617
+
1618
+ fdir@6.5.0:
1619
+ resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
1620
+ engines: {node: '>=12.0.0'}
1621
+ peerDependencies:
1622
+ picomatch: ^3 || ^4
1623
+ peerDependenciesMeta:
1624
+ picomatch:
1625
+ optional: true
1626
+
1627
+ finalhandler@1.3.1:
1628
+ resolution: {integrity: sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==}
1629
+ engines: {node: '>= 0.8'}
1630
+
1631
+ follow-redirects@1.15.11:
1632
+ resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==}
1633
+ engines: {node: '>=4.0'}
1634
+ peerDependencies:
1635
+ debug: '*'
1636
+ peerDependenciesMeta:
1637
+ debug:
1638
+ optional: true
1639
+
1640
+ foreground-child@3.3.1:
1641
+ resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==}
1642
+ engines: {node: '>=14'}
1643
+
1644
+ form-data@4.0.4:
1645
+ resolution: {integrity: sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==}
1646
+ engines: {node: '>= 6'}
1647
+
1648
+ forwarded@0.2.0:
1649
+ resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
1650
+ engines: {node: '>= 0.6'}
1651
+
1652
+ fresh@0.5.2:
1653
+ resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
1654
+ engines: {node: '>= 0.6'}
1655
+
1656
+ fsevents@2.3.3:
1657
+ resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
1658
+ engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
1659
+ os: [darwin]
1660
+
1661
+ function-bind@1.1.2:
1662
+ resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
1663
+
1664
+ gensync@1.0.0-beta.2:
1665
+ resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
1666
+ engines: {node: '>=6.9.0'}
1667
+
1668
+ get-intrinsic@1.3.0:
1669
+ resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
1670
+ engines: {node: '>= 0.4'}
1671
+
1672
+ get-nonce@1.0.1:
1673
+ resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==}
1674
+ engines: {node: '>=6'}
1675
+
1676
+ get-port@5.1.1:
1677
+ resolution: {integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==}
1678
+ engines: {node: '>=8'}
1679
+
1680
+ get-proto@1.0.1:
1681
+ resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
1682
+ engines: {node: '>= 0.4'}
1683
+
1684
+ glob@10.4.5:
1685
+ resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
1686
+ hasBin: true
1687
+
1688
+ globrex@0.1.2:
1689
+ resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==}
1690
+
1691
+ gopd@1.2.0:
1692
+ resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
1693
+ engines: {node: '>= 0.4'}
1694
+
1695
+ graceful-fs@4.2.11:
1696
+ resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
1697
+
1698
+ has-symbols@1.1.0:
1699
+ resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
1700
+ engines: {node: '>= 0.4'}
1701
+
1702
+ has-tostringtag@1.0.2:
1703
+ resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
1704
+ engines: {node: '>= 0.4'}
1705
+
1706
+ hasown@2.0.2:
1707
+ resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
1708
+ engines: {node: '>= 0.4'}
1709
+
1710
+ hosted-git-info@6.1.3:
1711
+ resolution: {integrity: sha512-HVJyzUrLIL1c0QmviVh5E8VGyUS7xCFPS6yydaVd1UegW+ibV/CohqTH9MkOLDp5o+rb82DMo77PTuc9F/8GKw==}
1712
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
1713
+
1714
+ http-errors@2.0.0:
1715
+ resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==}
1716
+ engines: {node: '>= 0.8'}
1717
+
1718
+ iconv-lite@0.4.24:
1719
+ resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
1720
+ engines: {node: '>=0.10.0'}
1721
+
1722
+ inherits@2.0.4:
1723
+ resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
1724
+
1725
+ internmap@2.0.3:
1726
+ resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==}
1727
+ engines: {node: '>=12'}
1728
+
1729
+ ipaddr.js@1.9.1:
1730
+ resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
1731
+ engines: {node: '>= 0.10'}
1732
+
1733
+ is-core-module@2.16.1:
1734
+ resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
1735
+ engines: {node: '>= 0.4'}
1736
+
1737
+ is-fullwidth-code-point@3.0.0:
1738
+ resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
1739
+ engines: {node: '>=8'}
1740
+
1741
+ is-reference@3.0.3:
1742
+ resolution: {integrity: sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw==}
1743
+
1744
+ isbot@5.1.30:
1745
+ resolution: {integrity: sha512-3wVJEonAns1OETX83uWsk5IAne2S5zfDcntD2hbtU23LelSqNXzXs9zKjMPOLMzroCgIjCfjYAEHrd2D6FOkiA==}
1746
+ engines: {node: '>=18'}
1747
+
1748
+ isexe@2.0.0:
1749
+ resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
1750
+
1751
+ jackspeak@3.4.3:
1752
+ resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
1753
+
1754
+ jiti@2.5.1:
1755
+ resolution: {integrity: sha512-twQoecYPiVA5K/h6SxtORw/Bs3ar+mLUtoPSc7iMXzQzK8d7eJ/R09wmTwAjiamETn1cXYPGfNnu7DMoHgu12w==}
1756
+ hasBin: true
1757
+
1758
+ js-tokens@4.0.0:
1759
+ resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
1760
+
1761
+ jsesc@3.0.2:
1762
+ resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==}
1763
+ engines: {node: '>=6'}
1764
+ hasBin: true
1765
+
1766
+ json-parse-even-better-errors@3.0.2:
1767
+ resolution: {integrity: sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==}
1768
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
1769
+
1770
+ json5@2.2.3:
1771
+ resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
1772
+ engines: {node: '>=6'}
1773
+ hasBin: true
1774
+
1775
+ lightningcss-darwin-arm64@1.30.1:
1776
+ resolution: {integrity: sha512-c8JK7hyE65X1MHMN+Viq9n11RRC7hgin3HhYKhrMyaXflk5GVplZ60IxyoVtzILeKr+xAJwg6zK6sjTBJ0FKYQ==}
1777
+ engines: {node: '>= 12.0.0'}
1778
+ cpu: [arm64]
1779
+ os: [darwin]
1780
+
1781
+ lightningcss-darwin-x64@1.30.1:
1782
+ resolution: {integrity: sha512-k1EvjakfumAQoTfcXUcHQZhSpLlkAuEkdMBsI/ivWw9hL+7FtilQc0Cy3hrx0AAQrVtQAbMI7YjCgYgvn37PzA==}
1783
+ engines: {node: '>= 12.0.0'}
1784
+ cpu: [x64]
1785
+ os: [darwin]
1786
+
1787
+ lightningcss-freebsd-x64@1.30.1:
1788
+ resolution: {integrity: sha512-kmW6UGCGg2PcyUE59K5r0kWfKPAVy4SltVeut+umLCFoJ53RdCUWxcRDzO1eTaxf/7Q2H7LTquFHPL5R+Gjyig==}
1789
+ engines: {node: '>= 12.0.0'}
1790
+ cpu: [x64]
1791
+ os: [freebsd]
1792
+
1793
+ lightningcss-linux-arm-gnueabihf@1.30.1:
1794
+ resolution: {integrity: sha512-MjxUShl1v8pit+6D/zSPq9S9dQ2NPFSQwGvxBCYaBYLPlCWuPh9/t1MRS8iUaR8i+a6w7aps+B4N0S1TYP/R+Q==}
1795
+ engines: {node: '>= 12.0.0'}
1796
+ cpu: [arm]
1797
+ os: [linux]
1798
+
1799
+ lightningcss-linux-arm64-gnu@1.30.1:
1800
+ resolution: {integrity: sha512-gB72maP8rmrKsnKYy8XUuXi/4OctJiuQjcuqWNlJQ6jZiWqtPvqFziskH3hnajfvKB27ynbVCucKSm2rkQp4Bw==}
1801
+ engines: {node: '>= 12.0.0'}
1802
+ cpu: [arm64]
1803
+ os: [linux]
1804
+
1805
+ lightningcss-linux-arm64-musl@1.30.1:
1806
+ resolution: {integrity: sha512-jmUQVx4331m6LIX+0wUhBbmMX7TCfjF5FoOH6SD1CttzuYlGNVpA7QnrmLxrsub43ClTINfGSYyHe2HWeLl5CQ==}
1807
+ engines: {node: '>= 12.0.0'}
1808
+ cpu: [arm64]
1809
+ os: [linux]
1810
+
1811
+ lightningcss-linux-x64-gnu@1.30.1:
1812
+ resolution: {integrity: sha512-piWx3z4wN8J8z3+O5kO74+yr6ze/dKmPnI7vLqfSqI8bccaTGY5xiSGVIJBDd5K5BHlvVLpUB3S2YCfelyJ1bw==}
1813
+ engines: {node: '>= 12.0.0'}
1814
+ cpu: [x64]
1815
+ os: [linux]
1816
+
1817
+ lightningcss-linux-x64-musl@1.30.1:
1818
+ resolution: {integrity: sha512-rRomAK7eIkL+tHY0YPxbc5Dra2gXlI63HL+v1Pdi1a3sC+tJTcFrHX+E86sulgAXeI7rSzDYhPSeHHjqFhqfeQ==}
1819
+ engines: {node: '>= 12.0.0'}
1820
+ cpu: [x64]
1821
+ os: [linux]
1822
+
1823
+ lightningcss-win32-arm64-msvc@1.30.1:
1824
+ resolution: {integrity: sha512-mSL4rqPi4iXq5YVqzSsJgMVFENoa4nGTT/GjO2c0Yl9OuQfPsIfncvLrEW6RbbB24WtZ3xP/2CCmI3tNkNV4oA==}
1825
+ engines: {node: '>= 12.0.0'}
1826
+ cpu: [arm64]
1827
+ os: [win32]
1828
+
1829
+ lightningcss-win32-x64-msvc@1.30.1:
1830
+ resolution: {integrity: sha512-PVqXh48wh4T53F/1CCu8PIPCxLzWyCnn/9T5W1Jpmdy5h9Cwd+0YQS6/LwhHXSafuc61/xg9Lv5OrCby6a++jg==}
1831
+ engines: {node: '>= 12.0.0'}
1832
+ cpu: [x64]
1833
+ os: [win32]
1834
+
1835
+ lightningcss@1.30.1:
1836
+ resolution: {integrity: sha512-xi6IyHML+c9+Q3W0S4fCQJOym42pyurFiJUHEcEyHS0CeKzia4yZDEsLlqOFykxOdHpNy0NmvVO31vcSqAxJCg==}
1837
+ engines: {node: '>= 12.0.0'}
1838
+
1839
+ lodash@4.17.21:
1840
+ resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
1841
+
1842
+ loose-envify@1.4.0:
1843
+ resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
1844
+ hasBin: true
1845
+
1846
+ lru-cache@10.4.3:
1847
+ resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
1848
+
1849
+ lru-cache@5.1.1:
1850
+ resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
1851
+
1852
+ lru-cache@7.18.3:
1853
+ resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==}
1854
+ engines: {node: '>=12'}
1855
+
1856
+ lucide-react@0.544.0:
1857
+ resolution: {integrity: sha512-t5tS44bqd825zAW45UQxpG2CvcC4urOwn2TrwSH8u+MjeE+1NnWl6QqeQ/6NdjMqdOygyiT9p3Ev0p1NJykxjw==}
1858
+ peerDependencies:
1859
+ react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0
1860
+
1861
+ magic-string@0.30.19:
1862
+ resolution: {integrity: sha512-2N21sPY9Ws53PZvsEpVtNuSW+ScYbQdp4b9qUaL+9QkHUrGFKo56Lg9Emg5s9V/qrtNBmiR01sYhUOwu3H+VOw==}
1863
+
1864
+ math-intrinsics@1.1.0:
1865
+ resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
1866
+ engines: {node: '>= 0.4'}
1867
+
1868
+ media-typer@0.3.0:
1869
+ resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==}
1870
+ engines: {node: '>= 0.6'}
1871
+
1872
+ merge-descriptors@1.0.3:
1873
+ resolution: {integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==}
1874
+
1875
+ methods@1.1.2:
1876
+ resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==}
1877
+ engines: {node: '>= 0.6'}
1878
+
1879
+ mime-db@1.52.0:
1880
+ resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
1881
+ engines: {node: '>= 0.6'}
1882
+
1883
+ mime-db@1.54.0:
1884
+ resolution: {integrity: sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==}
1885
+ engines: {node: '>= 0.6'}
1886
+
1887
+ mime-types@2.1.35:
1888
+ resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
1889
+ engines: {node: '>= 0.6'}
1890
+
1891
+ mime@1.6.0:
1892
+ resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
1893
+ engines: {node: '>=4'}
1894
+ hasBin: true
1895
+
1896
+ minimatch@9.0.5:
1897
+ resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
1898
+ engines: {node: '>=16 || 14 >=14.17'}
1899
+
1900
+ minipass@7.1.2:
1901
+ resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
1902
+ engines: {node: '>=16 || 14 >=14.17'}
1903
+
1904
+ minizlib@3.0.2:
1905
+ resolution: {integrity: sha512-oG62iEk+CYt5Xj2YqI5Xi9xWUeZhDI8jjQmC5oThVH5JGCTgIjr7ciJDzC7MBzYd//WvR1OTmP5Q38Q8ShQtVA==}
1906
+ engines: {node: '>= 18'}
1907
+
1908
+ mkdirp@3.0.1:
1909
+ resolution: {integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==}
1910
+ engines: {node: '>=10'}
1911
+ hasBin: true
1912
+
1913
+ morgan@1.10.1:
1914
+ resolution: {integrity: sha512-223dMRJtI/l25dJKWpgij2cMtywuG/WiUKXdvwfbhGKBhy1puASqXwFzmWZ7+K73vUPoR7SS2Qz2cI/g9MKw0A==}
1915
+ engines: {node: '>= 0.8.0'}
1916
+
1917
+ ms@2.0.0:
1918
+ resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
1919
+
1920
+ ms@2.1.3:
1921
+ resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
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
+
1928
+ negotiator@0.6.3:
1929
+ resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
1930
+ engines: {node: '>= 0.6'}
1931
+
1932
+ negotiator@0.6.4:
1933
+ resolution: {integrity: sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==}
1934
+ engines: {node: '>= 0.6'}
1935
+
1936
+ next-themes@0.4.6:
1937
+ resolution: {integrity: sha512-pZvgD5L0IEvX5/9GWyHMf3m8BKiVQwsCMHfoFosXtXBMnaS0ZnIJ9ST4b4NqLVKDEm8QBxoNNGNaBv2JNF6XNA==}
1938
+ peerDependencies:
1939
+ react: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc
1940
+ react-dom: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc
1941
+
1942
+ node-releases@2.0.20:
1943
+ resolution: {integrity: sha512-7gK6zSXEH6neM212JgfYFXe+GmZQM+fia5SsusuBIUgnPheLFBmIPhtFoAQRj8/7wASYQnbDlHPVwY0BefoFgA==}
1944
+
1945
+ normalize-package-data@5.0.0:
1946
+ resolution: {integrity: sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==}
1947
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
1948
+
1949
+ npm-install-checks@6.3.0:
1950
+ resolution: {integrity: sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==}
1951
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
1952
+
1953
+ npm-normalize-package-bin@3.0.1:
1954
+ resolution: {integrity: sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==}
1955
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
1956
+
1957
+ npm-package-arg@10.1.0:
1958
+ resolution: {integrity: sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==}
1959
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
1960
+
1961
+ npm-pick-manifest@8.0.2:
1962
+ resolution: {integrity: sha512-1dKY+86/AIiq1tkKVD3l0WI+Gd3vkknVGAggsFeBkTvbhMQ1OND/LKkYv4JtXPKUJ8bOTCyLiqEg2P6QNdK+Gg==}
1963
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
1964
+
1965
+ object-assign@4.1.1:
1966
+ resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
1967
+ engines: {node: '>=0.10.0'}
1968
+
1969
+ object-inspect@1.13.4:
1970
+ resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==}
1971
+ engines: {node: '>= 0.4'}
1972
+
1973
+ on-finished@2.3.0:
1974
+ resolution: {integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==}
1975
+ engines: {node: '>= 0.8'}
1976
+
1977
+ on-finished@2.4.1:
1978
+ resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
1979
+ engines: {node: '>= 0.8'}
1980
+
1981
+ on-headers@1.1.0:
1982
+ resolution: {integrity: sha512-737ZY3yNnXy37FHkQxPzt4UZ2UWPWiCZWLvFZ4fu5cueciegX0zGPnrlY6bwRg4FdQOe9YU8MkmJwGhoMybl8A==}
1983
+ engines: {node: '>= 0.8'}
1984
+
1985
+ package-json-from-dist@1.0.1:
1986
+ resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
1987
+
1988
+ parseurl@1.3.3:
1989
+ resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
1990
+ engines: {node: '>= 0.8'}
1991
+
1992
+ path-key@3.1.1:
1993
+ resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
1994
+ engines: {node: '>=8'}
1995
+
1996
+ path-scurry@1.11.1:
1997
+ resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
1998
+ engines: {node: '>=16 || 14 >=14.18'}
1999
+
2000
+ path-to-regexp@0.1.12:
2001
+ resolution: {integrity: sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==}
2002
+
2003
+ pathe@1.1.2:
2004
+ resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
2005
+
2006
+ pathe@2.0.3:
2007
+ resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
2008
+
2009
+ periscopic@4.0.2:
2010
+ resolution: {integrity: sha512-sqpQDUy8vgB7ycLkendSKS6HnVz1Rneoc3Rc+ZBUCe2pbqlVuCC5vF52l0NJ1aiMg/r1qfYF9/myz8CZeI2rjA==}
2011
+
2012
+ picocolors@1.1.1:
2013
+ resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
2014
+
2015
+ picomatch@4.0.3:
2016
+ resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
2017
+ engines: {node: '>=12'}
2018
+
2019
+ postcss@8.5.6:
2020
+ resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
2021
+ engines: {node: ^10 || ^12 || >=14}
2022
+
2023
+ prettier@3.6.2:
2024
+ resolution: {integrity: sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==}
2025
+ engines: {node: '>=14'}
2026
+ hasBin: true
2027
+
2028
+ proc-log@3.0.0:
2029
+ resolution: {integrity: sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==}
2030
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
2031
+
2032
+ promise-inflight@1.0.1:
2033
+ resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==}
2034
+ peerDependencies:
2035
+ bluebird: '*'
2036
+ peerDependenciesMeta:
2037
+ bluebird:
2038
+ optional: true
2039
+
2040
+ promise-retry@2.0.1:
2041
+ resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==}
2042
+ engines: {node: '>=10'}
2043
+
2044
+ prop-types@15.8.1:
2045
+ resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
2046
+
2047
+ proxy-addr@2.0.7:
2048
+ resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
2049
+ engines: {node: '>= 0.10'}
2050
+
2051
+ proxy-from-env@1.1.0:
2052
+ resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
2053
+
2054
+ qs@6.13.0:
2055
+ resolution: {integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==}
2056
+ engines: {node: '>=0.6'}
2057
+
2058
+ range-parser@1.2.1:
2059
+ resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
2060
+ engines: {node: '>= 0.6'}
2061
+
2062
+ raw-body@2.5.2:
2063
+ resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==}
2064
+ engines: {node: '>= 0.8'}
2065
+
2066
+ react-dom@18.3.1:
2067
+ resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==}
2068
+ peerDependencies:
2069
+ react: ^18.3.1
2070
+
2071
+ react-is@16.13.1:
2072
+ resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
2073
+
2074
+ react-is@18.3.1:
2075
+ resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==}
2076
+
2077
+ react-refresh@0.14.2:
2078
+ resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==}
2079
+ engines: {node: '>=0.10.0'}
2080
+
2081
+ react-remove-scroll-bar@2.3.8:
2082
+ resolution: {integrity: sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==}
2083
+ engines: {node: '>=10'}
2084
+ peerDependencies:
2085
+ '@types/react': '*'
2086
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
2087
+ peerDependenciesMeta:
2088
+ '@types/react':
2089
+ optional: true
2090
+
2091
+ react-remove-scroll@2.7.1:
2092
+ resolution: {integrity: sha512-HpMh8+oahmIdOuS5aFKKY6Pyog+FNaZV/XyJOq7b4YFwsFHe5yYfdbIalI4k3vU2nSDql7YskmUseHsRrJqIPA==}
2093
+ engines: {node: '>=10'}
2094
+ peerDependencies:
2095
+ '@types/react': '*'
2096
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
2097
+ peerDependenciesMeta:
2098
+ '@types/react':
2099
+ optional: true
2100
+
2101
+ react-router@7.8.2:
2102
+ resolution: {integrity: sha512-7M2fR1JbIZ/jFWqelpvSZx+7vd7UlBTfdZqf6OSdF9g6+sfdqJDAWcak6ervbHph200ePlu+7G8LdoiC3ReyAQ==}
2103
+ engines: {node: '>=20.0.0'}
2104
+ peerDependencies:
2105
+ react: '>=18'
2106
+ react-dom: '>=18'
2107
+ peerDependenciesMeta:
2108
+ react-dom:
2109
+ optional: true
2110
+
2111
+ react-smooth@4.0.4:
2112
+ resolution: {integrity: sha512-gnGKTpYwqL0Iii09gHobNolvX4Kiq4PKx6eWBCYYix+8cdw+cGo3do906l1NBPKkSWx1DghC1dlWG9L2uGd61Q==}
2113
+ peerDependencies:
2114
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
2115
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
2116
+
2117
+ react-style-singleton@2.2.3:
2118
+ resolution: {integrity: sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==}
2119
+ engines: {node: '>=10'}
2120
+ peerDependencies:
2121
+ '@types/react': '*'
2122
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
2123
+ peerDependenciesMeta:
2124
+ '@types/react':
2125
+ optional: true
2126
+
2127
+ react-transition-group@4.4.5:
2128
+ resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==}
2129
+ peerDependencies:
2130
+ react: '>=16.6.0'
2131
+ react-dom: '>=16.6.0'
2132
+
2133
+ react@18.3.1:
2134
+ resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
2135
+ engines: {node: '>=0.10.0'}
2136
+
2137
+ readdirp@4.1.2:
2138
+ resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
2139
+ engines: {node: '>= 14.18.0'}
2140
+
2141
+ recharts-scale@0.4.5:
2142
+ resolution: {integrity: sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w==}
2143
+
2144
+ recharts@2.15.4:
2145
+ resolution: {integrity: sha512-UT/q6fwS3c1dHbXv2uFgYJ9BMFHu3fwnd7AYZaEQhXuYQ4hgsxLvsUXzGdKeZrW5xopzDCvuA2N41WJ88I7zIw==}
2146
+ engines: {node: '>=14'}
2147
+ peerDependencies:
2148
+ react: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
2149
+ react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
2150
+
2151
+ retry@0.12.0:
2152
+ resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==}
2153
+ engines: {node: '>= 4'}
2154
+
2155
+ rollup@4.50.1:
2156
+ resolution: {integrity: sha512-78E9voJHwnXQMiQdiqswVLZwJIzdBKJ1GdI5Zx6XwoFKUIk09/sSrr+05QFzvYb8q6Y9pPV45zzDuYa3907TZA==}
2157
+ engines: {node: '>=18.0.0', npm: '>=8.0.0'}
2158
+ hasBin: true
2159
+
2160
+ safe-buffer@5.1.2:
2161
+ resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
2162
+
2163
+ safe-buffer@5.2.1:
2164
+ resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
2165
+
2166
+ safer-buffer@2.1.2:
2167
+ resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
2168
+
2169
+ scheduler@0.23.2:
2170
+ resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==}
2171
+
2172
+ semver@6.3.1:
2173
+ resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
2174
+ hasBin: true
2175
+
2176
+ semver@7.7.2:
2177
+ resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==}
2178
+ engines: {node: '>=10'}
2179
+ hasBin: true
2180
+
2181
+ send@0.19.0:
2182
+ resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==}
2183
+ engines: {node: '>= 0.8.0'}
2184
+
2185
+ serve-static@1.16.2:
2186
+ resolution: {integrity: sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==}
2187
+ engines: {node: '>= 0.8.0'}
2188
+
2189
+ set-cookie-parser@2.7.1:
2190
+ resolution: {integrity: sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ==}
2191
+
2192
+ setprototypeof@1.2.0:
2193
+ resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
2194
+
2195
+ shebang-command@2.0.0:
2196
+ resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
2197
+ engines: {node: '>=8'}
2198
+
2199
+ shebang-regex@3.0.0:
2200
+ resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
2201
+ engines: {node: '>=8'}
2202
+
2203
+ side-channel-list@1.0.0:
2204
+ resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==}
2205
+ engines: {node: '>= 0.4'}
2206
+
2207
+ side-channel-map@1.0.1:
2208
+ resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==}
2209
+ engines: {node: '>= 0.4'}
2210
+
2211
+ side-channel-weakmap@1.0.2:
2212
+ resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==}
2213
+ engines: {node: '>= 0.4'}
2214
+
2215
+ side-channel@1.1.0:
2216
+ resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==}
2217
+ engines: {node: '>= 0.4'}
2218
+
2219
+ signal-exit@4.1.0:
2220
+ resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
2221
+ engines: {node: '>=14'}
2222
+
2223
+ sonner@2.0.7:
2224
+ resolution: {integrity: sha512-W6ZN4p58k8aDKA4XPcx2hpIQXBRAgyiWVkYhT7CvK6D3iAu7xjvVyhQHg2/iaKJZ1XVJ4r7XuwGL+WGEK37i9w==}
2225
+ peerDependencies:
2226
+ react: ^18.0.0 || ^19.0.0 || ^19.0.0-rc
2227
+ react-dom: ^18.0.0 || ^19.0.0 || ^19.0.0-rc
2228
+
2229
+ source-map-js@1.2.1:
2230
+ resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
2231
+ engines: {node: '>=0.10.0'}
2232
+
2233
+ source-map-support@0.5.21:
2234
+ resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
2235
+
2236
+ source-map@0.6.1:
2237
+ resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
2238
+ engines: {node: '>=0.10.0'}
2239
+
2240
+ spdx-correct@3.2.0:
2241
+ resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==}
2242
+
2243
+ spdx-exceptions@2.5.0:
2244
+ resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==}
2245
+
2246
+ spdx-expression-parse@3.0.1:
2247
+ resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
2248
+
2249
+ spdx-license-ids@3.0.22:
2250
+ resolution: {integrity: sha512-4PRT4nh1EImPbt2jASOKHX7PB7I+e4IWNLvkKFDxNhJlfjbYlleYQh285Z/3mPTHSAK/AvdMmw5BNNuYH8ShgQ==}
2251
+
2252
+ statuses@2.0.1:
2253
+ resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
2254
+ engines: {node: '>= 0.8'}
2255
+
2256
+ string-width@4.2.3:
2257
+ resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
2258
+ engines: {node: '>=8'}
2259
+
2260
+ string-width@5.1.2:
2261
+ resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
2262
+ engines: {node: '>=12'}
2263
+
2264
+ strip-ansi@6.0.1:
2265
+ resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
2266
+ engines: {node: '>=8'}
2267
+
2268
+ strip-ansi@7.1.2:
2269
+ resolution: {integrity: sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==}
2270
+ engines: {node: '>=12'}
2271
+
2272
+ tailwind-merge@3.3.1:
2273
+ resolution: {integrity: sha512-gBXpgUm/3rp1lMZZrM/w7D8GKqshif0zAymAhbCyIt8KMe+0v9DQ7cdYLR4FHH/cKpdTXb+A/tKKU3eolfsI+g==}
2274
+
2275
+ tailwindcss@4.1.13:
2276
+ resolution: {integrity: sha512-i+zidfmTqtwquj4hMEwdjshYYgMbOrPzb9a0M3ZgNa0JMoZeFC6bxZvO8yr8ozS6ix2SDz0+mvryPeBs2TFE+w==}
2277
+
2278
+ tapable@2.2.3:
2279
+ resolution: {integrity: sha512-ZL6DDuAlRlLGghwcfmSn9sK3Hr6ArtyudlSAiCqQ6IfE+b+HHbydbYDIG15IfS5do+7XQQBdBiubF/cV2dnDzg==}
2280
+ engines: {node: '>=6'}
2281
+
2282
+ tar@7.4.3:
2283
+ resolution: {integrity: sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==}
2284
+ engines: {node: '>=18'}
2285
+
2286
+ tiny-invariant@1.3.3:
2287
+ resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
2288
+
2289
+ tinyglobby@0.2.15:
2290
+ resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
2291
+ engines: {node: '>=12.0.0'}
2292
+
2293
+ toidentifier@1.0.1:
2294
+ resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
2295
+ engines: {node: '>=0.6'}
2296
+
2297
+ tsconfck@3.1.6:
2298
+ resolution: {integrity: sha512-ks6Vjr/jEw0P1gmOVwutM3B7fWxoWBL2KRDb1JfqGVawBmO5UsvmWOQFGHBPl5yxYz4eERr19E6L7NMv+Fej4w==}
2299
+ engines: {node: ^18 || >=20}
2300
+ hasBin: true
2301
+ peerDependencies:
2302
+ typescript: ^5.0.0
2303
+ peerDependenciesMeta:
2304
+ typescript:
2305
+ optional: true
2306
+
2307
+ tslib@2.8.1:
2308
+ resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
2309
+
2310
+ turbo-stream@3.1.0:
2311
+ resolution: {integrity: sha512-tVI25WEXl4fckNEmrq70xU1XumxUwEx/FZD5AgEcV8ri7Wvrg2o7GEq8U7htrNx3CajciGm+kDyhRf5JB6t7/A==}
2312
+
2313
+ tw-animate-css@1.3.8:
2314
+ resolution: {integrity: sha512-Qrk3PZ7l7wUcGYhwZloqfkWCmaXZAoqjkdbIDvzfGshwGtexa/DAs9koXxIkrpEasyevandomzCBAV1Yyop5rw==}
2315
+
2316
+ type-is@1.6.18:
2317
+ resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
2318
+ engines: {node: '>= 0.6'}
2319
+
2320
+ typescript@5.9.2:
2321
+ resolution: {integrity: sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==}
2322
+ engines: {node: '>=14.17'}
2323
+ hasBin: true
2324
+
2325
+ undici-types@6.21.0:
2326
+ resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==}
2327
+
2328
+ unpipe@1.0.0:
2329
+ resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
2330
+ engines: {node: '>= 0.8'}
2331
+
2332
+ update-browserslist-db@1.1.3:
2333
+ resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==}
2334
+ hasBin: true
2335
+ peerDependencies:
2336
+ browserslist: '>= 4.21.0'
2337
+
2338
+ use-callback-ref@1.3.3:
2339
+ resolution: {integrity: sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==}
2340
+ engines: {node: '>=10'}
2341
+ peerDependencies:
2342
+ '@types/react': '*'
2343
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
2344
+ peerDependenciesMeta:
2345
+ '@types/react':
2346
+ optional: true
2347
+
2348
+ use-sidecar@1.1.3:
2349
+ resolution: {integrity: sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==}
2350
+ engines: {node: '>=10'}
2351
+ peerDependencies:
2352
+ '@types/react': '*'
2353
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
2354
+ peerDependenciesMeta:
2355
+ '@types/react':
2356
+ optional: true
2357
+
2358
+ use-sync-external-store@1.5.0:
2359
+ resolution: {integrity: sha512-Rb46I4cGGVBmjamjphe8L/UnvJD+uPPtTkNvX5mZgqdbavhI4EbgIWJiIHXJ8bc/i9EQGPRh4DwEURJ552Do0A==}
2360
+ peerDependencies:
2361
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
2362
+
2363
+ utils-merge@1.0.1:
2364
+ resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
2365
+ engines: {node: '>= 0.4.0'}
2366
+
2367
+ valibot@0.41.0:
2368
+ resolution: {integrity: sha512-igDBb8CTYr8YTQlOKgaN9nSS0Be7z+WRuaeYqGf3Cjz3aKmSnqEmYnkfVjzIuumGqfHpa3fLIvMEAfhrpqN8ng==}
2369
+ peerDependencies:
2370
+ typescript: '>=5'
2371
+ peerDependenciesMeta:
2372
+ typescript:
2373
+ optional: true
2374
+
2375
+ validate-npm-package-license@3.0.4:
2376
+ resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
2377
+
2378
+ validate-npm-package-name@5.0.1:
2379
+ resolution: {integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==}
2380
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
2381
+
2382
+ vary@1.1.2:
2383
+ resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
2384
+ engines: {node: '>= 0.8'}
2385
+
2386
+ vaul@1.1.2:
2387
+ resolution: {integrity: sha512-ZFkClGpWyI2WUQjdLJ/BaGuV6AVQiJ3uELGk3OYtP+B6yCO7Cmn9vPFXVJkRaGkOJu3m8bQMgtyzNHixULceQA==}
2388
+ peerDependencies:
2389
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc
2390
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc
2391
+
2392
+ victory-vendor@36.9.2:
2393
+ resolution: {integrity: sha512-PnpQQMuxlwYdocC8fIJqVXvkeViHYzotI+NJrCuav0ZYFoq912ZHBk3mCeuj+5/VpodOjPe1z0Fk2ihgzlXqjQ==}
2394
+
2395
+ vite-node@3.2.4:
2396
+ resolution: {integrity: sha512-EbKSKh+bh1E1IFxeO0pg1n4dvoOTt0UDiXMd/qn++r98+jPO1xtJilvXldeuQ8giIB5IkpjCgMleHMNEsGH6pg==}
2397
+ engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
2398
+ hasBin: true
2399
+
2400
+ vite-tsconfig-paths@5.1.4:
2401
+ resolution: {integrity: sha512-cYj0LRuLV2c2sMqhqhGpaO3LretdtMn/BVX4cPLanIZuwwrkVl+lK84E/miEXkCHWXuq65rhNN4rXsBcOB3S4w==}
2402
+ peerDependencies:
2403
+ vite: '*'
2404
+ peerDependenciesMeta:
2405
+ vite:
2406
+ optional: true
2407
+
2408
+ vite@6.3.6:
2409
+ resolution: {integrity: sha512-0msEVHJEScQbhkbVTb/4iHZdJ6SXp/AvxL2sjwYQFfBqleHtnCqv1J3sa9zbWz/6kW1m9Tfzn92vW+kZ1WV6QA==}
2410
+ engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
2411
+ hasBin: true
2412
+ peerDependencies:
2413
+ '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
2414
+ jiti: '>=1.21.0'
2415
+ less: '*'
2416
+ lightningcss: ^1.21.0
2417
+ sass: '*'
2418
+ sass-embedded: '*'
2419
+ stylus: '*'
2420
+ sugarss: '*'
2421
+ terser: ^5.16.0
2422
+ tsx: ^4.8.1
2423
+ yaml: ^2.4.2
2424
+ peerDependenciesMeta:
2425
+ '@types/node':
2426
+ optional: true
2427
+ jiti:
2428
+ optional: true
2429
+ less:
2430
+ optional: true
2431
+ lightningcss:
2432
+ optional: true
2433
+ sass:
2434
+ optional: true
2435
+ sass-embedded:
2436
+ optional: true
2437
+ stylus:
2438
+ optional: true
2439
+ sugarss:
2440
+ optional: true
2441
+ terser:
2442
+ optional: true
2443
+ tsx:
2444
+ optional: true
2445
+ yaml:
2446
+ optional: true
2447
+
2448
+ vitefu@1.1.1:
2449
+ resolution: {integrity: sha512-B/Fegf3i8zh0yFbpzZ21amWzHmuNlLlmJT6n7bu5e+pCHUKQIfXSYokrqOBGEMMe9UG2sostKQF9mml/vYaWJQ==}
2450
+ peerDependencies:
2451
+ vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0-beta.0
2452
+ peerDependenciesMeta:
2453
+ vite:
2454
+ optional: true
2455
+
2456
+ which@2.0.2:
2457
+ resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
2458
+ engines: {node: '>= 8'}
2459
+ hasBin: true
2460
+
2461
+ which@3.0.1:
2462
+ resolution: {integrity: sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==}
2463
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
2464
+ hasBin: true
2465
+
2466
+ wrap-ansi@7.0.0:
2467
+ resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
2468
+ engines: {node: '>=10'}
2469
+
2470
+ wrap-ansi@8.1.0:
2471
+ resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
2472
+ engines: {node: '>=12'}
2473
+
2474
+ yallist@3.1.1:
2475
+ resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
2476
+
2477
+ yallist@5.0.0:
2478
+ resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==}
2479
+ engines: {node: '>=18'}
2480
+
2481
+ zimmerframe@1.1.4:
2482
+ resolution: {integrity: sha512-B58NGBEoc8Y9MWWCQGl/gq9xBCe4IiKM0a2x7GZdQKOW5Exr8S1W24J6OgM1njK8xCRGvAJIL/MxXHf6SkmQKQ==}
2483
+
2484
+ zod@4.1.8:
2485
+ resolution: {integrity: sha512-5R1P+WwQqmmMIEACyzSvo4JXHY5WiAFHRMg+zBZKgKS+Q1viRa0C1hmUKtHltoIFKtIdki3pRxkmpP74jnNYHQ==}
2486
+
2487
+ snapshots:
2488
+
2489
+ '@babel/code-frame@7.27.1':
2490
+ dependencies:
2491
+ '@babel/helper-validator-identifier': 7.27.1
2492
+ js-tokens: 4.0.0
2493
+ picocolors: 1.1.1
2494
+
2495
+ '@babel/compat-data@7.28.4': {}
2496
+
2497
+ '@babel/core@7.28.4':
2498
+ dependencies:
2499
+ '@babel/code-frame': 7.27.1
2500
+ '@babel/generator': 7.28.3
2501
+ '@babel/helper-compilation-targets': 7.27.2
2502
+ '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4)
2503
+ '@babel/helpers': 7.28.4
2504
+ '@babel/parser': 7.28.4
2505
+ '@babel/template': 7.27.2
2506
+ '@babel/traverse': 7.28.4
2507
+ '@babel/types': 7.28.4
2508
+ '@jridgewell/remapping': 2.3.5
2509
+ convert-source-map: 2.0.0
2510
+ debug: 4.4.1
2511
+ gensync: 1.0.0-beta.2
2512
+ json5: 2.2.3
2513
+ semver: 6.3.1
2514
+ transitivePeerDependencies:
2515
+ - supports-color
2516
+
2517
+ '@babel/generator@7.28.3':
2518
+ dependencies:
2519
+ '@babel/parser': 7.28.4
2520
+ '@babel/types': 7.28.4
2521
+ '@jridgewell/gen-mapping': 0.3.13
2522
+ '@jridgewell/trace-mapping': 0.3.31
2523
+ jsesc: 3.0.2
2524
+
2525
+ '@babel/helper-annotate-as-pure@7.27.3':
2526
+ dependencies:
2527
+ '@babel/types': 7.28.4
2528
+
2529
+ '@babel/helper-compilation-targets@7.27.2':
2530
+ dependencies:
2531
+ '@babel/compat-data': 7.28.4
2532
+ '@babel/helper-validator-option': 7.27.1
2533
+ browserslist: 4.25.4
2534
+ lru-cache: 5.1.1
2535
+ semver: 6.3.1
2536
+
2537
+ '@babel/helper-create-class-features-plugin@7.28.3(@babel/core@7.28.4)':
2538
+ dependencies:
2539
+ '@babel/core': 7.28.4
2540
+ '@babel/helper-annotate-as-pure': 7.27.3
2541
+ '@babel/helper-member-expression-to-functions': 7.27.1
2542
+ '@babel/helper-optimise-call-expression': 7.27.1
2543
+ '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.4)
2544
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
2545
+ '@babel/traverse': 7.28.4
2546
+ semver: 6.3.1
2547
+ transitivePeerDependencies:
2548
+ - supports-color
2549
+
2550
+ '@babel/helper-globals@7.28.0': {}
2551
+
2552
+ '@babel/helper-member-expression-to-functions@7.27.1':
2553
+ dependencies:
2554
+ '@babel/traverse': 7.28.4
2555
+ '@babel/types': 7.28.4
2556
+ transitivePeerDependencies:
2557
+ - supports-color
2558
+
2559
+ '@babel/helper-module-imports@7.27.1':
2560
+ dependencies:
2561
+ '@babel/traverse': 7.28.4
2562
+ '@babel/types': 7.28.4
2563
+ transitivePeerDependencies:
2564
+ - supports-color
2565
+
2566
+ '@babel/helper-module-transforms@7.28.3(@babel/core@7.28.4)':
2567
+ dependencies:
2568
+ '@babel/core': 7.28.4
2569
+ '@babel/helper-module-imports': 7.27.1
2570
+ '@babel/helper-validator-identifier': 7.27.1
2571
+ '@babel/traverse': 7.28.4
2572
+ transitivePeerDependencies:
2573
+ - supports-color
2574
+
2575
+ '@babel/helper-optimise-call-expression@7.27.1':
2576
+ dependencies:
2577
+ '@babel/types': 7.28.4
2578
+
2579
+ '@babel/helper-plugin-utils@7.27.1': {}
2580
+
2581
+ '@babel/helper-replace-supers@7.27.1(@babel/core@7.28.4)':
2582
+ dependencies:
2583
+ '@babel/core': 7.28.4
2584
+ '@babel/helper-member-expression-to-functions': 7.27.1
2585
+ '@babel/helper-optimise-call-expression': 7.27.1
2586
+ '@babel/traverse': 7.28.4
2587
+ transitivePeerDependencies:
2588
+ - supports-color
2589
+
2590
+ '@babel/helper-skip-transparent-expression-wrappers@7.27.1':
2591
+ dependencies:
2592
+ '@babel/traverse': 7.28.4
2593
+ '@babel/types': 7.28.4
2594
+ transitivePeerDependencies:
2595
+ - supports-color
2596
+
2597
+ '@babel/helper-string-parser@7.27.1': {}
2598
+
2599
+ '@babel/helper-validator-identifier@7.27.1': {}
2600
+
2601
+ '@babel/helper-validator-option@7.27.1': {}
2602
+
2603
+ '@babel/helpers@7.28.4':
2604
+ dependencies:
2605
+ '@babel/template': 7.27.2
2606
+ '@babel/types': 7.28.4
2607
+
2608
+ '@babel/parser@7.28.4':
2609
+ dependencies:
2610
+ '@babel/types': 7.28.4
2611
+
2612
+ '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.28.4)':
2613
+ dependencies:
2614
+ '@babel/core': 7.28.4
2615
+ '@babel/helper-plugin-utils': 7.27.1
2616
+
2617
+ '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.28.4)':
2618
+ dependencies:
2619
+ '@babel/core': 7.28.4
2620
+ '@babel/helper-plugin-utils': 7.27.1
2621
+
2622
+ '@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.28.4)':
2623
+ dependencies:
2624
+ '@babel/core': 7.28.4
2625
+ '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4)
2626
+ '@babel/helper-plugin-utils': 7.27.1
2627
+ transitivePeerDependencies:
2628
+ - supports-color
2629
+
2630
+ '@babel/plugin-transform-typescript@7.28.0(@babel/core@7.28.4)':
2631
+ dependencies:
2632
+ '@babel/core': 7.28.4
2633
+ '@babel/helper-annotate-as-pure': 7.27.3
2634
+ '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4)
2635
+ '@babel/helper-plugin-utils': 7.27.1
2636
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
2637
+ '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.4)
2638
+ transitivePeerDependencies:
2639
+ - supports-color
2640
+
2641
+ '@babel/preset-typescript@7.27.1(@babel/core@7.28.4)':
2642
+ dependencies:
2643
+ '@babel/core': 7.28.4
2644
+ '@babel/helper-plugin-utils': 7.27.1
2645
+ '@babel/helper-validator-option': 7.27.1
2646
+ '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.4)
2647
+ '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.4)
2648
+ '@babel/plugin-transform-typescript': 7.28.0(@babel/core@7.28.4)
2649
+ transitivePeerDependencies:
2650
+ - supports-color
2651
+
2652
+ '@babel/runtime@7.28.4': {}
2653
+
2654
+ '@babel/template@7.27.2':
2655
+ dependencies:
2656
+ '@babel/code-frame': 7.27.1
2657
+ '@babel/parser': 7.28.4
2658
+ '@babel/types': 7.28.4
2659
+
2660
+ '@babel/traverse@7.28.4':
2661
+ dependencies:
2662
+ '@babel/code-frame': 7.27.1
2663
+ '@babel/generator': 7.28.3
2664
+ '@babel/helper-globals': 7.28.0
2665
+ '@babel/parser': 7.28.4
2666
+ '@babel/template': 7.27.2
2667
+ '@babel/types': 7.28.4
2668
+ debug: 4.4.1
2669
+ transitivePeerDependencies:
2670
+ - supports-color
2671
+
2672
+ '@babel/types@7.28.4':
2673
+ dependencies:
2674
+ '@babel/helper-string-parser': 7.27.1
2675
+ '@babel/helper-validator-identifier': 7.27.1
2676
+
2677
+ '@bluecopa/core@0.1.5':
2678
+ dependencies:
2679
+ axios: 1.11.0
2680
+ lodash: 4.17.21
2681
+ transitivePeerDependencies:
2682
+ - debug
2683
+
2684
+ '@bluecopa/react@0.1.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
2685
+ dependencies:
2686
+ '@bluecopa/core': 0.1.5
2687
+ '@tanstack/react-query': 5.59.0(react@18.3.1)
2688
+ '@tanstack/react-query-devtools': 5.59.0(@tanstack/react-query@5.59.0(react@18.3.1))(react@18.3.1)
2689
+ react: 18.3.1
2690
+ react-dom: 18.3.1(react@18.3.1)
2691
+ transitivePeerDependencies:
2692
+ - debug
2693
+
2694
+ '@dnd-kit/accessibility@3.1.1(react@18.3.1)':
2695
+ dependencies:
2696
+ react: 18.3.1
2697
+ tslib: 2.8.1
2698
+
2699
+ '@dnd-kit/core@6.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
2700
+ dependencies:
2701
+ '@dnd-kit/accessibility': 3.1.1(react@18.3.1)
2702
+ '@dnd-kit/utilities': 3.2.2(react@18.3.1)
2703
+ react: 18.3.1
2704
+ react-dom: 18.3.1(react@18.3.1)
2705
+ tslib: 2.8.1
2706
+
2707
+ '@dnd-kit/modifiers@9.0.0(@dnd-kit/core@6.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)':
2708
+ dependencies:
2709
+ '@dnd-kit/core': 6.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2710
+ '@dnd-kit/utilities': 3.2.2(react@18.3.1)
2711
+ react: 18.3.1
2712
+ tslib: 2.8.1
2713
+
2714
+ '@dnd-kit/sortable@10.0.0(@dnd-kit/core@6.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)':
2715
+ dependencies:
2716
+ '@dnd-kit/core': 6.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2717
+ '@dnd-kit/utilities': 3.2.2(react@18.3.1)
2718
+ react: 18.3.1
2719
+ tslib: 2.8.1
2720
+
2721
+ '@dnd-kit/utilities@3.2.2(react@18.3.1)':
2722
+ dependencies:
2723
+ react: 18.3.1
2724
+ tslib: 2.8.1
2725
+
2726
+ '@esbuild/aix-ppc64@0.25.9':
2727
+ optional: true
2728
+
2729
+ '@esbuild/android-arm64@0.25.9':
2730
+ optional: true
2731
+
2732
+ '@esbuild/android-arm@0.25.9':
2733
+ optional: true
2734
+
2735
+ '@esbuild/android-x64@0.25.9':
2736
+ optional: true
2737
+
2738
+ '@esbuild/darwin-arm64@0.25.9':
2739
+ optional: true
2740
+
2741
+ '@esbuild/darwin-x64@0.25.9':
2742
+ optional: true
2743
+
2744
+ '@esbuild/freebsd-arm64@0.25.9':
2745
+ optional: true
2746
+
2747
+ '@esbuild/freebsd-x64@0.25.9':
2748
+ optional: true
2749
+
2750
+ '@esbuild/linux-arm64@0.25.9':
2751
+ optional: true
2752
+
2753
+ '@esbuild/linux-arm@0.25.9':
2754
+ optional: true
2755
+
2756
+ '@esbuild/linux-ia32@0.25.9':
2757
+ optional: true
2758
+
2759
+ '@esbuild/linux-loong64@0.25.9':
2760
+ optional: true
2761
+
2762
+ '@esbuild/linux-mips64el@0.25.9':
2763
+ optional: true
2764
+
2765
+ '@esbuild/linux-ppc64@0.25.9':
2766
+ optional: true
2767
+
2768
+ '@esbuild/linux-riscv64@0.25.9':
2769
+ optional: true
2770
+
2771
+ '@esbuild/linux-s390x@0.25.9':
2772
+ optional: true
2773
+
2774
+ '@esbuild/linux-x64@0.25.9':
2775
+ optional: true
2776
+
2777
+ '@esbuild/netbsd-arm64@0.25.9':
2778
+ optional: true
2779
+
2780
+ '@esbuild/netbsd-x64@0.25.9':
2781
+ optional: true
2782
+
2783
+ '@esbuild/openbsd-arm64@0.25.9':
2784
+ optional: true
2785
+
2786
+ '@esbuild/openbsd-x64@0.25.9':
2787
+ optional: true
2788
+
2789
+ '@esbuild/openharmony-arm64@0.25.9':
2790
+ optional: true
2791
+
2792
+ '@esbuild/sunos-x64@0.25.9':
2793
+ optional: true
2794
+
2795
+ '@esbuild/win32-arm64@0.25.9':
2796
+ optional: true
2797
+
2798
+ '@esbuild/win32-ia32@0.25.9':
2799
+ optional: true
2800
+
2801
+ '@esbuild/win32-x64@0.25.9':
2802
+ optional: true
2803
+
2804
+ '@floating-ui/core@1.7.3':
2805
+ dependencies:
2806
+ '@floating-ui/utils': 0.2.10
2807
+
2808
+ '@floating-ui/dom@1.7.4':
2809
+ dependencies:
2810
+ '@floating-ui/core': 1.7.3
2811
+ '@floating-ui/utils': 0.2.10
2812
+
2813
+ '@floating-ui/react-dom@2.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
2814
+ dependencies:
2815
+ '@floating-ui/dom': 1.7.4
2816
+ react: 18.3.1
2817
+ react-dom: 18.3.1(react@18.3.1)
2818
+
2819
+ '@floating-ui/utils@0.2.10': {}
2820
+
2821
+ '@isaacs/cliui@8.0.2':
2822
+ dependencies:
2823
+ string-width: 5.1.2
2824
+ string-width-cjs: string-width@4.2.3
2825
+ strip-ansi: 7.1.2
2826
+ strip-ansi-cjs: strip-ansi@6.0.1
2827
+ wrap-ansi: 8.1.0
2828
+ wrap-ansi-cjs: wrap-ansi@7.0.0
2829
+
2830
+ '@isaacs/fs-minipass@4.0.1':
2831
+ dependencies:
2832
+ minipass: 7.1.2
2833
+
2834
+ '@jridgewell/gen-mapping@0.3.13':
2835
+ dependencies:
2836
+ '@jridgewell/sourcemap-codec': 1.5.5
2837
+ '@jridgewell/trace-mapping': 0.3.31
2838
+
2839
+ '@jridgewell/remapping@2.3.5':
2840
+ dependencies:
2841
+ '@jridgewell/gen-mapping': 0.3.13
2842
+ '@jridgewell/trace-mapping': 0.3.31
2843
+
2844
+ '@jridgewell/resolve-uri@3.1.2': {}
2845
+
2846
+ '@jridgewell/sourcemap-codec@1.5.5': {}
2847
+
2848
+ '@jridgewell/trace-mapping@0.3.31':
2849
+ dependencies:
2850
+ '@jridgewell/resolve-uri': 3.1.2
2851
+ '@jridgewell/sourcemap-codec': 1.5.5
2852
+
2853
+ '@mjackson/node-fetch-server@0.2.0': {}
2854
+
2855
+ '@mjackson/node-fetch-server@0.7.0': {}
2856
+
2857
+ '@npmcli/git@4.1.0':
2858
+ dependencies:
2859
+ '@npmcli/promise-spawn': 6.0.2
2860
+ lru-cache: 7.18.3
2861
+ npm-pick-manifest: 8.0.2
2862
+ proc-log: 3.0.0
2863
+ promise-inflight: 1.0.1
2864
+ promise-retry: 2.0.1
2865
+ semver: 7.7.2
2866
+ which: 3.0.1
2867
+ transitivePeerDependencies:
2868
+ - bluebird
2869
+
2870
+ '@npmcli/package-json@4.0.1':
2871
+ dependencies:
2872
+ '@npmcli/git': 4.1.0
2873
+ glob: 10.4.5
2874
+ hosted-git-info: 6.1.3
2875
+ json-parse-even-better-errors: 3.0.2
2876
+ normalize-package-data: 5.0.0
2877
+ proc-log: 3.0.0
2878
+ semver: 7.7.2
2879
+ transitivePeerDependencies:
2880
+ - bluebird
2881
+
2882
+ '@npmcli/promise-spawn@6.0.2':
2883
+ dependencies:
2884
+ which: 3.0.1
2885
+
2886
+ '@pkgjs/parseargs@0.11.0':
2887
+ optional: true
2888
+
2889
+ '@radix-ui/number@1.1.1': {}
2890
+
2891
+ '@radix-ui/primitive@1.1.3': {}
2892
+
2893
+ '@radix-ui/react-arrow@1.1.7(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
2894
+ dependencies:
2895
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2896
+ react: 18.3.1
2897
+ react-dom: 18.3.1(react@18.3.1)
2898
+ optionalDependencies:
2899
+ '@types/react': 18.3.24
2900
+ '@types/react-dom': 18.3.7(@types/react@18.3.24)
2901
+
2902
+ '@radix-ui/react-avatar@1.1.10(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
2903
+ dependencies:
2904
+ '@radix-ui/react-context': 1.1.2(@types/react@18.3.24)(react@18.3.1)
2905
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2906
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.3.24)(react@18.3.1)
2907
+ '@radix-ui/react-use-is-hydrated': 0.1.0(@types/react@18.3.24)(react@18.3.1)
2908
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.3.24)(react@18.3.1)
2909
+ react: 18.3.1
2910
+ react-dom: 18.3.1(react@18.3.1)
2911
+ optionalDependencies:
2912
+ '@types/react': 18.3.24
2913
+ '@types/react-dom': 18.3.7(@types/react@18.3.24)
2914
+
2915
+ '@radix-ui/react-checkbox@1.3.3(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
2916
+ dependencies:
2917
+ '@radix-ui/primitive': 1.1.3
2918
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.24)(react@18.3.1)
2919
+ '@radix-ui/react-context': 1.1.2(@types/react@18.3.24)(react@18.3.1)
2920
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2921
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2922
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.3.24)(react@18.3.1)
2923
+ '@radix-ui/react-use-previous': 1.1.1(@types/react@18.3.24)(react@18.3.1)
2924
+ '@radix-ui/react-use-size': 1.1.1(@types/react@18.3.24)(react@18.3.1)
2925
+ react: 18.3.1
2926
+ react-dom: 18.3.1(react@18.3.1)
2927
+ optionalDependencies:
2928
+ '@types/react': 18.3.24
2929
+ '@types/react-dom': 18.3.7(@types/react@18.3.24)
2930
+
2931
+ '@radix-ui/react-collection@1.1.7(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
2932
+ dependencies:
2933
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.24)(react@18.3.1)
2934
+ '@radix-ui/react-context': 1.1.2(@types/react@18.3.24)(react@18.3.1)
2935
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2936
+ '@radix-ui/react-slot': 1.2.3(@types/react@18.3.24)(react@18.3.1)
2937
+ react: 18.3.1
2938
+ react-dom: 18.3.1(react@18.3.1)
2939
+ optionalDependencies:
2940
+ '@types/react': 18.3.24
2941
+ '@types/react-dom': 18.3.7(@types/react@18.3.24)
2942
+
2943
+ '@radix-ui/react-compose-refs@1.1.2(@types/react@18.3.24)(react@18.3.1)':
2944
+ dependencies:
2945
+ react: 18.3.1
2946
+ optionalDependencies:
2947
+ '@types/react': 18.3.24
2948
+
2949
+ '@radix-ui/react-context@1.1.2(@types/react@18.3.24)(react@18.3.1)':
2950
+ dependencies:
2951
+ react: 18.3.1
2952
+ optionalDependencies:
2953
+ '@types/react': 18.3.24
2954
+
2955
+ '@radix-ui/react-dialog@1.1.15(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
2956
+ dependencies:
2957
+ '@radix-ui/primitive': 1.1.3
2958
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.24)(react@18.3.1)
2959
+ '@radix-ui/react-context': 1.1.2(@types/react@18.3.24)(react@18.3.1)
2960
+ '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2961
+ '@radix-ui/react-focus-guards': 1.1.3(@types/react@18.3.24)(react@18.3.1)
2962
+ '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2963
+ '@radix-ui/react-id': 1.1.1(@types/react@18.3.24)(react@18.3.1)
2964
+ '@radix-ui/react-portal': 1.1.9(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2965
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2966
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2967
+ '@radix-ui/react-slot': 1.2.3(@types/react@18.3.24)(react@18.3.1)
2968
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.3.24)(react@18.3.1)
2969
+ aria-hidden: 1.2.6
2970
+ react: 18.3.1
2971
+ react-dom: 18.3.1(react@18.3.1)
2972
+ react-remove-scroll: 2.7.1(@types/react@18.3.24)(react@18.3.1)
2973
+ optionalDependencies:
2974
+ '@types/react': 18.3.24
2975
+ '@types/react-dom': 18.3.7(@types/react@18.3.24)
2976
+
2977
+ '@radix-ui/react-direction@1.1.1(@types/react@18.3.24)(react@18.3.1)':
2978
+ dependencies:
2979
+ react: 18.3.1
2980
+ optionalDependencies:
2981
+ '@types/react': 18.3.24
2982
+
2983
+ '@radix-ui/react-dismissable-layer@1.1.11(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
2984
+ dependencies:
2985
+ '@radix-ui/primitive': 1.1.3
2986
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.24)(react@18.3.1)
2987
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2988
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.3.24)(react@18.3.1)
2989
+ '@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@18.3.24)(react@18.3.1)
2990
+ react: 18.3.1
2991
+ react-dom: 18.3.1(react@18.3.1)
2992
+ optionalDependencies:
2993
+ '@types/react': 18.3.24
2994
+ '@types/react-dom': 18.3.7(@types/react@18.3.24)
2995
+
2996
+ '@radix-ui/react-dropdown-menu@2.1.16(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
2997
+ dependencies:
2998
+ '@radix-ui/primitive': 1.1.3
2999
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.24)(react@18.3.1)
3000
+ '@radix-ui/react-context': 1.1.2(@types/react@18.3.24)(react@18.3.1)
3001
+ '@radix-ui/react-id': 1.1.1(@types/react@18.3.24)(react@18.3.1)
3002
+ '@radix-ui/react-menu': 2.1.16(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3003
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3004
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.3.24)(react@18.3.1)
3005
+ react: 18.3.1
3006
+ react-dom: 18.3.1(react@18.3.1)
3007
+ optionalDependencies:
3008
+ '@types/react': 18.3.24
3009
+ '@types/react-dom': 18.3.7(@types/react@18.3.24)
3010
+
3011
+ '@radix-ui/react-focus-guards@1.1.3(@types/react@18.3.24)(react@18.3.1)':
3012
+ dependencies:
3013
+ react: 18.3.1
3014
+ optionalDependencies:
3015
+ '@types/react': 18.3.24
3016
+
3017
+ '@radix-ui/react-focus-scope@1.1.7(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
3018
+ dependencies:
3019
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.24)(react@18.3.1)
3020
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3021
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.3.24)(react@18.3.1)
3022
+ react: 18.3.1
3023
+ react-dom: 18.3.1(react@18.3.1)
3024
+ optionalDependencies:
3025
+ '@types/react': 18.3.24
3026
+ '@types/react-dom': 18.3.7(@types/react@18.3.24)
3027
+
3028
+ '@radix-ui/react-id@1.1.1(@types/react@18.3.24)(react@18.3.1)':
3029
+ dependencies:
3030
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.3.24)(react@18.3.1)
3031
+ react: 18.3.1
3032
+ optionalDependencies:
3033
+ '@types/react': 18.3.24
3034
+
3035
+ '@radix-ui/react-label@2.1.7(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
3036
+ dependencies:
3037
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3038
+ react: 18.3.1
3039
+ react-dom: 18.3.1(react@18.3.1)
3040
+ optionalDependencies:
3041
+ '@types/react': 18.3.24
3042
+ '@types/react-dom': 18.3.7(@types/react@18.3.24)
3043
+
3044
+ '@radix-ui/react-menu@2.1.16(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
3045
+ dependencies:
3046
+ '@radix-ui/primitive': 1.1.3
3047
+ '@radix-ui/react-collection': 1.1.7(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3048
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.24)(react@18.3.1)
3049
+ '@radix-ui/react-context': 1.1.2(@types/react@18.3.24)(react@18.3.1)
3050
+ '@radix-ui/react-direction': 1.1.1(@types/react@18.3.24)(react@18.3.1)
3051
+ '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3052
+ '@radix-ui/react-focus-guards': 1.1.3(@types/react@18.3.24)(react@18.3.1)
3053
+ '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3054
+ '@radix-ui/react-id': 1.1.1(@types/react@18.3.24)(react@18.3.1)
3055
+ '@radix-ui/react-popper': 1.2.8(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3056
+ '@radix-ui/react-portal': 1.1.9(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3057
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3058
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3059
+ '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3060
+ '@radix-ui/react-slot': 1.2.3(@types/react@18.3.24)(react@18.3.1)
3061
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.3.24)(react@18.3.1)
3062
+ aria-hidden: 1.2.6
3063
+ react: 18.3.1
3064
+ react-dom: 18.3.1(react@18.3.1)
3065
+ react-remove-scroll: 2.7.1(@types/react@18.3.24)(react@18.3.1)
3066
+ optionalDependencies:
3067
+ '@types/react': 18.3.24
3068
+ '@types/react-dom': 18.3.7(@types/react@18.3.24)
3069
+
3070
+ '@radix-ui/react-popper@1.2.8(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
3071
+ dependencies:
3072
+ '@floating-ui/react-dom': 2.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3073
+ '@radix-ui/react-arrow': 1.1.7(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3074
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.24)(react@18.3.1)
3075
+ '@radix-ui/react-context': 1.1.2(@types/react@18.3.24)(react@18.3.1)
3076
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3077
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.3.24)(react@18.3.1)
3078
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.3.24)(react@18.3.1)
3079
+ '@radix-ui/react-use-rect': 1.1.1(@types/react@18.3.24)(react@18.3.1)
3080
+ '@radix-ui/react-use-size': 1.1.1(@types/react@18.3.24)(react@18.3.1)
3081
+ '@radix-ui/rect': 1.1.1
3082
+ react: 18.3.1
3083
+ react-dom: 18.3.1(react@18.3.1)
3084
+ optionalDependencies:
3085
+ '@types/react': 18.3.24
3086
+ '@types/react-dom': 18.3.7(@types/react@18.3.24)
3087
+
3088
+ '@radix-ui/react-portal@1.1.9(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
3089
+ dependencies:
3090
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3091
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.3.24)(react@18.3.1)
3092
+ react: 18.3.1
3093
+ react-dom: 18.3.1(react@18.3.1)
3094
+ optionalDependencies:
3095
+ '@types/react': 18.3.24
3096
+ '@types/react-dom': 18.3.7(@types/react@18.3.24)
3097
+
3098
+ '@radix-ui/react-presence@1.1.5(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
3099
+ dependencies:
3100
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.24)(react@18.3.1)
3101
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.3.24)(react@18.3.1)
3102
+ react: 18.3.1
3103
+ react-dom: 18.3.1(react@18.3.1)
3104
+ optionalDependencies:
3105
+ '@types/react': 18.3.24
3106
+ '@types/react-dom': 18.3.7(@types/react@18.3.24)
3107
+
3108
+ '@radix-ui/react-primitive@2.1.3(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
3109
+ dependencies:
3110
+ '@radix-ui/react-slot': 1.2.3(@types/react@18.3.24)(react@18.3.1)
3111
+ react: 18.3.1
3112
+ react-dom: 18.3.1(react@18.3.1)
3113
+ optionalDependencies:
3114
+ '@types/react': 18.3.24
3115
+ '@types/react-dom': 18.3.7(@types/react@18.3.24)
3116
+
3117
+ '@radix-ui/react-roving-focus@1.1.11(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
3118
+ dependencies:
3119
+ '@radix-ui/primitive': 1.1.3
3120
+ '@radix-ui/react-collection': 1.1.7(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3121
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.24)(react@18.3.1)
3122
+ '@radix-ui/react-context': 1.1.2(@types/react@18.3.24)(react@18.3.1)
3123
+ '@radix-ui/react-direction': 1.1.1(@types/react@18.3.24)(react@18.3.1)
3124
+ '@radix-ui/react-id': 1.1.1(@types/react@18.3.24)(react@18.3.1)
3125
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3126
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.3.24)(react@18.3.1)
3127
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.3.24)(react@18.3.1)
3128
+ react: 18.3.1
3129
+ react-dom: 18.3.1(react@18.3.1)
3130
+ optionalDependencies:
3131
+ '@types/react': 18.3.24
3132
+ '@types/react-dom': 18.3.7(@types/react@18.3.24)
3133
+
3134
+ '@radix-ui/react-select@2.2.6(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
3135
+ dependencies:
3136
+ '@radix-ui/number': 1.1.1
3137
+ '@radix-ui/primitive': 1.1.3
3138
+ '@radix-ui/react-collection': 1.1.7(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3139
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.24)(react@18.3.1)
3140
+ '@radix-ui/react-context': 1.1.2(@types/react@18.3.24)(react@18.3.1)
3141
+ '@radix-ui/react-direction': 1.1.1(@types/react@18.3.24)(react@18.3.1)
3142
+ '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3143
+ '@radix-ui/react-focus-guards': 1.1.3(@types/react@18.3.24)(react@18.3.1)
3144
+ '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3145
+ '@radix-ui/react-id': 1.1.1(@types/react@18.3.24)(react@18.3.1)
3146
+ '@radix-ui/react-popper': 1.2.8(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3147
+ '@radix-ui/react-portal': 1.1.9(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3148
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3149
+ '@radix-ui/react-slot': 1.2.3(@types/react@18.3.24)(react@18.3.1)
3150
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.3.24)(react@18.3.1)
3151
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.3.24)(react@18.3.1)
3152
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.3.24)(react@18.3.1)
3153
+ '@radix-ui/react-use-previous': 1.1.1(@types/react@18.3.24)(react@18.3.1)
3154
+ '@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3155
+ aria-hidden: 1.2.6
3156
+ react: 18.3.1
3157
+ react-dom: 18.3.1(react@18.3.1)
3158
+ react-remove-scroll: 2.7.1(@types/react@18.3.24)(react@18.3.1)
3159
+ optionalDependencies:
3160
+ '@types/react': 18.3.24
3161
+ '@types/react-dom': 18.3.7(@types/react@18.3.24)
3162
+
3163
+ '@radix-ui/react-separator@1.1.7(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
3164
+ dependencies:
3165
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3166
+ react: 18.3.1
3167
+ react-dom: 18.3.1(react@18.3.1)
3168
+ optionalDependencies:
3169
+ '@types/react': 18.3.24
3170
+ '@types/react-dom': 18.3.7(@types/react@18.3.24)
3171
+
3172
+ '@radix-ui/react-slot@1.2.3(@types/react@18.3.24)(react@18.3.1)':
3173
+ dependencies:
3174
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.24)(react@18.3.1)
3175
+ react: 18.3.1
3176
+ optionalDependencies:
3177
+ '@types/react': 18.3.24
3178
+
3179
+ '@radix-ui/react-tabs@1.1.13(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
3180
+ dependencies:
3181
+ '@radix-ui/primitive': 1.1.3
3182
+ '@radix-ui/react-context': 1.1.2(@types/react@18.3.24)(react@18.3.1)
3183
+ '@radix-ui/react-direction': 1.1.1(@types/react@18.3.24)(react@18.3.1)
3184
+ '@radix-ui/react-id': 1.1.1(@types/react@18.3.24)(react@18.3.1)
3185
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3186
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3187
+ '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3188
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.3.24)(react@18.3.1)
3189
+ react: 18.3.1
3190
+ react-dom: 18.3.1(react@18.3.1)
3191
+ optionalDependencies:
3192
+ '@types/react': 18.3.24
3193
+ '@types/react-dom': 18.3.7(@types/react@18.3.24)
3194
+
3195
+ '@radix-ui/react-toggle-group@1.1.11(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
3196
+ dependencies:
3197
+ '@radix-ui/primitive': 1.1.3
3198
+ '@radix-ui/react-context': 1.1.2(@types/react@18.3.24)(react@18.3.1)
3199
+ '@radix-ui/react-direction': 1.1.1(@types/react@18.3.24)(react@18.3.1)
3200
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3201
+ '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3202
+ '@radix-ui/react-toggle': 1.1.10(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3203
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.3.24)(react@18.3.1)
3204
+ react: 18.3.1
3205
+ react-dom: 18.3.1(react@18.3.1)
3206
+ optionalDependencies:
3207
+ '@types/react': 18.3.24
3208
+ '@types/react-dom': 18.3.7(@types/react@18.3.24)
3209
+
3210
+ '@radix-ui/react-toggle@1.1.10(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
3211
+ dependencies:
3212
+ '@radix-ui/primitive': 1.1.3
3213
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3214
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.3.24)(react@18.3.1)
3215
+ react: 18.3.1
3216
+ react-dom: 18.3.1(react@18.3.1)
3217
+ optionalDependencies:
3218
+ '@types/react': 18.3.24
3219
+ '@types/react-dom': 18.3.7(@types/react@18.3.24)
3220
+
3221
+ '@radix-ui/react-tooltip@1.2.8(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
3222
+ dependencies:
3223
+ '@radix-ui/primitive': 1.1.3
3224
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.24)(react@18.3.1)
3225
+ '@radix-ui/react-context': 1.1.2(@types/react@18.3.24)(react@18.3.1)
3226
+ '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3227
+ '@radix-ui/react-id': 1.1.1(@types/react@18.3.24)(react@18.3.1)
3228
+ '@radix-ui/react-popper': 1.2.8(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3229
+ '@radix-ui/react-portal': 1.1.9(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3230
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3231
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3232
+ '@radix-ui/react-slot': 1.2.3(@types/react@18.3.24)(react@18.3.1)
3233
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.3.24)(react@18.3.1)
3234
+ '@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3235
+ react: 18.3.1
3236
+ react-dom: 18.3.1(react@18.3.1)
3237
+ optionalDependencies:
3238
+ '@types/react': 18.3.24
3239
+ '@types/react-dom': 18.3.7(@types/react@18.3.24)
3240
+
3241
+ '@radix-ui/react-use-callback-ref@1.1.1(@types/react@18.3.24)(react@18.3.1)':
3242
+ dependencies:
3243
+ react: 18.3.1
3244
+ optionalDependencies:
3245
+ '@types/react': 18.3.24
3246
+
3247
+ '@radix-ui/react-use-controllable-state@1.2.2(@types/react@18.3.24)(react@18.3.1)':
3248
+ dependencies:
3249
+ '@radix-ui/react-use-effect-event': 0.0.2(@types/react@18.3.24)(react@18.3.1)
3250
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.3.24)(react@18.3.1)
3251
+ react: 18.3.1
3252
+ optionalDependencies:
3253
+ '@types/react': 18.3.24
3254
+
3255
+ '@radix-ui/react-use-effect-event@0.0.2(@types/react@18.3.24)(react@18.3.1)':
3256
+ dependencies:
3257
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.3.24)(react@18.3.1)
3258
+ react: 18.3.1
3259
+ optionalDependencies:
3260
+ '@types/react': 18.3.24
3261
+
3262
+ '@radix-ui/react-use-escape-keydown@1.1.1(@types/react@18.3.24)(react@18.3.1)':
3263
+ dependencies:
3264
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.3.24)(react@18.3.1)
3265
+ react: 18.3.1
3266
+ optionalDependencies:
3267
+ '@types/react': 18.3.24
3268
+
3269
+ '@radix-ui/react-use-is-hydrated@0.1.0(@types/react@18.3.24)(react@18.3.1)':
3270
+ dependencies:
3271
+ react: 18.3.1
3272
+ use-sync-external-store: 1.5.0(react@18.3.1)
3273
+ optionalDependencies:
3274
+ '@types/react': 18.3.24
3275
+
3276
+ '@radix-ui/react-use-layout-effect@1.1.1(@types/react@18.3.24)(react@18.3.1)':
3277
+ dependencies:
3278
+ react: 18.3.1
3279
+ optionalDependencies:
3280
+ '@types/react': 18.3.24
3281
+
3282
+ '@radix-ui/react-use-previous@1.1.1(@types/react@18.3.24)(react@18.3.1)':
3283
+ dependencies:
3284
+ react: 18.3.1
3285
+ optionalDependencies:
3286
+ '@types/react': 18.3.24
3287
+
3288
+ '@radix-ui/react-use-rect@1.1.1(@types/react@18.3.24)(react@18.3.1)':
3289
+ dependencies:
3290
+ '@radix-ui/rect': 1.1.1
3291
+ react: 18.3.1
3292
+ optionalDependencies:
3293
+ '@types/react': 18.3.24
3294
+
3295
+ '@radix-ui/react-use-size@1.1.1(@types/react@18.3.24)(react@18.3.1)':
3296
+ dependencies:
3297
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.3.24)(react@18.3.1)
3298
+ react: 18.3.1
3299
+ optionalDependencies:
3300
+ '@types/react': 18.3.24
3301
+
3302
+ '@radix-ui/react-visually-hidden@1.2.3(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
3303
+ dependencies:
3304
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3305
+ react: 18.3.1
3306
+ react-dom: 18.3.1(react@18.3.1)
3307
+ optionalDependencies:
3308
+ '@types/react': 18.3.24
3309
+ '@types/react-dom': 18.3.7(@types/react@18.3.24)
3310
+
3311
+ '@radix-ui/rect@1.1.1': {}
3312
+
3313
+ '@react-router/dev@7.8.2(@react-router/serve@7.8.2(react-router@7.8.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.9.2))(@types/node@20.19.13)(jiti@2.5.1)(lightningcss@1.30.1)(react-dom@18.3.1(react@18.3.1))(react-router@7.8.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(typescript@5.9.2)(vite@6.3.6(@types/node@20.19.13)(jiti@2.5.1)(lightningcss@1.30.1))':
3314
+ dependencies:
3315
+ '@babel/core': 7.28.4
3316
+ '@babel/generator': 7.28.3
3317
+ '@babel/parser': 7.28.4
3318
+ '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.4)
3319
+ '@babel/preset-typescript': 7.27.1(@babel/core@7.28.4)
3320
+ '@babel/traverse': 7.28.4
3321
+ '@babel/types': 7.28.4
3322
+ '@npmcli/package-json': 4.0.1
3323
+ '@react-router/node': 7.8.2(react-router@7.8.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.9.2)
3324
+ '@vitejs/plugin-rsc': 0.4.11(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(vite@6.3.6(@types/node@20.19.13)(jiti@2.5.1)(lightningcss@1.30.1))
3325
+ arg: 5.0.2
3326
+ babel-dead-code-elimination: 1.0.10
3327
+ chokidar: 4.0.3
3328
+ dedent: 1.7.0
3329
+ es-module-lexer: 1.7.0
3330
+ exit-hook: 2.2.1
3331
+ isbot: 5.1.30
3332
+ jsesc: 3.0.2
3333
+ lodash: 4.17.21
3334
+ pathe: 1.1.2
3335
+ picocolors: 1.1.1
3336
+ prettier: 3.6.2
3337
+ react-refresh: 0.14.2
3338
+ react-router: 7.8.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3339
+ semver: 7.7.2
3340
+ set-cookie-parser: 2.7.1
3341
+ tinyglobby: 0.2.15
3342
+ valibot: 0.41.0(typescript@5.9.2)
3343
+ vite: 6.3.6(@types/node@20.19.13)(jiti@2.5.1)(lightningcss@1.30.1)
3344
+ vite-node: 3.2.4(@types/node@20.19.13)(jiti@2.5.1)(lightningcss@1.30.1)
3345
+ optionalDependencies:
3346
+ '@react-router/serve': 7.8.2(react-router@7.8.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.9.2)
3347
+ typescript: 5.9.2
3348
+ transitivePeerDependencies:
3349
+ - '@types/node'
3350
+ - babel-plugin-macros
3351
+ - bluebird
3352
+ - jiti
3353
+ - less
3354
+ - lightningcss
3355
+ - react
3356
+ - react-dom
3357
+ - sass
3358
+ - sass-embedded
3359
+ - stylus
3360
+ - sugarss
3361
+ - supports-color
3362
+ - terser
3363
+ - tsx
3364
+ - yaml
3365
+
3366
+ '@react-router/express@7.8.2(express@4.21.2)(react-router@7.8.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.9.2)':
3367
+ dependencies:
3368
+ '@react-router/node': 7.8.2(react-router@7.8.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.9.2)
3369
+ express: 4.21.2
3370
+ react-router: 7.8.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3371
+ optionalDependencies:
3372
+ typescript: 5.9.2
3373
+
3374
+ '@react-router/node@7.8.2(react-router@7.8.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.9.2)':
3375
+ dependencies:
3376
+ '@mjackson/node-fetch-server': 0.2.0
3377
+ react-router: 7.8.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3378
+ optionalDependencies:
3379
+ typescript: 5.9.2
3380
+
3381
+ '@react-router/serve@7.8.2(react-router@7.8.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.9.2)':
3382
+ dependencies:
3383
+ '@react-router/express': 7.8.2(express@4.21.2)(react-router@7.8.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.9.2)
3384
+ '@react-router/node': 7.8.2(react-router@7.8.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.9.2)
3385
+ compression: 1.8.1
3386
+ express: 4.21.2
3387
+ get-port: 5.1.1
3388
+ morgan: 1.10.1
3389
+ react-router: 7.8.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
3390
+ source-map-support: 0.5.21
3391
+ transitivePeerDependencies:
3392
+ - supports-color
3393
+ - typescript
3394
+
3395
+ '@rollup/rollup-android-arm-eabi@4.50.1':
3396
+ optional: true
3397
+
3398
+ '@rollup/rollup-android-arm64@4.50.1':
3399
+ optional: true
3400
+
3401
+ '@rollup/rollup-darwin-arm64@4.50.1':
3402
+ optional: true
3403
+
3404
+ '@rollup/rollup-darwin-x64@4.50.1':
3405
+ optional: true
3406
+
3407
+ '@rollup/rollup-freebsd-arm64@4.50.1':
3408
+ optional: true
3409
+
3410
+ '@rollup/rollup-freebsd-x64@4.50.1':
3411
+ optional: true
3412
+
3413
+ '@rollup/rollup-linux-arm-gnueabihf@4.50.1':
3414
+ optional: true
3415
+
3416
+ '@rollup/rollup-linux-arm-musleabihf@4.50.1':
3417
+ optional: true
3418
+
3419
+ '@rollup/rollup-linux-arm64-gnu@4.50.1':
3420
+ optional: true
3421
+
3422
+ '@rollup/rollup-linux-arm64-musl@4.50.1':
3423
+ optional: true
3424
+
3425
+ '@rollup/rollup-linux-loongarch64-gnu@4.50.1':
3426
+ optional: true
3427
+
3428
+ '@rollup/rollup-linux-ppc64-gnu@4.50.1':
3429
+ optional: true
3430
+
3431
+ '@rollup/rollup-linux-riscv64-gnu@4.50.1':
3432
+ optional: true
3433
+
3434
+ '@rollup/rollup-linux-riscv64-musl@4.50.1':
3435
+ optional: true
3436
+
3437
+ '@rollup/rollup-linux-s390x-gnu@4.50.1':
3438
+ optional: true
3439
+
3440
+ '@rollup/rollup-linux-x64-gnu@4.50.1':
3441
+ optional: true
3442
+
3443
+ '@rollup/rollup-linux-x64-musl@4.50.1':
3444
+ optional: true
3445
+
3446
+ '@rollup/rollup-openharmony-arm64@4.50.1':
3447
+ optional: true
3448
+
3449
+ '@rollup/rollup-win32-arm64-msvc@4.50.1':
3450
+ optional: true
3451
+
3452
+ '@rollup/rollup-win32-ia32-msvc@4.50.1':
3453
+ optional: true
3454
+
3455
+ '@rollup/rollup-win32-x64-msvc@4.50.1':
3456
+ optional: true
3457
+
3458
+ '@tabler/icons-react@3.34.1(react@18.3.1)':
3459
+ dependencies:
3460
+ '@tabler/icons': 3.34.1
3461
+ react: 18.3.1
3462
+
3463
+ '@tabler/icons@3.34.1': {}
3464
+
3465
+ '@tailwindcss/node@4.1.13':
3466
+ dependencies:
3467
+ '@jridgewell/remapping': 2.3.5
3468
+ enhanced-resolve: 5.18.3
3469
+ jiti: 2.5.1
3470
+ lightningcss: 1.30.1
3471
+ magic-string: 0.30.19
3472
+ source-map-js: 1.2.1
3473
+ tailwindcss: 4.1.13
3474
+
3475
+ '@tailwindcss/oxide-android-arm64@4.1.13':
3476
+ optional: true
3477
+
3478
+ '@tailwindcss/oxide-darwin-arm64@4.1.13':
3479
+ optional: true
3480
+
3481
+ '@tailwindcss/oxide-darwin-x64@4.1.13':
3482
+ optional: true
3483
+
3484
+ '@tailwindcss/oxide-freebsd-x64@4.1.13':
3485
+ optional: true
3486
+
3487
+ '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.13':
3488
+ optional: true
3489
+
3490
+ '@tailwindcss/oxide-linux-arm64-gnu@4.1.13':
3491
+ optional: true
3492
+
3493
+ '@tailwindcss/oxide-linux-arm64-musl@4.1.13':
3494
+ optional: true
3495
+
3496
+ '@tailwindcss/oxide-linux-x64-gnu@4.1.13':
3497
+ optional: true
3498
+
3499
+ '@tailwindcss/oxide-linux-x64-musl@4.1.13':
3500
+ optional: true
3501
+
3502
+ '@tailwindcss/oxide-wasm32-wasi@4.1.13':
3503
+ optional: true
3504
+
3505
+ '@tailwindcss/oxide-win32-arm64-msvc@4.1.13':
3506
+ optional: true
3507
+
3508
+ '@tailwindcss/oxide-win32-x64-msvc@4.1.13':
3509
+ optional: true
3510
+
3511
+ '@tailwindcss/oxide@4.1.13':
3512
+ dependencies:
3513
+ detect-libc: 2.0.4
3514
+ tar: 7.4.3
3515
+ optionalDependencies:
3516
+ '@tailwindcss/oxide-android-arm64': 4.1.13
3517
+ '@tailwindcss/oxide-darwin-arm64': 4.1.13
3518
+ '@tailwindcss/oxide-darwin-x64': 4.1.13
3519
+ '@tailwindcss/oxide-freebsd-x64': 4.1.13
3520
+ '@tailwindcss/oxide-linux-arm-gnueabihf': 4.1.13
3521
+ '@tailwindcss/oxide-linux-arm64-gnu': 4.1.13
3522
+ '@tailwindcss/oxide-linux-arm64-musl': 4.1.13
3523
+ '@tailwindcss/oxide-linux-x64-gnu': 4.1.13
3524
+ '@tailwindcss/oxide-linux-x64-musl': 4.1.13
3525
+ '@tailwindcss/oxide-wasm32-wasi': 4.1.13
3526
+ '@tailwindcss/oxide-win32-arm64-msvc': 4.1.13
3527
+ '@tailwindcss/oxide-win32-x64-msvc': 4.1.13
3528
+
3529
+ '@tailwindcss/vite@4.1.13(vite@6.3.6(@types/node@20.19.13)(jiti@2.5.1)(lightningcss@1.30.1))':
3530
+ dependencies:
3531
+ '@tailwindcss/node': 4.1.13
3532
+ '@tailwindcss/oxide': 4.1.13
3533
+ tailwindcss: 4.1.13
3534
+ vite: 6.3.6(@types/node@20.19.13)(jiti@2.5.1)(lightningcss@1.30.1)
3535
+
3536
+ '@tanstack/query-core@5.59.0': {}
3537
+
3538
+ '@tanstack/query-devtools@5.58.0': {}
3539
+
3540
+ '@tanstack/react-query-devtools@5.59.0(@tanstack/react-query@5.59.0(react@18.3.1))(react@18.3.1)':
3541
+ dependencies:
3542
+ '@tanstack/query-devtools': 5.58.0
3543
+ '@tanstack/react-query': 5.59.0(react@18.3.1)
3544
+ react: 18.3.1
3545
+
3546
+ '@tanstack/react-query@5.59.0(react@18.3.1)':
3547
+ dependencies:
3548
+ '@tanstack/query-core': 5.59.0
3549
+ react: 18.3.1
3550
+
3551
+ '@tanstack/react-table@8.21.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
3552
+ dependencies:
3553
+ '@tanstack/table-core': 8.21.3
3554
+ react: 18.3.1
3555
+ react-dom: 18.3.1(react@18.3.1)
3556
+
3557
+ '@tanstack/table-core@8.21.3': {}
3558
+
3559
+ '@types/d3-array@3.2.1': {}
3560
+
3561
+ '@types/d3-color@3.1.3': {}
3562
+
3563
+ '@types/d3-ease@3.0.2': {}
3564
+
3565
+ '@types/d3-interpolate@3.0.4':
3566
+ dependencies:
3567
+ '@types/d3-color': 3.1.3
3568
+
3569
+ '@types/d3-path@3.1.1': {}
3570
+
3571
+ '@types/d3-scale@4.0.9':
3572
+ dependencies:
3573
+ '@types/d3-time': 3.0.4
3574
+
3575
+ '@types/d3-shape@3.1.7':
3576
+ dependencies:
3577
+ '@types/d3-path': 3.1.1
3578
+
3579
+ '@types/d3-time@3.0.4': {}
3580
+
3581
+ '@types/d3-timer@3.0.2': {}
3582
+
3583
+ '@types/estree@1.0.8': {}
3584
+
3585
+ '@types/node@20.19.13':
3586
+ dependencies:
3587
+ undici-types: 6.21.0
3588
+
3589
+ '@types/prop-types@15.7.15': {}
3590
+
3591
+ '@types/react-dom@18.3.7(@types/react@18.3.24)':
3592
+ dependencies:
3593
+ '@types/react': 18.3.24
3594
+
3595
+ '@types/react@18.3.24':
3596
+ dependencies:
3597
+ '@types/prop-types': 15.7.15
3598
+ csstype: 3.1.3
3599
+
3600
+ '@vitejs/plugin-rsc@0.4.11(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(vite@6.3.6(@types/node@20.19.13)(jiti@2.5.1)(lightningcss@1.30.1))':
3601
+ dependencies:
3602
+ '@mjackson/node-fetch-server': 0.7.0
3603
+ es-module-lexer: 1.7.0
3604
+ estree-walker: 3.0.3
3605
+ magic-string: 0.30.19
3606
+ periscopic: 4.0.2
3607
+ react: 18.3.1
3608
+ react-dom: 18.3.1(react@18.3.1)
3609
+ turbo-stream: 3.1.0
3610
+ vite: 6.3.6(@types/node@20.19.13)(jiti@2.5.1)(lightningcss@1.30.1)
3611
+ vitefu: 1.1.1(vite@6.3.6(@types/node@20.19.13)(jiti@2.5.1)(lightningcss@1.30.1))
3612
+
3613
+ accepts@1.3.8:
3614
+ dependencies:
3615
+ mime-types: 2.1.35
3616
+ negotiator: 0.6.3
3617
+
3618
+ ansi-regex@5.0.1: {}
3619
+
3620
+ ansi-regex@6.2.2: {}
3621
+
3622
+ ansi-styles@4.3.0:
3623
+ dependencies:
3624
+ color-convert: 2.0.1
3625
+
3626
+ ansi-styles@6.2.3: {}
3627
+
3628
+ arg@5.0.2: {}
3629
+
3630
+ aria-hidden@1.2.6:
3631
+ dependencies:
3632
+ tslib: 2.8.1
3633
+
3634
+ array-flatten@1.1.1: {}
3635
+
3636
+ asynckit@0.4.0: {}
3637
+
3638
+ axios@1.11.0:
3639
+ dependencies:
3640
+ follow-redirects: 1.15.11
3641
+ form-data: 4.0.4
3642
+ proxy-from-env: 1.1.0
3643
+ transitivePeerDependencies:
3644
+ - debug
3645
+
3646
+ babel-dead-code-elimination@1.0.10:
3647
+ dependencies:
3648
+ '@babel/core': 7.28.4
3649
+ '@babel/parser': 7.28.4
3650
+ '@babel/traverse': 7.28.4
3651
+ '@babel/types': 7.28.4
3652
+ transitivePeerDependencies:
3653
+ - supports-color
3654
+
3655
+ balanced-match@1.0.2: {}
3656
+
3657
+ basic-auth@2.0.1:
3658
+ dependencies:
3659
+ safe-buffer: 5.1.2
3660
+
3661
+ body-parser@1.20.3:
3662
+ dependencies:
3663
+ bytes: 3.1.2
3664
+ content-type: 1.0.5
3665
+ debug: 2.6.9
3666
+ depd: 2.0.0
3667
+ destroy: 1.2.0
3668
+ http-errors: 2.0.0
3669
+ iconv-lite: 0.4.24
3670
+ on-finished: 2.4.1
3671
+ qs: 6.13.0
3672
+ raw-body: 2.5.2
3673
+ type-is: 1.6.18
3674
+ unpipe: 1.0.0
3675
+ transitivePeerDependencies:
3676
+ - supports-color
3677
+
3678
+ brace-expansion@2.0.2:
3679
+ dependencies:
3680
+ balanced-match: 1.0.2
3681
+
3682
+ browserslist@4.25.4:
3683
+ dependencies:
3684
+ caniuse-lite: 1.0.30001741
3685
+ electron-to-chromium: 1.5.218
3686
+ node-releases: 2.0.20
3687
+ update-browserslist-db: 1.1.3(browserslist@4.25.4)
3688
+
3689
+ buffer-from@1.1.2: {}
3690
+
3691
+ bytes@3.1.2: {}
3692
+
3693
+ cac@6.7.14: {}
3694
+
3695
+ call-bind-apply-helpers@1.0.2:
3696
+ dependencies:
3697
+ es-errors: 1.3.0
3698
+ function-bind: 1.1.2
3699
+
3700
+ call-bound@1.0.4:
3701
+ dependencies:
3702
+ call-bind-apply-helpers: 1.0.2
3703
+ get-intrinsic: 1.3.0
3704
+
3705
+ caniuse-lite@1.0.30001741: {}
3706
+
3707
+ chokidar@4.0.3:
3708
+ dependencies:
3709
+ readdirp: 4.1.2
3710
+
3711
+ chownr@3.0.0: {}
3712
+
3713
+ class-variance-authority@0.7.1:
3714
+ dependencies:
3715
+ clsx: 2.1.1
3716
+
3717
+ clsx@2.1.1: {}
3718
+
3719
+ color-convert@2.0.1:
3720
+ dependencies:
3721
+ color-name: 1.1.4
3722
+
3723
+ color-name@1.1.4: {}
3724
+
3725
+ combined-stream@1.0.8:
3726
+ dependencies:
3727
+ delayed-stream: 1.0.0
3728
+
3729
+ compressible@2.0.18:
3730
+ dependencies:
3731
+ mime-db: 1.54.0
3732
+
3733
+ compression@1.8.1:
3734
+ dependencies:
3735
+ bytes: 3.1.2
3736
+ compressible: 2.0.18
3737
+ debug: 2.6.9
3738
+ negotiator: 0.6.4
3739
+ on-headers: 1.1.0
3740
+ safe-buffer: 5.2.1
3741
+ vary: 1.1.2
3742
+ transitivePeerDependencies:
3743
+ - supports-color
3744
+
3745
+ content-disposition@0.5.4:
3746
+ dependencies:
3747
+ safe-buffer: 5.2.1
3748
+
3749
+ content-type@1.0.5: {}
3750
+
3751
+ convert-source-map@2.0.0: {}
3752
+
3753
+ cookie-signature@1.0.6: {}
3754
+
3755
+ cookie@0.7.1: {}
3756
+
3757
+ cookie@1.0.2: {}
3758
+
3759
+ cross-spawn@7.0.6:
3760
+ dependencies:
3761
+ path-key: 3.1.1
3762
+ shebang-command: 2.0.0
3763
+ which: 2.0.2
3764
+
3765
+ csstype@3.1.3: {}
3766
+
3767
+ d3-array@3.2.4:
3768
+ dependencies:
3769
+ internmap: 2.0.3
3770
+
3771
+ d3-color@3.1.0: {}
3772
+
3773
+ d3-ease@3.0.1: {}
3774
+
3775
+ d3-format@3.1.0: {}
3776
+
3777
+ d3-interpolate@3.0.1:
3778
+ dependencies:
3779
+ d3-color: 3.1.0
3780
+
3781
+ d3-path@3.1.0: {}
3782
+
3783
+ d3-scale@4.0.2:
3784
+ dependencies:
3785
+ d3-array: 3.2.4
3786
+ d3-format: 3.1.0
3787
+ d3-interpolate: 3.0.1
3788
+ d3-time: 3.1.0
3789
+ d3-time-format: 4.1.0
3790
+
3791
+ d3-shape@3.2.0:
3792
+ dependencies:
3793
+ d3-path: 3.1.0
3794
+
3795
+ d3-time-format@4.1.0:
3796
+ dependencies:
3797
+ d3-time: 3.1.0
3798
+
3799
+ d3-time@3.1.0:
3800
+ dependencies:
3801
+ d3-array: 3.2.4
3802
+
3803
+ d3-timer@3.0.1: {}
3804
+
3805
+ debug@2.6.9:
3806
+ dependencies:
3807
+ ms: 2.0.0
3808
+
3809
+ debug@4.4.1:
3810
+ dependencies:
3811
+ ms: 2.1.3
3812
+
3813
+ decimal.js-light@2.5.1: {}
3814
+
3815
+ dedent@1.7.0: {}
3816
+
3817
+ delayed-stream@1.0.0: {}
3818
+
3819
+ depd@2.0.0: {}
3820
+
3821
+ destroy@1.2.0: {}
3822
+
3823
+ detect-libc@2.0.4: {}
3824
+
3825
+ detect-node-es@1.1.0: {}
3826
+
3827
+ dom-helpers@5.2.1:
3828
+ dependencies:
3829
+ '@babel/runtime': 7.28.4
3830
+ csstype: 3.1.3
3831
+
3832
+ dunder-proto@1.0.1:
3833
+ dependencies:
3834
+ call-bind-apply-helpers: 1.0.2
3835
+ es-errors: 1.3.0
3836
+ gopd: 1.2.0
3837
+
3838
+ eastasianwidth@0.2.0: {}
3839
+
3840
+ ee-first@1.1.1: {}
3841
+
3842
+ electron-to-chromium@1.5.218: {}
3843
+
3844
+ emoji-regex@8.0.0: {}
3845
+
3846
+ emoji-regex@9.2.2: {}
3847
+
3848
+ encodeurl@1.0.2: {}
3849
+
3850
+ encodeurl@2.0.0: {}
3851
+
3852
+ enhanced-resolve@5.18.3:
3853
+ dependencies:
3854
+ graceful-fs: 4.2.11
3855
+ tapable: 2.2.3
3856
+
3857
+ err-code@2.0.3: {}
3858
+
3859
+ es-define-property@1.0.1: {}
3860
+
3861
+ es-errors@1.3.0: {}
3862
+
3863
+ es-module-lexer@1.7.0: {}
3864
+
3865
+ es-object-atoms@1.1.1:
3866
+ dependencies:
3867
+ es-errors: 1.3.0
3868
+
3869
+ es-set-tostringtag@2.1.0:
3870
+ dependencies:
3871
+ es-errors: 1.3.0
3872
+ get-intrinsic: 1.3.0
3873
+ has-tostringtag: 1.0.2
3874
+ hasown: 2.0.2
3875
+
3876
+ esbuild@0.25.9:
3877
+ optionalDependencies:
3878
+ '@esbuild/aix-ppc64': 0.25.9
3879
+ '@esbuild/android-arm': 0.25.9
3880
+ '@esbuild/android-arm64': 0.25.9
3881
+ '@esbuild/android-x64': 0.25.9
3882
+ '@esbuild/darwin-arm64': 0.25.9
3883
+ '@esbuild/darwin-x64': 0.25.9
3884
+ '@esbuild/freebsd-arm64': 0.25.9
3885
+ '@esbuild/freebsd-x64': 0.25.9
3886
+ '@esbuild/linux-arm': 0.25.9
3887
+ '@esbuild/linux-arm64': 0.25.9
3888
+ '@esbuild/linux-ia32': 0.25.9
3889
+ '@esbuild/linux-loong64': 0.25.9
3890
+ '@esbuild/linux-mips64el': 0.25.9
3891
+ '@esbuild/linux-ppc64': 0.25.9
3892
+ '@esbuild/linux-riscv64': 0.25.9
3893
+ '@esbuild/linux-s390x': 0.25.9
3894
+ '@esbuild/linux-x64': 0.25.9
3895
+ '@esbuild/netbsd-arm64': 0.25.9
3896
+ '@esbuild/netbsd-x64': 0.25.9
3897
+ '@esbuild/openbsd-arm64': 0.25.9
3898
+ '@esbuild/openbsd-x64': 0.25.9
3899
+ '@esbuild/openharmony-arm64': 0.25.9
3900
+ '@esbuild/sunos-x64': 0.25.9
3901
+ '@esbuild/win32-arm64': 0.25.9
3902
+ '@esbuild/win32-ia32': 0.25.9
3903
+ '@esbuild/win32-x64': 0.25.9
3904
+
3905
+ escalade@3.2.0: {}
3906
+
3907
+ escape-html@1.0.3: {}
3908
+
3909
+ estree-walker@3.0.3:
3910
+ dependencies:
3911
+ '@types/estree': 1.0.8
3912
+
3913
+ etag@1.8.1: {}
3914
+
3915
+ eventemitter3@4.0.7: {}
3916
+
3917
+ exit-hook@2.2.1: {}
3918
+
3919
+ express@4.21.2:
3920
+ dependencies:
3921
+ accepts: 1.3.8
3922
+ array-flatten: 1.1.1
3923
+ body-parser: 1.20.3
3924
+ content-disposition: 0.5.4
3925
+ content-type: 1.0.5
3926
+ cookie: 0.7.1
3927
+ cookie-signature: 1.0.6
3928
+ debug: 2.6.9
3929
+ depd: 2.0.0
3930
+ encodeurl: 2.0.0
3931
+ escape-html: 1.0.3
3932
+ etag: 1.8.1
3933
+ finalhandler: 1.3.1
3934
+ fresh: 0.5.2
3935
+ http-errors: 2.0.0
3936
+ merge-descriptors: 1.0.3
3937
+ methods: 1.1.2
3938
+ on-finished: 2.4.1
3939
+ parseurl: 1.3.3
3940
+ path-to-regexp: 0.1.12
3941
+ proxy-addr: 2.0.7
3942
+ qs: 6.13.0
3943
+ range-parser: 1.2.1
3944
+ safe-buffer: 5.2.1
3945
+ send: 0.19.0
3946
+ serve-static: 1.16.2
3947
+ setprototypeof: 1.2.0
3948
+ statuses: 2.0.1
3949
+ type-is: 1.6.18
3950
+ utils-merge: 1.0.1
3951
+ vary: 1.1.2
3952
+ transitivePeerDependencies:
3953
+ - supports-color
3954
+
3955
+ fast-equals@5.2.2: {}
3956
+
3957
+ fdir@6.5.0(picomatch@4.0.3):
3958
+ optionalDependencies:
3959
+ picomatch: 4.0.3
3960
+
3961
+ finalhandler@1.3.1:
3962
+ dependencies:
3963
+ debug: 2.6.9
3964
+ encodeurl: 2.0.0
3965
+ escape-html: 1.0.3
3966
+ on-finished: 2.4.1
3967
+ parseurl: 1.3.3
3968
+ statuses: 2.0.1
3969
+ unpipe: 1.0.0
3970
+ transitivePeerDependencies:
3971
+ - supports-color
3972
+
3973
+ follow-redirects@1.15.11: {}
3974
+
3975
+ foreground-child@3.3.1:
3976
+ dependencies:
3977
+ cross-spawn: 7.0.6
3978
+ signal-exit: 4.1.0
3979
+
3980
+ form-data@4.0.4:
3981
+ dependencies:
3982
+ asynckit: 0.4.0
3983
+ combined-stream: 1.0.8
3984
+ es-set-tostringtag: 2.1.0
3985
+ hasown: 2.0.2
3986
+ mime-types: 2.1.35
3987
+
3988
+ forwarded@0.2.0: {}
3989
+
3990
+ fresh@0.5.2: {}
3991
+
3992
+ fsevents@2.3.3:
3993
+ optional: true
3994
+
3995
+ function-bind@1.1.2: {}
3996
+
3997
+ gensync@1.0.0-beta.2: {}
3998
+
3999
+ get-intrinsic@1.3.0:
4000
+ dependencies:
4001
+ call-bind-apply-helpers: 1.0.2
4002
+ es-define-property: 1.0.1
4003
+ es-errors: 1.3.0
4004
+ es-object-atoms: 1.1.1
4005
+ function-bind: 1.1.2
4006
+ get-proto: 1.0.1
4007
+ gopd: 1.2.0
4008
+ has-symbols: 1.1.0
4009
+ hasown: 2.0.2
4010
+ math-intrinsics: 1.1.0
4011
+
4012
+ get-nonce@1.0.1: {}
4013
+
4014
+ get-port@5.1.1: {}
4015
+
4016
+ get-proto@1.0.1:
4017
+ dependencies:
4018
+ dunder-proto: 1.0.1
4019
+ es-object-atoms: 1.1.1
4020
+
4021
+ glob@10.4.5:
4022
+ dependencies:
4023
+ foreground-child: 3.3.1
4024
+ jackspeak: 3.4.3
4025
+ minimatch: 9.0.5
4026
+ minipass: 7.1.2
4027
+ package-json-from-dist: 1.0.1
4028
+ path-scurry: 1.11.1
4029
+
4030
+ globrex@0.1.2: {}
4031
+
4032
+ gopd@1.2.0: {}
4033
+
4034
+ graceful-fs@4.2.11: {}
4035
+
4036
+ has-symbols@1.1.0: {}
4037
+
4038
+ has-tostringtag@1.0.2:
4039
+ dependencies:
4040
+ has-symbols: 1.1.0
4041
+
4042
+ hasown@2.0.2:
4043
+ dependencies:
4044
+ function-bind: 1.1.2
4045
+
4046
+ hosted-git-info@6.1.3:
4047
+ dependencies:
4048
+ lru-cache: 7.18.3
4049
+
4050
+ http-errors@2.0.0:
4051
+ dependencies:
4052
+ depd: 2.0.0
4053
+ inherits: 2.0.4
4054
+ setprototypeof: 1.2.0
4055
+ statuses: 2.0.1
4056
+ toidentifier: 1.0.1
4057
+
4058
+ iconv-lite@0.4.24:
4059
+ dependencies:
4060
+ safer-buffer: 2.1.2
4061
+
4062
+ inherits@2.0.4: {}
4063
+
4064
+ internmap@2.0.3: {}
4065
+
4066
+ ipaddr.js@1.9.1: {}
4067
+
4068
+ is-core-module@2.16.1:
4069
+ dependencies:
4070
+ hasown: 2.0.2
4071
+
4072
+ is-fullwidth-code-point@3.0.0: {}
4073
+
4074
+ is-reference@3.0.3:
4075
+ dependencies:
4076
+ '@types/estree': 1.0.8
4077
+
4078
+ isbot@5.1.30: {}
4079
+
4080
+ isexe@2.0.0: {}
4081
+
4082
+ jackspeak@3.4.3:
4083
+ dependencies:
4084
+ '@isaacs/cliui': 8.0.2
4085
+ optionalDependencies:
4086
+ '@pkgjs/parseargs': 0.11.0
4087
+
4088
+ jiti@2.5.1: {}
4089
+
4090
+ js-tokens@4.0.0: {}
4091
+
4092
+ jsesc@3.0.2: {}
4093
+
4094
+ json-parse-even-better-errors@3.0.2: {}
4095
+
4096
+ json5@2.2.3: {}
4097
+
4098
+ lightningcss-darwin-arm64@1.30.1:
4099
+ optional: true
4100
+
4101
+ lightningcss-darwin-x64@1.30.1:
4102
+ optional: true
4103
+
4104
+ lightningcss-freebsd-x64@1.30.1:
4105
+ optional: true
4106
+
4107
+ lightningcss-linux-arm-gnueabihf@1.30.1:
4108
+ optional: true
4109
+
4110
+ lightningcss-linux-arm64-gnu@1.30.1:
4111
+ optional: true
4112
+
4113
+ lightningcss-linux-arm64-musl@1.30.1:
4114
+ optional: true
4115
+
4116
+ lightningcss-linux-x64-gnu@1.30.1:
4117
+ optional: true
4118
+
4119
+ lightningcss-linux-x64-musl@1.30.1:
4120
+ optional: true
4121
+
4122
+ lightningcss-win32-arm64-msvc@1.30.1:
4123
+ optional: true
4124
+
4125
+ lightningcss-win32-x64-msvc@1.30.1:
4126
+ optional: true
4127
+
4128
+ lightningcss@1.30.1:
4129
+ dependencies:
4130
+ detect-libc: 2.0.4
4131
+ optionalDependencies:
4132
+ lightningcss-darwin-arm64: 1.30.1
4133
+ lightningcss-darwin-x64: 1.30.1
4134
+ lightningcss-freebsd-x64: 1.30.1
4135
+ lightningcss-linux-arm-gnueabihf: 1.30.1
4136
+ lightningcss-linux-arm64-gnu: 1.30.1
4137
+ lightningcss-linux-arm64-musl: 1.30.1
4138
+ lightningcss-linux-x64-gnu: 1.30.1
4139
+ lightningcss-linux-x64-musl: 1.30.1
4140
+ lightningcss-win32-arm64-msvc: 1.30.1
4141
+ lightningcss-win32-x64-msvc: 1.30.1
4142
+
4143
+ lodash@4.17.21: {}
4144
+
4145
+ loose-envify@1.4.0:
4146
+ dependencies:
4147
+ js-tokens: 4.0.0
4148
+
4149
+ lru-cache@10.4.3: {}
4150
+
4151
+ lru-cache@5.1.1:
4152
+ dependencies:
4153
+ yallist: 3.1.1
4154
+
4155
+ lru-cache@7.18.3: {}
4156
+
4157
+ lucide-react@0.544.0(react@18.3.1):
4158
+ dependencies:
4159
+ react: 18.3.1
4160
+
4161
+ magic-string@0.30.19:
4162
+ dependencies:
4163
+ '@jridgewell/sourcemap-codec': 1.5.5
4164
+
4165
+ math-intrinsics@1.1.0: {}
4166
+
4167
+ media-typer@0.3.0: {}
4168
+
4169
+ merge-descriptors@1.0.3: {}
4170
+
4171
+ methods@1.1.2: {}
4172
+
4173
+ mime-db@1.52.0: {}
4174
+
4175
+ mime-db@1.54.0: {}
4176
+
4177
+ mime-types@2.1.35:
4178
+ dependencies:
4179
+ mime-db: 1.52.0
4180
+
4181
+ mime@1.6.0: {}
4182
+
4183
+ minimatch@9.0.5:
4184
+ dependencies:
4185
+ brace-expansion: 2.0.2
4186
+
4187
+ minipass@7.1.2: {}
4188
+
4189
+ minizlib@3.0.2:
4190
+ dependencies:
4191
+ minipass: 7.1.2
4192
+
4193
+ mkdirp@3.0.1: {}
4194
+
4195
+ morgan@1.10.1:
4196
+ dependencies:
4197
+ basic-auth: 2.0.1
4198
+ debug: 2.6.9
4199
+ depd: 2.0.0
4200
+ on-finished: 2.3.0
4201
+ on-headers: 1.1.0
4202
+ transitivePeerDependencies:
4203
+ - supports-color
4204
+
4205
+ ms@2.0.0: {}
4206
+
4207
+ ms@2.1.3: {}
4208
+
4209
+ nanoid@3.3.11: {}
4210
+
4211
+ negotiator@0.6.3: {}
4212
+
4213
+ negotiator@0.6.4: {}
4214
+
4215
+ next-themes@0.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
4216
+ dependencies:
4217
+ react: 18.3.1
4218
+ react-dom: 18.3.1(react@18.3.1)
4219
+
4220
+ node-releases@2.0.20: {}
4221
+
4222
+ normalize-package-data@5.0.0:
4223
+ dependencies:
4224
+ hosted-git-info: 6.1.3
4225
+ is-core-module: 2.16.1
4226
+ semver: 7.7.2
4227
+ validate-npm-package-license: 3.0.4
4228
+
4229
+ npm-install-checks@6.3.0:
4230
+ dependencies:
4231
+ semver: 7.7.2
4232
+
4233
+ npm-normalize-package-bin@3.0.1: {}
4234
+
4235
+ npm-package-arg@10.1.0:
4236
+ dependencies:
4237
+ hosted-git-info: 6.1.3
4238
+ proc-log: 3.0.0
4239
+ semver: 7.7.2
4240
+ validate-npm-package-name: 5.0.1
4241
+
4242
+ npm-pick-manifest@8.0.2:
4243
+ dependencies:
4244
+ npm-install-checks: 6.3.0
4245
+ npm-normalize-package-bin: 3.0.1
4246
+ npm-package-arg: 10.1.0
4247
+ semver: 7.7.2
4248
+
4249
+ object-assign@4.1.1: {}
4250
+
4251
+ object-inspect@1.13.4: {}
4252
+
4253
+ on-finished@2.3.0:
4254
+ dependencies:
4255
+ ee-first: 1.1.1
4256
+
4257
+ on-finished@2.4.1:
4258
+ dependencies:
4259
+ ee-first: 1.1.1
4260
+
4261
+ on-headers@1.1.0: {}
4262
+
4263
+ package-json-from-dist@1.0.1: {}
4264
+
4265
+ parseurl@1.3.3: {}
4266
+
4267
+ path-key@3.1.1: {}
4268
+
4269
+ path-scurry@1.11.1:
4270
+ dependencies:
4271
+ lru-cache: 10.4.3
4272
+ minipass: 7.1.2
4273
+
4274
+ path-to-regexp@0.1.12: {}
4275
+
4276
+ pathe@1.1.2: {}
4277
+
4278
+ pathe@2.0.3: {}
4279
+
4280
+ periscopic@4.0.2:
4281
+ dependencies:
4282
+ '@types/estree': 1.0.8
4283
+ is-reference: 3.0.3
4284
+ zimmerframe: 1.1.4
4285
+
4286
+ picocolors@1.1.1: {}
4287
+
4288
+ picomatch@4.0.3: {}
4289
+
4290
+ postcss@8.5.6:
4291
+ dependencies:
4292
+ nanoid: 3.3.11
4293
+ picocolors: 1.1.1
4294
+ source-map-js: 1.2.1
4295
+
4296
+ prettier@3.6.2: {}
4297
+
4298
+ proc-log@3.0.0: {}
4299
+
4300
+ promise-inflight@1.0.1: {}
4301
+
4302
+ promise-retry@2.0.1:
4303
+ dependencies:
4304
+ err-code: 2.0.3
4305
+ retry: 0.12.0
4306
+
4307
+ prop-types@15.8.1:
4308
+ dependencies:
4309
+ loose-envify: 1.4.0
4310
+ object-assign: 4.1.1
4311
+ react-is: 16.13.1
4312
+
4313
+ proxy-addr@2.0.7:
4314
+ dependencies:
4315
+ forwarded: 0.2.0
4316
+ ipaddr.js: 1.9.1
4317
+
4318
+ proxy-from-env@1.1.0: {}
4319
+
4320
+ qs@6.13.0:
4321
+ dependencies:
4322
+ side-channel: 1.1.0
4323
+
4324
+ range-parser@1.2.1: {}
4325
+
4326
+ raw-body@2.5.2:
4327
+ dependencies:
4328
+ bytes: 3.1.2
4329
+ http-errors: 2.0.0
4330
+ iconv-lite: 0.4.24
4331
+ unpipe: 1.0.0
4332
+
4333
+ react-dom@18.3.1(react@18.3.1):
4334
+ dependencies:
4335
+ loose-envify: 1.4.0
4336
+ react: 18.3.1
4337
+ scheduler: 0.23.2
4338
+
4339
+ react-is@16.13.1: {}
4340
+
4341
+ react-is@18.3.1: {}
4342
+
4343
+ react-refresh@0.14.2: {}
4344
+
4345
+ react-remove-scroll-bar@2.3.8(@types/react@18.3.24)(react@18.3.1):
4346
+ dependencies:
4347
+ react: 18.3.1
4348
+ react-style-singleton: 2.2.3(@types/react@18.3.24)(react@18.3.1)
4349
+ tslib: 2.8.1
4350
+ optionalDependencies:
4351
+ '@types/react': 18.3.24
4352
+
4353
+ react-remove-scroll@2.7.1(@types/react@18.3.24)(react@18.3.1):
4354
+ dependencies:
4355
+ react: 18.3.1
4356
+ react-remove-scroll-bar: 2.3.8(@types/react@18.3.24)(react@18.3.1)
4357
+ react-style-singleton: 2.2.3(@types/react@18.3.24)(react@18.3.1)
4358
+ tslib: 2.8.1
4359
+ use-callback-ref: 1.3.3(@types/react@18.3.24)(react@18.3.1)
4360
+ use-sidecar: 1.1.3(@types/react@18.3.24)(react@18.3.1)
4361
+ optionalDependencies:
4362
+ '@types/react': 18.3.24
4363
+
4364
+ react-router@7.8.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
4365
+ dependencies:
4366
+ cookie: 1.0.2
4367
+ react: 18.3.1
4368
+ set-cookie-parser: 2.7.1
4369
+ optionalDependencies:
4370
+ react-dom: 18.3.1(react@18.3.1)
4371
+
4372
+ react-smooth@4.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
4373
+ dependencies:
4374
+ fast-equals: 5.2.2
4375
+ prop-types: 15.8.1
4376
+ react: 18.3.1
4377
+ react-dom: 18.3.1(react@18.3.1)
4378
+ react-transition-group: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
4379
+
4380
+ react-style-singleton@2.2.3(@types/react@18.3.24)(react@18.3.1):
4381
+ dependencies:
4382
+ get-nonce: 1.0.1
4383
+ react: 18.3.1
4384
+ tslib: 2.8.1
4385
+ optionalDependencies:
4386
+ '@types/react': 18.3.24
4387
+
4388
+ react-transition-group@4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
4389
+ dependencies:
4390
+ '@babel/runtime': 7.28.4
4391
+ dom-helpers: 5.2.1
4392
+ loose-envify: 1.4.0
4393
+ prop-types: 15.8.1
4394
+ react: 18.3.1
4395
+ react-dom: 18.3.1(react@18.3.1)
4396
+
4397
+ react@18.3.1:
4398
+ dependencies:
4399
+ loose-envify: 1.4.0
4400
+
4401
+ readdirp@4.1.2: {}
4402
+
4403
+ recharts-scale@0.4.5:
4404
+ dependencies:
4405
+ decimal.js-light: 2.5.1
4406
+
4407
+ recharts@2.15.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
4408
+ dependencies:
4409
+ clsx: 2.1.1
4410
+ eventemitter3: 4.0.7
4411
+ lodash: 4.17.21
4412
+ react: 18.3.1
4413
+ react-dom: 18.3.1(react@18.3.1)
4414
+ react-is: 18.3.1
4415
+ react-smooth: 4.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
4416
+ recharts-scale: 0.4.5
4417
+ tiny-invariant: 1.3.3
4418
+ victory-vendor: 36.9.2
4419
+
4420
+ retry@0.12.0: {}
4421
+
4422
+ rollup@4.50.1:
4423
+ dependencies:
4424
+ '@types/estree': 1.0.8
4425
+ optionalDependencies:
4426
+ '@rollup/rollup-android-arm-eabi': 4.50.1
4427
+ '@rollup/rollup-android-arm64': 4.50.1
4428
+ '@rollup/rollup-darwin-arm64': 4.50.1
4429
+ '@rollup/rollup-darwin-x64': 4.50.1
4430
+ '@rollup/rollup-freebsd-arm64': 4.50.1
4431
+ '@rollup/rollup-freebsd-x64': 4.50.1
4432
+ '@rollup/rollup-linux-arm-gnueabihf': 4.50.1
4433
+ '@rollup/rollup-linux-arm-musleabihf': 4.50.1
4434
+ '@rollup/rollup-linux-arm64-gnu': 4.50.1
4435
+ '@rollup/rollup-linux-arm64-musl': 4.50.1
4436
+ '@rollup/rollup-linux-loongarch64-gnu': 4.50.1
4437
+ '@rollup/rollup-linux-ppc64-gnu': 4.50.1
4438
+ '@rollup/rollup-linux-riscv64-gnu': 4.50.1
4439
+ '@rollup/rollup-linux-riscv64-musl': 4.50.1
4440
+ '@rollup/rollup-linux-s390x-gnu': 4.50.1
4441
+ '@rollup/rollup-linux-x64-gnu': 4.50.1
4442
+ '@rollup/rollup-linux-x64-musl': 4.50.1
4443
+ '@rollup/rollup-openharmony-arm64': 4.50.1
4444
+ '@rollup/rollup-win32-arm64-msvc': 4.50.1
4445
+ '@rollup/rollup-win32-ia32-msvc': 4.50.1
4446
+ '@rollup/rollup-win32-x64-msvc': 4.50.1
4447
+ fsevents: 2.3.3
4448
+
4449
+ safe-buffer@5.1.2: {}
4450
+
4451
+ safe-buffer@5.2.1: {}
4452
+
4453
+ safer-buffer@2.1.2: {}
4454
+
4455
+ scheduler@0.23.2:
4456
+ dependencies:
4457
+ loose-envify: 1.4.0
4458
+
4459
+ semver@6.3.1: {}
4460
+
4461
+ semver@7.7.2: {}
4462
+
4463
+ send@0.19.0:
4464
+ dependencies:
4465
+ debug: 2.6.9
4466
+ depd: 2.0.0
4467
+ destroy: 1.2.0
4468
+ encodeurl: 1.0.2
4469
+ escape-html: 1.0.3
4470
+ etag: 1.8.1
4471
+ fresh: 0.5.2
4472
+ http-errors: 2.0.0
4473
+ mime: 1.6.0
4474
+ ms: 2.1.3
4475
+ on-finished: 2.4.1
4476
+ range-parser: 1.2.1
4477
+ statuses: 2.0.1
4478
+ transitivePeerDependencies:
4479
+ - supports-color
4480
+
4481
+ serve-static@1.16.2:
4482
+ dependencies:
4483
+ encodeurl: 2.0.0
4484
+ escape-html: 1.0.3
4485
+ parseurl: 1.3.3
4486
+ send: 0.19.0
4487
+ transitivePeerDependencies:
4488
+ - supports-color
4489
+
4490
+ set-cookie-parser@2.7.1: {}
4491
+
4492
+ setprototypeof@1.2.0: {}
4493
+
4494
+ shebang-command@2.0.0:
4495
+ dependencies:
4496
+ shebang-regex: 3.0.0
4497
+
4498
+ shebang-regex@3.0.0: {}
4499
+
4500
+ side-channel-list@1.0.0:
4501
+ dependencies:
4502
+ es-errors: 1.3.0
4503
+ object-inspect: 1.13.4
4504
+
4505
+ side-channel-map@1.0.1:
4506
+ dependencies:
4507
+ call-bound: 1.0.4
4508
+ es-errors: 1.3.0
4509
+ get-intrinsic: 1.3.0
4510
+ object-inspect: 1.13.4
4511
+
4512
+ side-channel-weakmap@1.0.2:
4513
+ dependencies:
4514
+ call-bound: 1.0.4
4515
+ es-errors: 1.3.0
4516
+ get-intrinsic: 1.3.0
4517
+ object-inspect: 1.13.4
4518
+ side-channel-map: 1.0.1
4519
+
4520
+ side-channel@1.1.0:
4521
+ dependencies:
4522
+ es-errors: 1.3.0
4523
+ object-inspect: 1.13.4
4524
+ side-channel-list: 1.0.0
4525
+ side-channel-map: 1.0.1
4526
+ side-channel-weakmap: 1.0.2
4527
+
4528
+ signal-exit@4.1.0: {}
4529
+
4530
+ sonner@2.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
4531
+ dependencies:
4532
+ react: 18.3.1
4533
+ react-dom: 18.3.1(react@18.3.1)
4534
+
4535
+ source-map-js@1.2.1: {}
4536
+
4537
+ source-map-support@0.5.21:
4538
+ dependencies:
4539
+ buffer-from: 1.1.2
4540
+ source-map: 0.6.1
4541
+
4542
+ source-map@0.6.1: {}
4543
+
4544
+ spdx-correct@3.2.0:
4545
+ dependencies:
4546
+ spdx-expression-parse: 3.0.1
4547
+ spdx-license-ids: 3.0.22
4548
+
4549
+ spdx-exceptions@2.5.0: {}
4550
+
4551
+ spdx-expression-parse@3.0.1:
4552
+ dependencies:
4553
+ spdx-exceptions: 2.5.0
4554
+ spdx-license-ids: 3.0.22
4555
+
4556
+ spdx-license-ids@3.0.22: {}
4557
+
4558
+ statuses@2.0.1: {}
4559
+
4560
+ string-width@4.2.3:
4561
+ dependencies:
4562
+ emoji-regex: 8.0.0
4563
+ is-fullwidth-code-point: 3.0.0
4564
+ strip-ansi: 6.0.1
4565
+
4566
+ string-width@5.1.2:
4567
+ dependencies:
4568
+ eastasianwidth: 0.2.0
4569
+ emoji-regex: 9.2.2
4570
+ strip-ansi: 7.1.2
4571
+
4572
+ strip-ansi@6.0.1:
4573
+ dependencies:
4574
+ ansi-regex: 5.0.1
4575
+
4576
+ strip-ansi@7.1.2:
4577
+ dependencies:
4578
+ ansi-regex: 6.2.2
4579
+
4580
+ tailwind-merge@3.3.1: {}
4581
+
4582
+ tailwindcss@4.1.13: {}
4583
+
4584
+ tapable@2.2.3: {}
4585
+
4586
+ tar@7.4.3:
4587
+ dependencies:
4588
+ '@isaacs/fs-minipass': 4.0.1
4589
+ chownr: 3.0.0
4590
+ minipass: 7.1.2
4591
+ minizlib: 3.0.2
4592
+ mkdirp: 3.0.1
4593
+ yallist: 5.0.0
4594
+
4595
+ tiny-invariant@1.3.3: {}
4596
+
4597
+ tinyglobby@0.2.15:
4598
+ dependencies:
4599
+ fdir: 6.5.0(picomatch@4.0.3)
4600
+ picomatch: 4.0.3
4601
+
4602
+ toidentifier@1.0.1: {}
4603
+
4604
+ tsconfck@3.1.6(typescript@5.9.2):
4605
+ optionalDependencies:
4606
+ typescript: 5.9.2
4607
+
4608
+ tslib@2.8.1: {}
4609
+
4610
+ turbo-stream@3.1.0: {}
4611
+
4612
+ tw-animate-css@1.3.8: {}
4613
+
4614
+ type-is@1.6.18:
4615
+ dependencies:
4616
+ media-typer: 0.3.0
4617
+ mime-types: 2.1.35
4618
+
4619
+ typescript@5.9.2: {}
4620
+
4621
+ undici-types@6.21.0: {}
4622
+
4623
+ unpipe@1.0.0: {}
4624
+
4625
+ update-browserslist-db@1.1.3(browserslist@4.25.4):
4626
+ dependencies:
4627
+ browserslist: 4.25.4
4628
+ escalade: 3.2.0
4629
+ picocolors: 1.1.1
4630
+
4631
+ use-callback-ref@1.3.3(@types/react@18.3.24)(react@18.3.1):
4632
+ dependencies:
4633
+ react: 18.3.1
4634
+ tslib: 2.8.1
4635
+ optionalDependencies:
4636
+ '@types/react': 18.3.24
4637
+
4638
+ use-sidecar@1.1.3(@types/react@18.3.24)(react@18.3.1):
4639
+ dependencies:
4640
+ detect-node-es: 1.1.0
4641
+ react: 18.3.1
4642
+ tslib: 2.8.1
4643
+ optionalDependencies:
4644
+ '@types/react': 18.3.24
4645
+
4646
+ use-sync-external-store@1.5.0(react@18.3.1):
4647
+ dependencies:
4648
+ react: 18.3.1
4649
+
4650
+ utils-merge@1.0.1: {}
4651
+
4652
+ valibot@0.41.0(typescript@5.9.2):
4653
+ optionalDependencies:
4654
+ typescript: 5.9.2
4655
+
4656
+ validate-npm-package-license@3.0.4:
4657
+ dependencies:
4658
+ spdx-correct: 3.2.0
4659
+ spdx-expression-parse: 3.0.1
4660
+
4661
+ validate-npm-package-name@5.0.1: {}
4662
+
4663
+ vary@1.1.2: {}
4664
+
4665
+ vaul@1.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
4666
+ dependencies:
4667
+ '@radix-ui/react-dialog': 1.1.15(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
4668
+ react: 18.3.1
4669
+ react-dom: 18.3.1(react@18.3.1)
4670
+ transitivePeerDependencies:
4671
+ - '@types/react'
4672
+ - '@types/react-dom'
4673
+
4674
+ victory-vendor@36.9.2:
4675
+ dependencies:
4676
+ '@types/d3-array': 3.2.1
4677
+ '@types/d3-ease': 3.0.2
4678
+ '@types/d3-interpolate': 3.0.4
4679
+ '@types/d3-scale': 4.0.9
4680
+ '@types/d3-shape': 3.1.7
4681
+ '@types/d3-time': 3.0.4
4682
+ '@types/d3-timer': 3.0.2
4683
+ d3-array: 3.2.4
4684
+ d3-ease: 3.0.1
4685
+ d3-interpolate: 3.0.1
4686
+ d3-scale: 4.0.2
4687
+ d3-shape: 3.2.0
4688
+ d3-time: 3.1.0
4689
+ d3-timer: 3.0.1
4690
+
4691
+ vite-node@3.2.4(@types/node@20.19.13)(jiti@2.5.1)(lightningcss@1.30.1):
4692
+ dependencies:
4693
+ cac: 6.7.14
4694
+ debug: 4.4.1
4695
+ es-module-lexer: 1.7.0
4696
+ pathe: 2.0.3
4697
+ vite: 6.3.6(@types/node@20.19.13)(jiti@2.5.1)(lightningcss@1.30.1)
4698
+ transitivePeerDependencies:
4699
+ - '@types/node'
4700
+ - jiti
4701
+ - less
4702
+ - lightningcss
4703
+ - sass
4704
+ - sass-embedded
4705
+ - stylus
4706
+ - sugarss
4707
+ - supports-color
4708
+ - terser
4709
+ - tsx
4710
+ - yaml
4711
+
4712
+ vite-tsconfig-paths@5.1.4(typescript@5.9.2)(vite@6.3.6(@types/node@20.19.13)(jiti@2.5.1)(lightningcss@1.30.1)):
4713
+ dependencies:
4714
+ debug: 4.4.1
4715
+ globrex: 0.1.2
4716
+ tsconfck: 3.1.6(typescript@5.9.2)
4717
+ optionalDependencies:
4718
+ vite: 6.3.6(@types/node@20.19.13)(jiti@2.5.1)(lightningcss@1.30.1)
4719
+ transitivePeerDependencies:
4720
+ - supports-color
4721
+ - typescript
4722
+
4723
+ vite@6.3.6(@types/node@20.19.13)(jiti@2.5.1)(lightningcss@1.30.1):
4724
+ dependencies:
4725
+ esbuild: 0.25.9
4726
+ fdir: 6.5.0(picomatch@4.0.3)
4727
+ picomatch: 4.0.3
4728
+ postcss: 8.5.6
4729
+ rollup: 4.50.1
4730
+ tinyglobby: 0.2.15
4731
+ optionalDependencies:
4732
+ '@types/node': 20.19.13
4733
+ fsevents: 2.3.3
4734
+ jiti: 2.5.1
4735
+ lightningcss: 1.30.1
4736
+
4737
+ vitefu@1.1.1(vite@6.3.6(@types/node@20.19.13)(jiti@2.5.1)(lightningcss@1.30.1)):
4738
+ optionalDependencies:
4739
+ vite: 6.3.6(@types/node@20.19.13)(jiti@2.5.1)(lightningcss@1.30.1)
4740
+
4741
+ which@2.0.2:
4742
+ dependencies:
4743
+ isexe: 2.0.0
4744
+
4745
+ which@3.0.1:
4746
+ dependencies:
4747
+ isexe: 2.0.0
4748
+
4749
+ wrap-ansi@7.0.0:
4750
+ dependencies:
4751
+ ansi-styles: 4.3.0
4752
+ string-width: 4.2.3
4753
+ strip-ansi: 6.0.1
4754
+
4755
+ wrap-ansi@8.1.0:
4756
+ dependencies:
4757
+ ansi-styles: 6.2.3
4758
+ string-width: 5.1.2
4759
+ strip-ansi: 7.1.2
4760
+
4761
+ yallist@3.1.1: {}
4762
+
4763
+ yallist@5.0.0: {}
4764
+
4765
+ zimmerframe@1.1.4: {}
4766
+
4767
+ zod@4.1.8: {}