@adstage/web-sdk 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (68) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +70 -0
  3. package/dist/index.cjs.js +2304 -0
  4. package/dist/index.d.ts +416 -0
  5. package/dist/index.esm.js +2288 -0
  6. package/dist/index.standalone.js +2331 -0
  7. package/examples/README.md +33 -0
  8. package/examples/banner-ads.html +512 -0
  9. package/examples/index.html +338 -0
  10. package/examples/native-ads.html +634 -0
  11. package/examples/react-app/README.md +70 -0
  12. package/examples/react-app/index.html +13 -0
  13. package/examples/react-app/package-lock.json +3042 -0
  14. package/examples/react-app/package.json +26 -0
  15. package/examples/react-app/pnpm-lock.yaml +1857 -0
  16. package/examples/react-app/public/index.standalone.js +2331 -0
  17. package/examples/react-app/src/App.tsx +226 -0
  18. package/examples/react-app/src/index.css +37 -0
  19. package/examples/react-app/src/main.tsx +10 -0
  20. package/examples/react-app/tsconfig.json +25 -0
  21. package/examples/react-app/tsconfig.node.json +10 -0
  22. package/examples/react-app/vite.config.ts +15 -0
  23. package/examples/react-nextjs/app/globals.css +200 -0
  24. package/examples/react-nextjs/app/layout.tsx +27 -0
  25. package/examples/react-nextjs/app/page.tsx +258 -0
  26. package/examples/react-nextjs/next.config.js +9 -0
  27. package/examples/react-nextjs/package.json +22 -0
  28. package/examples/react-nextjs/pnpm-lock.yaml +343 -0
  29. package/examples/react-nextjs/tsconfig.json +34 -0
  30. package/examples/text-ads.html +597 -0
  31. package/examples/video-ads.html +739 -0
  32. package/package.json +83 -0
  33. package/src/global.d.ts +20 -0
  34. package/src/index.ts +350 -0
  35. package/src/managers/device-info-collector.ts +127 -0
  36. package/src/managers/event-tracker.ts +131 -0
  37. package/src/managers/fade-slider-manager.ts +276 -0
  38. package/src/managers/impression-tracker.ts +88 -0
  39. package/src/managers/slider-manager.ts +405 -0
  40. package/src/react/components/AdErrorBoundary.tsx +75 -0
  41. package/src/react/components/AdSlot.tsx +144 -0
  42. package/src/react/components/BannerAd.tsx +24 -0
  43. package/src/react/components/InterstitialAd.tsx +24 -0
  44. package/src/react/components/NativeAd.tsx +24 -0
  45. package/src/react/components/TextAd.tsx +24 -0
  46. package/src/react/components/VideoAd.tsx +24 -0
  47. package/src/react/components/index.ts +8 -0
  48. package/src/react/hooks/index.ts +4 -0
  49. package/src/react/hooks/useAdSlot.ts +83 -0
  50. package/src/react/hooks/useAdStage.ts +14 -0
  51. package/src/react/hooks/useAdTracking.ts +61 -0
  52. package/src/react/index.ts +4 -0
  53. package/src/react/providers/AdStageProvider.tsx +86 -0
  54. package/src/react/providers/index.ts +2 -0
  55. package/src/renderers/banner-renderer.ts +35 -0
  56. package/src/renderers/base-renderer.ts +207 -0
  57. package/src/renderers/index.ts +71 -0
  58. package/src/renderers/interstitial-renderer.ts +70 -0
  59. package/src/renderers/native-renderer.ts +35 -0
  60. package/src/renderers/text-renderer.ts +94 -0
  61. package/src/renderers/video-renderer.ts +63 -0
  62. package/src/types/advertisement.ts +197 -0
  63. package/src/types/api.ts +173 -0
  64. package/src/types/config.ts +174 -0
  65. package/src/types/events.ts +60 -0
  66. package/src/types/index.ts +6 -0
  67. package/src/utils/dom-utils.ts +237 -0
  68. package/src/utils/sdk-utils.ts +134 -0
@@ -0,0 +1,1857 @@
1
+ lockfileVersion: '9.0'
2
+
3
+ settings:
4
+ autoInstallPeers: true
5
+ excludeLinksFromLockfile: false
6
+
7
+ importers:
8
+
9
+ .:
10
+ dependencies:
11
+ react:
12
+ specifier: ^18.2.0
13
+ version: 18.3.1
14
+ react-dom:
15
+ specifier: ^18.2.0
16
+ version: 18.3.1(react@18.3.1)
17
+ devDependencies:
18
+ '@types/react':
19
+ specifier: ^18.2.0
20
+ version: 18.3.23
21
+ '@types/react-dom':
22
+ specifier: ^18.2.0
23
+ version: 18.3.7(@types/react@18.3.23)
24
+ '@typescript-eslint/eslint-plugin':
25
+ specifier: ^6.0.0
26
+ version: 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.9.2))(eslint@8.57.1)(typescript@5.9.2)
27
+ '@typescript-eslint/parser':
28
+ specifier: ^6.0.0
29
+ version: 6.21.0(eslint@8.57.1)(typescript@5.9.2)
30
+ '@vitejs/plugin-react':
31
+ specifier: ^4.1.0
32
+ version: 4.7.0(vite@4.5.14)
33
+ eslint:
34
+ specifier: ^8.45.0
35
+ version: 8.57.1
36
+ typescript:
37
+ specifier: ^5.0.0
38
+ version: 5.9.2
39
+ vite:
40
+ specifier: ^4.4.0
41
+ version: 4.5.14
42
+
43
+ packages:
44
+
45
+ '@ampproject/remapping@2.3.0':
46
+ resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
47
+ engines: {node: '>=6.0.0'}
48
+
49
+ '@babel/code-frame@7.27.1':
50
+ resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
51
+ engines: {node: '>=6.9.0'}
52
+
53
+ '@babel/compat-data@7.28.0':
54
+ resolution: {integrity: sha512-60X7qkglvrap8mn1lh2ebxXdZYtUcpd7gsmy9kLaBJ4i/WdY8PqTSdxyA8qraikqKQK5C1KRBKXqznrVapyNaw==}
55
+ engines: {node: '>=6.9.0'}
56
+
57
+ '@babel/core@7.28.3':
58
+ resolution: {integrity: sha512-yDBHV9kQNcr2/sUr9jghVyz9C3Y5G2zUM2H2lo+9mKv4sFgbA8s8Z9t8D1jiTkGoO/NoIfKMyKWr4s6CN23ZwQ==}
59
+ engines: {node: '>=6.9.0'}
60
+
61
+ '@babel/generator@7.28.3':
62
+ resolution: {integrity: sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==}
63
+ engines: {node: '>=6.9.0'}
64
+
65
+ '@babel/helper-compilation-targets@7.27.2':
66
+ resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==}
67
+ engines: {node: '>=6.9.0'}
68
+
69
+ '@babel/helper-globals@7.28.0':
70
+ resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==}
71
+ engines: {node: '>=6.9.0'}
72
+
73
+ '@babel/helper-module-imports@7.27.1':
74
+ resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==}
75
+ engines: {node: '>=6.9.0'}
76
+
77
+ '@babel/helper-module-transforms@7.28.3':
78
+ resolution: {integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==}
79
+ engines: {node: '>=6.9.0'}
80
+ peerDependencies:
81
+ '@babel/core': ^7.0.0
82
+
83
+ '@babel/helper-plugin-utils@7.27.1':
84
+ resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==}
85
+ engines: {node: '>=6.9.0'}
86
+
87
+ '@babel/helper-string-parser@7.27.1':
88
+ resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
89
+ engines: {node: '>=6.9.0'}
90
+
91
+ '@babel/helper-validator-identifier@7.27.1':
92
+ resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==}
93
+ engines: {node: '>=6.9.0'}
94
+
95
+ '@babel/helper-validator-option@7.27.1':
96
+ resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
97
+ engines: {node: '>=6.9.0'}
98
+
99
+ '@babel/helpers@7.28.3':
100
+ resolution: {integrity: sha512-PTNtvUQihsAsDHMOP5pfobP8C6CM4JWXmP8DrEIt46c3r2bf87Ua1zoqevsMo9g+tWDwgWrFP5EIxuBx5RudAw==}
101
+ engines: {node: '>=6.9.0'}
102
+
103
+ '@babel/parser@7.28.3':
104
+ resolution: {integrity: sha512-7+Ey1mAgYqFAx2h0RuoxcQT5+MlG3GTV0TQrgr7/ZliKsm/MNDxVVutlWaziMq7wJNAz8MTqz55XLpWvva6StA==}
105
+ engines: {node: '>=6.0.0'}
106
+ hasBin: true
107
+
108
+ '@babel/plugin-transform-react-jsx-self@7.27.1':
109
+ resolution: {integrity: sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==}
110
+ engines: {node: '>=6.9.0'}
111
+ peerDependencies:
112
+ '@babel/core': ^7.0.0-0
113
+
114
+ '@babel/plugin-transform-react-jsx-source@7.27.1':
115
+ resolution: {integrity: sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==}
116
+ engines: {node: '>=6.9.0'}
117
+ peerDependencies:
118
+ '@babel/core': ^7.0.0-0
119
+
120
+ '@babel/template@7.27.2':
121
+ resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
122
+ engines: {node: '>=6.9.0'}
123
+
124
+ '@babel/traverse@7.28.3':
125
+ resolution: {integrity: sha512-7w4kZYHneL3A6NP2nxzHvT3HCZ7puDZZjFMqDpBPECub79sTtSO5CGXDkKrTQq8ksAwfD/XI2MRFX23njdDaIQ==}
126
+ engines: {node: '>=6.9.0'}
127
+
128
+ '@babel/types@7.28.2':
129
+ resolution: {integrity: sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==}
130
+ engines: {node: '>=6.9.0'}
131
+
132
+ '@esbuild/android-arm64@0.18.20':
133
+ resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==}
134
+ engines: {node: '>=12'}
135
+ cpu: [arm64]
136
+ os: [android]
137
+
138
+ '@esbuild/android-arm@0.18.20':
139
+ resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==}
140
+ engines: {node: '>=12'}
141
+ cpu: [arm]
142
+ os: [android]
143
+
144
+ '@esbuild/android-x64@0.18.20':
145
+ resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==}
146
+ engines: {node: '>=12'}
147
+ cpu: [x64]
148
+ os: [android]
149
+
150
+ '@esbuild/darwin-arm64@0.18.20':
151
+ resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==}
152
+ engines: {node: '>=12'}
153
+ cpu: [arm64]
154
+ os: [darwin]
155
+
156
+ '@esbuild/darwin-x64@0.18.20':
157
+ resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==}
158
+ engines: {node: '>=12'}
159
+ cpu: [x64]
160
+ os: [darwin]
161
+
162
+ '@esbuild/freebsd-arm64@0.18.20':
163
+ resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==}
164
+ engines: {node: '>=12'}
165
+ cpu: [arm64]
166
+ os: [freebsd]
167
+
168
+ '@esbuild/freebsd-x64@0.18.20':
169
+ resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==}
170
+ engines: {node: '>=12'}
171
+ cpu: [x64]
172
+ os: [freebsd]
173
+
174
+ '@esbuild/linux-arm64@0.18.20':
175
+ resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==}
176
+ engines: {node: '>=12'}
177
+ cpu: [arm64]
178
+ os: [linux]
179
+
180
+ '@esbuild/linux-arm@0.18.20':
181
+ resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==}
182
+ engines: {node: '>=12'}
183
+ cpu: [arm]
184
+ os: [linux]
185
+
186
+ '@esbuild/linux-ia32@0.18.20':
187
+ resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==}
188
+ engines: {node: '>=12'}
189
+ cpu: [ia32]
190
+ os: [linux]
191
+
192
+ '@esbuild/linux-loong64@0.18.20':
193
+ resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==}
194
+ engines: {node: '>=12'}
195
+ cpu: [loong64]
196
+ os: [linux]
197
+
198
+ '@esbuild/linux-mips64el@0.18.20':
199
+ resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==}
200
+ engines: {node: '>=12'}
201
+ cpu: [mips64el]
202
+ os: [linux]
203
+
204
+ '@esbuild/linux-ppc64@0.18.20':
205
+ resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==}
206
+ engines: {node: '>=12'}
207
+ cpu: [ppc64]
208
+ os: [linux]
209
+
210
+ '@esbuild/linux-riscv64@0.18.20':
211
+ resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==}
212
+ engines: {node: '>=12'}
213
+ cpu: [riscv64]
214
+ os: [linux]
215
+
216
+ '@esbuild/linux-s390x@0.18.20':
217
+ resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==}
218
+ engines: {node: '>=12'}
219
+ cpu: [s390x]
220
+ os: [linux]
221
+
222
+ '@esbuild/linux-x64@0.18.20':
223
+ resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==}
224
+ engines: {node: '>=12'}
225
+ cpu: [x64]
226
+ os: [linux]
227
+
228
+ '@esbuild/netbsd-x64@0.18.20':
229
+ resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==}
230
+ engines: {node: '>=12'}
231
+ cpu: [x64]
232
+ os: [netbsd]
233
+
234
+ '@esbuild/openbsd-x64@0.18.20':
235
+ resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==}
236
+ engines: {node: '>=12'}
237
+ cpu: [x64]
238
+ os: [openbsd]
239
+
240
+ '@esbuild/sunos-x64@0.18.20':
241
+ resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==}
242
+ engines: {node: '>=12'}
243
+ cpu: [x64]
244
+ os: [sunos]
245
+
246
+ '@esbuild/win32-arm64@0.18.20':
247
+ resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==}
248
+ engines: {node: '>=12'}
249
+ cpu: [arm64]
250
+ os: [win32]
251
+
252
+ '@esbuild/win32-ia32@0.18.20':
253
+ resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==}
254
+ engines: {node: '>=12'}
255
+ cpu: [ia32]
256
+ os: [win32]
257
+
258
+ '@esbuild/win32-x64@0.18.20':
259
+ resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==}
260
+ engines: {node: '>=12'}
261
+ cpu: [x64]
262
+ os: [win32]
263
+
264
+ '@eslint-community/eslint-utils@4.7.0':
265
+ resolution: {integrity: sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==}
266
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
267
+ peerDependencies:
268
+ eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
269
+
270
+ '@eslint-community/regexpp@4.12.1':
271
+ resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
272
+ engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
273
+
274
+ '@eslint/eslintrc@2.1.4':
275
+ resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==}
276
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
277
+
278
+ '@eslint/js@8.57.1':
279
+ resolution: {integrity: sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==}
280
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
281
+
282
+ '@humanwhocodes/config-array@0.13.0':
283
+ resolution: {integrity: sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==}
284
+ engines: {node: '>=10.10.0'}
285
+ deprecated: Use @eslint/config-array instead
286
+
287
+ '@humanwhocodes/module-importer@1.0.1':
288
+ resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
289
+ engines: {node: '>=12.22'}
290
+
291
+ '@humanwhocodes/object-schema@2.0.3':
292
+ resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==}
293
+ deprecated: Use @eslint/object-schema instead
294
+
295
+ '@jridgewell/gen-mapping@0.3.13':
296
+ resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
297
+
298
+ '@jridgewell/resolve-uri@3.1.2':
299
+ resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
300
+ engines: {node: '>=6.0.0'}
301
+
302
+ '@jridgewell/sourcemap-codec@1.5.5':
303
+ resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
304
+
305
+ '@jridgewell/trace-mapping@0.3.30':
306
+ resolution: {integrity: sha512-GQ7Nw5G2lTu/BtHTKfXhKHok2WGetd4XYcVKGx00SjAk8GMwgJM3zr6zORiPGuOE+/vkc90KtTosSSvaCjKb2Q==}
307
+
308
+ '@nodelib/fs.scandir@2.1.5':
309
+ resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
310
+ engines: {node: '>= 8'}
311
+
312
+ '@nodelib/fs.stat@2.0.5':
313
+ resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
314
+ engines: {node: '>= 8'}
315
+
316
+ '@nodelib/fs.walk@1.2.8':
317
+ resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
318
+ engines: {node: '>= 8'}
319
+
320
+ '@rolldown/pluginutils@1.0.0-beta.27':
321
+ resolution: {integrity: sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==}
322
+
323
+ '@types/babel__core@7.20.5':
324
+ resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
325
+
326
+ '@types/babel__generator@7.27.0':
327
+ resolution: {integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==}
328
+
329
+ '@types/babel__template@7.4.4':
330
+ resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
331
+
332
+ '@types/babel__traverse@7.28.0':
333
+ resolution: {integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==}
334
+
335
+ '@types/json-schema@7.0.15':
336
+ resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
337
+
338
+ '@types/prop-types@15.7.15':
339
+ resolution: {integrity: sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==}
340
+
341
+ '@types/react-dom@18.3.7':
342
+ resolution: {integrity: sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ==}
343
+ peerDependencies:
344
+ '@types/react': ^18.0.0
345
+
346
+ '@types/react@18.3.23':
347
+ resolution: {integrity: sha512-/LDXMQh55EzZQ0uVAZmKKhfENivEvWz6E+EYzh+/MCjMhNsotd+ZHhBGIjFDTi6+fz0OhQQQLbTgdQIxxCsC0w==}
348
+
349
+ '@types/semver@7.7.0':
350
+ resolution: {integrity: sha512-k107IF4+Xr7UHjwDc7Cfd6PRQfbdkiRabXGRjo07b4WyPahFBZCZ1sE+BNxYIJPPg73UkfOsVOLwqVc/6ETrIA==}
351
+
352
+ '@typescript-eslint/eslint-plugin@6.21.0':
353
+ resolution: {integrity: sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA==}
354
+ engines: {node: ^16.0.0 || >=18.0.0}
355
+ peerDependencies:
356
+ '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha
357
+ eslint: ^7.0.0 || ^8.0.0
358
+ typescript: '*'
359
+ peerDependenciesMeta:
360
+ typescript:
361
+ optional: true
362
+
363
+ '@typescript-eslint/parser@6.21.0':
364
+ resolution: {integrity: sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==}
365
+ engines: {node: ^16.0.0 || >=18.0.0}
366
+ peerDependencies:
367
+ eslint: ^7.0.0 || ^8.0.0
368
+ typescript: '*'
369
+ peerDependenciesMeta:
370
+ typescript:
371
+ optional: true
372
+
373
+ '@typescript-eslint/scope-manager@6.21.0':
374
+ resolution: {integrity: sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==}
375
+ engines: {node: ^16.0.0 || >=18.0.0}
376
+
377
+ '@typescript-eslint/type-utils@6.21.0':
378
+ resolution: {integrity: sha512-rZQI7wHfao8qMX3Rd3xqeYSMCL3SoiSQLBATSiVKARdFGCYSRvmViieZjqc58jKgs8Y8i9YvVVhRbHSTA4VBag==}
379
+ engines: {node: ^16.0.0 || >=18.0.0}
380
+ peerDependencies:
381
+ eslint: ^7.0.0 || ^8.0.0
382
+ typescript: '*'
383
+ peerDependenciesMeta:
384
+ typescript:
385
+ optional: true
386
+
387
+ '@typescript-eslint/types@6.21.0':
388
+ resolution: {integrity: sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==}
389
+ engines: {node: ^16.0.0 || >=18.0.0}
390
+
391
+ '@typescript-eslint/typescript-estree@6.21.0':
392
+ resolution: {integrity: sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==}
393
+ engines: {node: ^16.0.0 || >=18.0.0}
394
+ peerDependencies:
395
+ typescript: '*'
396
+ peerDependenciesMeta:
397
+ typescript:
398
+ optional: true
399
+
400
+ '@typescript-eslint/utils@6.21.0':
401
+ resolution: {integrity: sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ==}
402
+ engines: {node: ^16.0.0 || >=18.0.0}
403
+ peerDependencies:
404
+ eslint: ^7.0.0 || ^8.0.0
405
+
406
+ '@typescript-eslint/visitor-keys@6.21.0':
407
+ resolution: {integrity: sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==}
408
+ engines: {node: ^16.0.0 || >=18.0.0}
409
+
410
+ '@ungap/structured-clone@1.3.0':
411
+ resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==}
412
+
413
+ '@vitejs/plugin-react@4.7.0':
414
+ resolution: {integrity: sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==}
415
+ engines: {node: ^14.18.0 || >=16.0.0}
416
+ peerDependencies:
417
+ vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
418
+
419
+ acorn-jsx@5.3.2:
420
+ resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
421
+ peerDependencies:
422
+ acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
423
+
424
+ acorn@8.15.0:
425
+ resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==}
426
+ engines: {node: '>=0.4.0'}
427
+ hasBin: true
428
+
429
+ ajv@6.12.6:
430
+ resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
431
+
432
+ ansi-regex@5.0.1:
433
+ resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
434
+ engines: {node: '>=8'}
435
+
436
+ ansi-styles@4.3.0:
437
+ resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
438
+ engines: {node: '>=8'}
439
+
440
+ argparse@2.0.1:
441
+ resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
442
+
443
+ array-union@2.1.0:
444
+ resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
445
+ engines: {node: '>=8'}
446
+
447
+ balanced-match@1.0.2:
448
+ resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
449
+
450
+ brace-expansion@1.1.12:
451
+ resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==}
452
+
453
+ brace-expansion@2.0.2:
454
+ resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==}
455
+
456
+ braces@3.0.3:
457
+ resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
458
+ engines: {node: '>=8'}
459
+
460
+ browserslist@4.25.2:
461
+ resolution: {integrity: sha512-0si2SJK3ooGzIawRu61ZdPCO1IncZwS8IzuX73sPZsXW6EQ/w/DAfPyKI8l1ETTCr2MnvqWitmlCUxgdul45jA==}
462
+ engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
463
+ hasBin: true
464
+
465
+ callsites@3.1.0:
466
+ resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
467
+ engines: {node: '>=6'}
468
+
469
+ caniuse-lite@1.0.30001735:
470
+ resolution: {integrity: sha512-EV/laoX7Wq2J9TQlyIXRxTJqIw4sxfXS4OYgudGxBYRuTv0q7AM6yMEpU/Vo1I94thg9U6EZ2NfZx9GJq83u7w==}
471
+
472
+ chalk@4.1.2:
473
+ resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
474
+ engines: {node: '>=10'}
475
+
476
+ color-convert@2.0.1:
477
+ resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
478
+ engines: {node: '>=7.0.0'}
479
+
480
+ color-name@1.1.4:
481
+ resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
482
+
483
+ concat-map@0.0.1:
484
+ resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
485
+
486
+ convert-source-map@2.0.0:
487
+ resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
488
+
489
+ cross-spawn@7.0.6:
490
+ resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
491
+ engines: {node: '>= 8'}
492
+
493
+ csstype@3.1.3:
494
+ resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
495
+
496
+ debug@4.4.1:
497
+ resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==}
498
+ engines: {node: '>=6.0'}
499
+ peerDependencies:
500
+ supports-color: '*'
501
+ peerDependenciesMeta:
502
+ supports-color:
503
+ optional: true
504
+
505
+ deep-is@0.1.4:
506
+ resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
507
+
508
+ dir-glob@3.0.1:
509
+ resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
510
+ engines: {node: '>=8'}
511
+
512
+ doctrine@3.0.0:
513
+ resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
514
+ engines: {node: '>=6.0.0'}
515
+
516
+ electron-to-chromium@1.5.203:
517
+ resolution: {integrity: sha512-uz4i0vLhfm6dLZWbz/iH88KNDV+ivj5+2SA+utpgjKaj9Q0iDLuwk6Idhe9BTxciHudyx6IvTvijhkPvFGUQ0g==}
518
+
519
+ esbuild@0.18.20:
520
+ resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==}
521
+ engines: {node: '>=12'}
522
+ hasBin: true
523
+
524
+ escalade@3.2.0:
525
+ resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
526
+ engines: {node: '>=6'}
527
+
528
+ escape-string-regexp@4.0.0:
529
+ resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
530
+ engines: {node: '>=10'}
531
+
532
+ eslint-scope@7.2.2:
533
+ resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
534
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
535
+
536
+ eslint-visitor-keys@3.4.3:
537
+ resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
538
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
539
+
540
+ eslint@8.57.1:
541
+ resolution: {integrity: sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==}
542
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
543
+ deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options.
544
+ hasBin: true
545
+
546
+ espree@9.6.1:
547
+ resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
548
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
549
+
550
+ esquery@1.6.0:
551
+ resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
552
+ engines: {node: '>=0.10'}
553
+
554
+ esrecurse@4.3.0:
555
+ resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
556
+ engines: {node: '>=4.0'}
557
+
558
+ estraverse@5.3.0:
559
+ resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
560
+ engines: {node: '>=4.0'}
561
+
562
+ esutils@2.0.3:
563
+ resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
564
+ engines: {node: '>=0.10.0'}
565
+
566
+ fast-deep-equal@3.1.3:
567
+ resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
568
+
569
+ fast-glob@3.3.3:
570
+ resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
571
+ engines: {node: '>=8.6.0'}
572
+
573
+ fast-json-stable-stringify@2.1.0:
574
+ resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
575
+
576
+ fast-levenshtein@2.0.6:
577
+ resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
578
+
579
+ fastq@1.19.1:
580
+ resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==}
581
+
582
+ file-entry-cache@6.0.1:
583
+ resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
584
+ engines: {node: ^10.12.0 || >=12.0.0}
585
+
586
+ fill-range@7.1.1:
587
+ resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
588
+ engines: {node: '>=8'}
589
+
590
+ find-up@5.0.0:
591
+ resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
592
+ engines: {node: '>=10'}
593
+
594
+ flat-cache@3.2.0:
595
+ resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
596
+ engines: {node: ^10.12.0 || >=12.0.0}
597
+
598
+ flatted@3.3.3:
599
+ resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
600
+
601
+ fs.realpath@1.0.0:
602
+ resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
603
+
604
+ fsevents@2.3.3:
605
+ resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
606
+ engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
607
+ os: [darwin]
608
+
609
+ gensync@1.0.0-beta.2:
610
+ resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
611
+ engines: {node: '>=6.9.0'}
612
+
613
+ glob-parent@5.1.2:
614
+ resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
615
+ engines: {node: '>= 6'}
616
+
617
+ glob-parent@6.0.2:
618
+ resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
619
+ engines: {node: '>=10.13.0'}
620
+
621
+ glob@7.2.3:
622
+ resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
623
+ deprecated: Glob versions prior to v9 are no longer supported
624
+
625
+ globals@13.24.0:
626
+ resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
627
+ engines: {node: '>=8'}
628
+
629
+ globby@11.1.0:
630
+ resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
631
+ engines: {node: '>=10'}
632
+
633
+ graphemer@1.4.0:
634
+ resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
635
+
636
+ has-flag@4.0.0:
637
+ resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
638
+ engines: {node: '>=8'}
639
+
640
+ ignore@5.3.2:
641
+ resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
642
+ engines: {node: '>= 4'}
643
+
644
+ import-fresh@3.3.1:
645
+ resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
646
+ engines: {node: '>=6'}
647
+
648
+ imurmurhash@0.1.4:
649
+ resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
650
+ engines: {node: '>=0.8.19'}
651
+
652
+ inflight@1.0.6:
653
+ resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
654
+ deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
655
+
656
+ inherits@2.0.4:
657
+ resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
658
+
659
+ is-extglob@2.1.1:
660
+ resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
661
+ engines: {node: '>=0.10.0'}
662
+
663
+ is-glob@4.0.3:
664
+ resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
665
+ engines: {node: '>=0.10.0'}
666
+
667
+ is-number@7.0.0:
668
+ resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
669
+ engines: {node: '>=0.12.0'}
670
+
671
+ is-path-inside@3.0.3:
672
+ resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
673
+ engines: {node: '>=8'}
674
+
675
+ isexe@2.0.0:
676
+ resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
677
+
678
+ js-tokens@4.0.0:
679
+ resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
680
+
681
+ js-yaml@4.1.0:
682
+ resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
683
+ hasBin: true
684
+
685
+ jsesc@3.1.0:
686
+ resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
687
+ engines: {node: '>=6'}
688
+ hasBin: true
689
+
690
+ json-buffer@3.0.1:
691
+ resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
692
+
693
+ json-schema-traverse@0.4.1:
694
+ resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
695
+
696
+ json-stable-stringify-without-jsonify@1.0.1:
697
+ resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
698
+
699
+ json5@2.2.3:
700
+ resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
701
+ engines: {node: '>=6'}
702
+ hasBin: true
703
+
704
+ keyv@4.5.4:
705
+ resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
706
+
707
+ levn@0.4.1:
708
+ resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
709
+ engines: {node: '>= 0.8.0'}
710
+
711
+ locate-path@6.0.0:
712
+ resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
713
+ engines: {node: '>=10'}
714
+
715
+ lodash.merge@4.6.2:
716
+ resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
717
+
718
+ loose-envify@1.4.0:
719
+ resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
720
+ hasBin: true
721
+
722
+ lru-cache@5.1.1:
723
+ resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
724
+
725
+ merge2@1.4.1:
726
+ resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
727
+ engines: {node: '>= 8'}
728
+
729
+ micromatch@4.0.8:
730
+ resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
731
+ engines: {node: '>=8.6'}
732
+
733
+ minimatch@3.1.2:
734
+ resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
735
+
736
+ minimatch@9.0.3:
737
+ resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==}
738
+ engines: {node: '>=16 || 14 >=14.17'}
739
+
740
+ ms@2.1.3:
741
+ resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
742
+
743
+ nanoid@3.3.11:
744
+ resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
745
+ engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
746
+ hasBin: true
747
+
748
+ natural-compare@1.4.0:
749
+ resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
750
+
751
+ node-releases@2.0.19:
752
+ resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==}
753
+
754
+ once@1.4.0:
755
+ resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
756
+
757
+ optionator@0.9.4:
758
+ resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
759
+ engines: {node: '>= 0.8.0'}
760
+
761
+ p-limit@3.1.0:
762
+ resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
763
+ engines: {node: '>=10'}
764
+
765
+ p-locate@5.0.0:
766
+ resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
767
+ engines: {node: '>=10'}
768
+
769
+ parent-module@1.0.1:
770
+ resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
771
+ engines: {node: '>=6'}
772
+
773
+ path-exists@4.0.0:
774
+ resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
775
+ engines: {node: '>=8'}
776
+
777
+ path-is-absolute@1.0.1:
778
+ resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
779
+ engines: {node: '>=0.10.0'}
780
+
781
+ path-key@3.1.1:
782
+ resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
783
+ engines: {node: '>=8'}
784
+
785
+ path-type@4.0.0:
786
+ resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
787
+ engines: {node: '>=8'}
788
+
789
+ picocolors@1.1.1:
790
+ resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
791
+
792
+ picomatch@2.3.1:
793
+ resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
794
+ engines: {node: '>=8.6'}
795
+
796
+ postcss@8.5.6:
797
+ resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
798
+ engines: {node: ^10 || ^12 || >=14}
799
+
800
+ prelude-ls@1.2.1:
801
+ resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
802
+ engines: {node: '>= 0.8.0'}
803
+
804
+ punycode@2.3.1:
805
+ resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
806
+ engines: {node: '>=6'}
807
+
808
+ queue-microtask@1.2.3:
809
+ resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
810
+
811
+ react-dom@18.3.1:
812
+ resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==}
813
+ peerDependencies:
814
+ react: ^18.3.1
815
+
816
+ react-refresh@0.17.0:
817
+ resolution: {integrity: sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==}
818
+ engines: {node: '>=0.10.0'}
819
+
820
+ react@18.3.1:
821
+ resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
822
+ engines: {node: '>=0.10.0'}
823
+
824
+ resolve-from@4.0.0:
825
+ resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
826
+ engines: {node: '>=4'}
827
+
828
+ reusify@1.1.0:
829
+ resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
830
+ engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
831
+
832
+ rimraf@3.0.2:
833
+ resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
834
+ deprecated: Rimraf versions prior to v4 are no longer supported
835
+ hasBin: true
836
+
837
+ rollup@3.29.5:
838
+ resolution: {integrity: sha512-GVsDdsbJzzy4S/v3dqWPJ7EfvZJfCHiDqe80IyrF59LYuP+e6U1LJoUqeuqRbwAWoMNoXivMNeNAOf5E22VA1w==}
839
+ engines: {node: '>=14.18.0', npm: '>=8.0.0'}
840
+ hasBin: true
841
+
842
+ run-parallel@1.2.0:
843
+ resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
844
+
845
+ scheduler@0.23.2:
846
+ resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==}
847
+
848
+ semver@6.3.1:
849
+ resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
850
+ hasBin: true
851
+
852
+ semver@7.7.2:
853
+ resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==}
854
+ engines: {node: '>=10'}
855
+ hasBin: true
856
+
857
+ shebang-command@2.0.0:
858
+ resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
859
+ engines: {node: '>=8'}
860
+
861
+ shebang-regex@3.0.0:
862
+ resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
863
+ engines: {node: '>=8'}
864
+
865
+ slash@3.0.0:
866
+ resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
867
+ engines: {node: '>=8'}
868
+
869
+ source-map-js@1.2.1:
870
+ resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
871
+ engines: {node: '>=0.10.0'}
872
+
873
+ strip-ansi@6.0.1:
874
+ resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
875
+ engines: {node: '>=8'}
876
+
877
+ strip-json-comments@3.1.1:
878
+ resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
879
+ engines: {node: '>=8'}
880
+
881
+ supports-color@7.2.0:
882
+ resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
883
+ engines: {node: '>=8'}
884
+
885
+ text-table@0.2.0:
886
+ resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
887
+
888
+ to-regex-range@5.0.1:
889
+ resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
890
+ engines: {node: '>=8.0'}
891
+
892
+ ts-api-utils@1.4.3:
893
+ resolution: {integrity: sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==}
894
+ engines: {node: '>=16'}
895
+ peerDependencies:
896
+ typescript: '>=4.2.0'
897
+
898
+ type-check@0.4.0:
899
+ resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
900
+ engines: {node: '>= 0.8.0'}
901
+
902
+ type-fest@0.20.2:
903
+ resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
904
+ engines: {node: '>=10'}
905
+
906
+ typescript@5.9.2:
907
+ resolution: {integrity: sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==}
908
+ engines: {node: '>=14.17'}
909
+ hasBin: true
910
+
911
+ update-browserslist-db@1.1.3:
912
+ resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==}
913
+ hasBin: true
914
+ peerDependencies:
915
+ browserslist: '>= 4.21.0'
916
+
917
+ uri-js@4.4.1:
918
+ resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
919
+
920
+ vite@4.5.14:
921
+ resolution: {integrity: sha512-+v57oAaoYNnO3hIu5Z/tJRZjq5aHM2zDve9YZ8HngVHbhk66RStobhb1sqPMIPEleV6cNKYK4eGrAbE9Ulbl2g==}
922
+ engines: {node: ^14.18.0 || >=16.0.0}
923
+ hasBin: true
924
+ peerDependencies:
925
+ '@types/node': '>= 14'
926
+ less: '*'
927
+ lightningcss: ^1.21.0
928
+ sass: '*'
929
+ stylus: '*'
930
+ sugarss: '*'
931
+ terser: ^5.4.0
932
+ peerDependenciesMeta:
933
+ '@types/node':
934
+ optional: true
935
+ less:
936
+ optional: true
937
+ lightningcss:
938
+ optional: true
939
+ sass:
940
+ optional: true
941
+ stylus:
942
+ optional: true
943
+ sugarss:
944
+ optional: true
945
+ terser:
946
+ optional: true
947
+
948
+ which@2.0.2:
949
+ resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
950
+ engines: {node: '>= 8'}
951
+ hasBin: true
952
+
953
+ word-wrap@1.2.5:
954
+ resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
955
+ engines: {node: '>=0.10.0'}
956
+
957
+ wrappy@1.0.2:
958
+ resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
959
+
960
+ yallist@3.1.1:
961
+ resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
962
+
963
+ yocto-queue@0.1.0:
964
+ resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
965
+ engines: {node: '>=10'}
966
+
967
+ snapshots:
968
+
969
+ '@ampproject/remapping@2.3.0':
970
+ dependencies:
971
+ '@jridgewell/gen-mapping': 0.3.13
972
+ '@jridgewell/trace-mapping': 0.3.30
973
+
974
+ '@babel/code-frame@7.27.1':
975
+ dependencies:
976
+ '@babel/helper-validator-identifier': 7.27.1
977
+ js-tokens: 4.0.0
978
+ picocolors: 1.1.1
979
+
980
+ '@babel/compat-data@7.28.0': {}
981
+
982
+ '@babel/core@7.28.3':
983
+ dependencies:
984
+ '@ampproject/remapping': 2.3.0
985
+ '@babel/code-frame': 7.27.1
986
+ '@babel/generator': 7.28.3
987
+ '@babel/helper-compilation-targets': 7.27.2
988
+ '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.3)
989
+ '@babel/helpers': 7.28.3
990
+ '@babel/parser': 7.28.3
991
+ '@babel/template': 7.27.2
992
+ '@babel/traverse': 7.28.3
993
+ '@babel/types': 7.28.2
994
+ convert-source-map: 2.0.0
995
+ debug: 4.4.1
996
+ gensync: 1.0.0-beta.2
997
+ json5: 2.2.3
998
+ semver: 6.3.1
999
+ transitivePeerDependencies:
1000
+ - supports-color
1001
+
1002
+ '@babel/generator@7.28.3':
1003
+ dependencies:
1004
+ '@babel/parser': 7.28.3
1005
+ '@babel/types': 7.28.2
1006
+ '@jridgewell/gen-mapping': 0.3.13
1007
+ '@jridgewell/trace-mapping': 0.3.30
1008
+ jsesc: 3.1.0
1009
+
1010
+ '@babel/helper-compilation-targets@7.27.2':
1011
+ dependencies:
1012
+ '@babel/compat-data': 7.28.0
1013
+ '@babel/helper-validator-option': 7.27.1
1014
+ browserslist: 4.25.2
1015
+ lru-cache: 5.1.1
1016
+ semver: 6.3.1
1017
+
1018
+ '@babel/helper-globals@7.28.0': {}
1019
+
1020
+ '@babel/helper-module-imports@7.27.1':
1021
+ dependencies:
1022
+ '@babel/traverse': 7.28.3
1023
+ '@babel/types': 7.28.2
1024
+ transitivePeerDependencies:
1025
+ - supports-color
1026
+
1027
+ '@babel/helper-module-transforms@7.28.3(@babel/core@7.28.3)':
1028
+ dependencies:
1029
+ '@babel/core': 7.28.3
1030
+ '@babel/helper-module-imports': 7.27.1
1031
+ '@babel/helper-validator-identifier': 7.27.1
1032
+ '@babel/traverse': 7.28.3
1033
+ transitivePeerDependencies:
1034
+ - supports-color
1035
+
1036
+ '@babel/helper-plugin-utils@7.27.1': {}
1037
+
1038
+ '@babel/helper-string-parser@7.27.1': {}
1039
+
1040
+ '@babel/helper-validator-identifier@7.27.1': {}
1041
+
1042
+ '@babel/helper-validator-option@7.27.1': {}
1043
+
1044
+ '@babel/helpers@7.28.3':
1045
+ dependencies:
1046
+ '@babel/template': 7.27.2
1047
+ '@babel/types': 7.28.2
1048
+
1049
+ '@babel/parser@7.28.3':
1050
+ dependencies:
1051
+ '@babel/types': 7.28.2
1052
+
1053
+ '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.28.3)':
1054
+ dependencies:
1055
+ '@babel/core': 7.28.3
1056
+ '@babel/helper-plugin-utils': 7.27.1
1057
+
1058
+ '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.28.3)':
1059
+ dependencies:
1060
+ '@babel/core': 7.28.3
1061
+ '@babel/helper-plugin-utils': 7.27.1
1062
+
1063
+ '@babel/template@7.27.2':
1064
+ dependencies:
1065
+ '@babel/code-frame': 7.27.1
1066
+ '@babel/parser': 7.28.3
1067
+ '@babel/types': 7.28.2
1068
+
1069
+ '@babel/traverse@7.28.3':
1070
+ dependencies:
1071
+ '@babel/code-frame': 7.27.1
1072
+ '@babel/generator': 7.28.3
1073
+ '@babel/helper-globals': 7.28.0
1074
+ '@babel/parser': 7.28.3
1075
+ '@babel/template': 7.27.2
1076
+ '@babel/types': 7.28.2
1077
+ debug: 4.4.1
1078
+ transitivePeerDependencies:
1079
+ - supports-color
1080
+
1081
+ '@babel/types@7.28.2':
1082
+ dependencies:
1083
+ '@babel/helper-string-parser': 7.27.1
1084
+ '@babel/helper-validator-identifier': 7.27.1
1085
+
1086
+ '@esbuild/android-arm64@0.18.20':
1087
+ optional: true
1088
+
1089
+ '@esbuild/android-arm@0.18.20':
1090
+ optional: true
1091
+
1092
+ '@esbuild/android-x64@0.18.20':
1093
+ optional: true
1094
+
1095
+ '@esbuild/darwin-arm64@0.18.20':
1096
+ optional: true
1097
+
1098
+ '@esbuild/darwin-x64@0.18.20':
1099
+ optional: true
1100
+
1101
+ '@esbuild/freebsd-arm64@0.18.20':
1102
+ optional: true
1103
+
1104
+ '@esbuild/freebsd-x64@0.18.20':
1105
+ optional: true
1106
+
1107
+ '@esbuild/linux-arm64@0.18.20':
1108
+ optional: true
1109
+
1110
+ '@esbuild/linux-arm@0.18.20':
1111
+ optional: true
1112
+
1113
+ '@esbuild/linux-ia32@0.18.20':
1114
+ optional: true
1115
+
1116
+ '@esbuild/linux-loong64@0.18.20':
1117
+ optional: true
1118
+
1119
+ '@esbuild/linux-mips64el@0.18.20':
1120
+ optional: true
1121
+
1122
+ '@esbuild/linux-ppc64@0.18.20':
1123
+ optional: true
1124
+
1125
+ '@esbuild/linux-riscv64@0.18.20':
1126
+ optional: true
1127
+
1128
+ '@esbuild/linux-s390x@0.18.20':
1129
+ optional: true
1130
+
1131
+ '@esbuild/linux-x64@0.18.20':
1132
+ optional: true
1133
+
1134
+ '@esbuild/netbsd-x64@0.18.20':
1135
+ optional: true
1136
+
1137
+ '@esbuild/openbsd-x64@0.18.20':
1138
+ optional: true
1139
+
1140
+ '@esbuild/sunos-x64@0.18.20':
1141
+ optional: true
1142
+
1143
+ '@esbuild/win32-arm64@0.18.20':
1144
+ optional: true
1145
+
1146
+ '@esbuild/win32-ia32@0.18.20':
1147
+ optional: true
1148
+
1149
+ '@esbuild/win32-x64@0.18.20':
1150
+ optional: true
1151
+
1152
+ '@eslint-community/eslint-utils@4.7.0(eslint@8.57.1)':
1153
+ dependencies:
1154
+ eslint: 8.57.1
1155
+ eslint-visitor-keys: 3.4.3
1156
+
1157
+ '@eslint-community/regexpp@4.12.1': {}
1158
+
1159
+ '@eslint/eslintrc@2.1.4':
1160
+ dependencies:
1161
+ ajv: 6.12.6
1162
+ debug: 4.4.1
1163
+ espree: 9.6.1
1164
+ globals: 13.24.0
1165
+ ignore: 5.3.2
1166
+ import-fresh: 3.3.1
1167
+ js-yaml: 4.1.0
1168
+ minimatch: 3.1.2
1169
+ strip-json-comments: 3.1.1
1170
+ transitivePeerDependencies:
1171
+ - supports-color
1172
+
1173
+ '@eslint/js@8.57.1': {}
1174
+
1175
+ '@humanwhocodes/config-array@0.13.0':
1176
+ dependencies:
1177
+ '@humanwhocodes/object-schema': 2.0.3
1178
+ debug: 4.4.1
1179
+ minimatch: 3.1.2
1180
+ transitivePeerDependencies:
1181
+ - supports-color
1182
+
1183
+ '@humanwhocodes/module-importer@1.0.1': {}
1184
+
1185
+ '@humanwhocodes/object-schema@2.0.3': {}
1186
+
1187
+ '@jridgewell/gen-mapping@0.3.13':
1188
+ dependencies:
1189
+ '@jridgewell/sourcemap-codec': 1.5.5
1190
+ '@jridgewell/trace-mapping': 0.3.30
1191
+
1192
+ '@jridgewell/resolve-uri@3.1.2': {}
1193
+
1194
+ '@jridgewell/sourcemap-codec@1.5.5': {}
1195
+
1196
+ '@jridgewell/trace-mapping@0.3.30':
1197
+ dependencies:
1198
+ '@jridgewell/resolve-uri': 3.1.2
1199
+ '@jridgewell/sourcemap-codec': 1.5.5
1200
+
1201
+ '@nodelib/fs.scandir@2.1.5':
1202
+ dependencies:
1203
+ '@nodelib/fs.stat': 2.0.5
1204
+ run-parallel: 1.2.0
1205
+
1206
+ '@nodelib/fs.stat@2.0.5': {}
1207
+
1208
+ '@nodelib/fs.walk@1.2.8':
1209
+ dependencies:
1210
+ '@nodelib/fs.scandir': 2.1.5
1211
+ fastq: 1.19.1
1212
+
1213
+ '@rolldown/pluginutils@1.0.0-beta.27': {}
1214
+
1215
+ '@types/babel__core@7.20.5':
1216
+ dependencies:
1217
+ '@babel/parser': 7.28.3
1218
+ '@babel/types': 7.28.2
1219
+ '@types/babel__generator': 7.27.0
1220
+ '@types/babel__template': 7.4.4
1221
+ '@types/babel__traverse': 7.28.0
1222
+
1223
+ '@types/babel__generator@7.27.0':
1224
+ dependencies:
1225
+ '@babel/types': 7.28.2
1226
+
1227
+ '@types/babel__template@7.4.4':
1228
+ dependencies:
1229
+ '@babel/parser': 7.28.3
1230
+ '@babel/types': 7.28.2
1231
+
1232
+ '@types/babel__traverse@7.28.0':
1233
+ dependencies:
1234
+ '@babel/types': 7.28.2
1235
+
1236
+ '@types/json-schema@7.0.15': {}
1237
+
1238
+ '@types/prop-types@15.7.15': {}
1239
+
1240
+ '@types/react-dom@18.3.7(@types/react@18.3.23)':
1241
+ dependencies:
1242
+ '@types/react': 18.3.23
1243
+
1244
+ '@types/react@18.3.23':
1245
+ dependencies:
1246
+ '@types/prop-types': 15.7.15
1247
+ csstype: 3.1.3
1248
+
1249
+ '@types/semver@7.7.0': {}
1250
+
1251
+ '@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.9.2))(eslint@8.57.1)(typescript@5.9.2)':
1252
+ dependencies:
1253
+ '@eslint-community/regexpp': 4.12.1
1254
+ '@typescript-eslint/parser': 6.21.0(eslint@8.57.1)(typescript@5.9.2)
1255
+ '@typescript-eslint/scope-manager': 6.21.0
1256
+ '@typescript-eslint/type-utils': 6.21.0(eslint@8.57.1)(typescript@5.9.2)
1257
+ '@typescript-eslint/utils': 6.21.0(eslint@8.57.1)(typescript@5.9.2)
1258
+ '@typescript-eslint/visitor-keys': 6.21.0
1259
+ debug: 4.4.1
1260
+ eslint: 8.57.1
1261
+ graphemer: 1.4.0
1262
+ ignore: 5.3.2
1263
+ natural-compare: 1.4.0
1264
+ semver: 7.7.2
1265
+ ts-api-utils: 1.4.3(typescript@5.9.2)
1266
+ optionalDependencies:
1267
+ typescript: 5.9.2
1268
+ transitivePeerDependencies:
1269
+ - supports-color
1270
+
1271
+ '@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.9.2)':
1272
+ dependencies:
1273
+ '@typescript-eslint/scope-manager': 6.21.0
1274
+ '@typescript-eslint/types': 6.21.0
1275
+ '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.9.2)
1276
+ '@typescript-eslint/visitor-keys': 6.21.0
1277
+ debug: 4.4.1
1278
+ eslint: 8.57.1
1279
+ optionalDependencies:
1280
+ typescript: 5.9.2
1281
+ transitivePeerDependencies:
1282
+ - supports-color
1283
+
1284
+ '@typescript-eslint/scope-manager@6.21.0':
1285
+ dependencies:
1286
+ '@typescript-eslint/types': 6.21.0
1287
+ '@typescript-eslint/visitor-keys': 6.21.0
1288
+
1289
+ '@typescript-eslint/type-utils@6.21.0(eslint@8.57.1)(typescript@5.9.2)':
1290
+ dependencies:
1291
+ '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.9.2)
1292
+ '@typescript-eslint/utils': 6.21.0(eslint@8.57.1)(typescript@5.9.2)
1293
+ debug: 4.4.1
1294
+ eslint: 8.57.1
1295
+ ts-api-utils: 1.4.3(typescript@5.9.2)
1296
+ optionalDependencies:
1297
+ typescript: 5.9.2
1298
+ transitivePeerDependencies:
1299
+ - supports-color
1300
+
1301
+ '@typescript-eslint/types@6.21.0': {}
1302
+
1303
+ '@typescript-eslint/typescript-estree@6.21.0(typescript@5.9.2)':
1304
+ dependencies:
1305
+ '@typescript-eslint/types': 6.21.0
1306
+ '@typescript-eslint/visitor-keys': 6.21.0
1307
+ debug: 4.4.1
1308
+ globby: 11.1.0
1309
+ is-glob: 4.0.3
1310
+ minimatch: 9.0.3
1311
+ semver: 7.7.2
1312
+ ts-api-utils: 1.4.3(typescript@5.9.2)
1313
+ optionalDependencies:
1314
+ typescript: 5.9.2
1315
+ transitivePeerDependencies:
1316
+ - supports-color
1317
+
1318
+ '@typescript-eslint/utils@6.21.0(eslint@8.57.1)(typescript@5.9.2)':
1319
+ dependencies:
1320
+ '@eslint-community/eslint-utils': 4.7.0(eslint@8.57.1)
1321
+ '@types/json-schema': 7.0.15
1322
+ '@types/semver': 7.7.0
1323
+ '@typescript-eslint/scope-manager': 6.21.0
1324
+ '@typescript-eslint/types': 6.21.0
1325
+ '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.9.2)
1326
+ eslint: 8.57.1
1327
+ semver: 7.7.2
1328
+ transitivePeerDependencies:
1329
+ - supports-color
1330
+ - typescript
1331
+
1332
+ '@typescript-eslint/visitor-keys@6.21.0':
1333
+ dependencies:
1334
+ '@typescript-eslint/types': 6.21.0
1335
+ eslint-visitor-keys: 3.4.3
1336
+
1337
+ '@ungap/structured-clone@1.3.0': {}
1338
+
1339
+ '@vitejs/plugin-react@4.7.0(vite@4.5.14)':
1340
+ dependencies:
1341
+ '@babel/core': 7.28.3
1342
+ '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.3)
1343
+ '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.28.3)
1344
+ '@rolldown/pluginutils': 1.0.0-beta.27
1345
+ '@types/babel__core': 7.20.5
1346
+ react-refresh: 0.17.0
1347
+ vite: 4.5.14
1348
+ transitivePeerDependencies:
1349
+ - supports-color
1350
+
1351
+ acorn-jsx@5.3.2(acorn@8.15.0):
1352
+ dependencies:
1353
+ acorn: 8.15.0
1354
+
1355
+ acorn@8.15.0: {}
1356
+
1357
+ ajv@6.12.6:
1358
+ dependencies:
1359
+ fast-deep-equal: 3.1.3
1360
+ fast-json-stable-stringify: 2.1.0
1361
+ json-schema-traverse: 0.4.1
1362
+ uri-js: 4.4.1
1363
+
1364
+ ansi-regex@5.0.1: {}
1365
+
1366
+ ansi-styles@4.3.0:
1367
+ dependencies:
1368
+ color-convert: 2.0.1
1369
+
1370
+ argparse@2.0.1: {}
1371
+
1372
+ array-union@2.1.0: {}
1373
+
1374
+ balanced-match@1.0.2: {}
1375
+
1376
+ brace-expansion@1.1.12:
1377
+ dependencies:
1378
+ balanced-match: 1.0.2
1379
+ concat-map: 0.0.1
1380
+
1381
+ brace-expansion@2.0.2:
1382
+ dependencies:
1383
+ balanced-match: 1.0.2
1384
+
1385
+ braces@3.0.3:
1386
+ dependencies:
1387
+ fill-range: 7.1.1
1388
+
1389
+ browserslist@4.25.2:
1390
+ dependencies:
1391
+ caniuse-lite: 1.0.30001735
1392
+ electron-to-chromium: 1.5.203
1393
+ node-releases: 2.0.19
1394
+ update-browserslist-db: 1.1.3(browserslist@4.25.2)
1395
+
1396
+ callsites@3.1.0: {}
1397
+
1398
+ caniuse-lite@1.0.30001735: {}
1399
+
1400
+ chalk@4.1.2:
1401
+ dependencies:
1402
+ ansi-styles: 4.3.0
1403
+ supports-color: 7.2.0
1404
+
1405
+ color-convert@2.0.1:
1406
+ dependencies:
1407
+ color-name: 1.1.4
1408
+
1409
+ color-name@1.1.4: {}
1410
+
1411
+ concat-map@0.0.1: {}
1412
+
1413
+ convert-source-map@2.0.0: {}
1414
+
1415
+ cross-spawn@7.0.6:
1416
+ dependencies:
1417
+ path-key: 3.1.1
1418
+ shebang-command: 2.0.0
1419
+ which: 2.0.2
1420
+
1421
+ csstype@3.1.3: {}
1422
+
1423
+ debug@4.4.1:
1424
+ dependencies:
1425
+ ms: 2.1.3
1426
+
1427
+ deep-is@0.1.4: {}
1428
+
1429
+ dir-glob@3.0.1:
1430
+ dependencies:
1431
+ path-type: 4.0.0
1432
+
1433
+ doctrine@3.0.0:
1434
+ dependencies:
1435
+ esutils: 2.0.3
1436
+
1437
+ electron-to-chromium@1.5.203: {}
1438
+
1439
+ esbuild@0.18.20:
1440
+ optionalDependencies:
1441
+ '@esbuild/android-arm': 0.18.20
1442
+ '@esbuild/android-arm64': 0.18.20
1443
+ '@esbuild/android-x64': 0.18.20
1444
+ '@esbuild/darwin-arm64': 0.18.20
1445
+ '@esbuild/darwin-x64': 0.18.20
1446
+ '@esbuild/freebsd-arm64': 0.18.20
1447
+ '@esbuild/freebsd-x64': 0.18.20
1448
+ '@esbuild/linux-arm': 0.18.20
1449
+ '@esbuild/linux-arm64': 0.18.20
1450
+ '@esbuild/linux-ia32': 0.18.20
1451
+ '@esbuild/linux-loong64': 0.18.20
1452
+ '@esbuild/linux-mips64el': 0.18.20
1453
+ '@esbuild/linux-ppc64': 0.18.20
1454
+ '@esbuild/linux-riscv64': 0.18.20
1455
+ '@esbuild/linux-s390x': 0.18.20
1456
+ '@esbuild/linux-x64': 0.18.20
1457
+ '@esbuild/netbsd-x64': 0.18.20
1458
+ '@esbuild/openbsd-x64': 0.18.20
1459
+ '@esbuild/sunos-x64': 0.18.20
1460
+ '@esbuild/win32-arm64': 0.18.20
1461
+ '@esbuild/win32-ia32': 0.18.20
1462
+ '@esbuild/win32-x64': 0.18.20
1463
+
1464
+ escalade@3.2.0: {}
1465
+
1466
+ escape-string-regexp@4.0.0: {}
1467
+
1468
+ eslint-scope@7.2.2:
1469
+ dependencies:
1470
+ esrecurse: 4.3.0
1471
+ estraverse: 5.3.0
1472
+
1473
+ eslint-visitor-keys@3.4.3: {}
1474
+
1475
+ eslint@8.57.1:
1476
+ dependencies:
1477
+ '@eslint-community/eslint-utils': 4.7.0(eslint@8.57.1)
1478
+ '@eslint-community/regexpp': 4.12.1
1479
+ '@eslint/eslintrc': 2.1.4
1480
+ '@eslint/js': 8.57.1
1481
+ '@humanwhocodes/config-array': 0.13.0
1482
+ '@humanwhocodes/module-importer': 1.0.1
1483
+ '@nodelib/fs.walk': 1.2.8
1484
+ '@ungap/structured-clone': 1.3.0
1485
+ ajv: 6.12.6
1486
+ chalk: 4.1.2
1487
+ cross-spawn: 7.0.6
1488
+ debug: 4.4.1
1489
+ doctrine: 3.0.0
1490
+ escape-string-regexp: 4.0.0
1491
+ eslint-scope: 7.2.2
1492
+ eslint-visitor-keys: 3.4.3
1493
+ espree: 9.6.1
1494
+ esquery: 1.6.0
1495
+ esutils: 2.0.3
1496
+ fast-deep-equal: 3.1.3
1497
+ file-entry-cache: 6.0.1
1498
+ find-up: 5.0.0
1499
+ glob-parent: 6.0.2
1500
+ globals: 13.24.0
1501
+ graphemer: 1.4.0
1502
+ ignore: 5.3.2
1503
+ imurmurhash: 0.1.4
1504
+ is-glob: 4.0.3
1505
+ is-path-inside: 3.0.3
1506
+ js-yaml: 4.1.0
1507
+ json-stable-stringify-without-jsonify: 1.0.1
1508
+ levn: 0.4.1
1509
+ lodash.merge: 4.6.2
1510
+ minimatch: 3.1.2
1511
+ natural-compare: 1.4.0
1512
+ optionator: 0.9.4
1513
+ strip-ansi: 6.0.1
1514
+ text-table: 0.2.0
1515
+ transitivePeerDependencies:
1516
+ - supports-color
1517
+
1518
+ espree@9.6.1:
1519
+ dependencies:
1520
+ acorn: 8.15.0
1521
+ acorn-jsx: 5.3.2(acorn@8.15.0)
1522
+ eslint-visitor-keys: 3.4.3
1523
+
1524
+ esquery@1.6.0:
1525
+ dependencies:
1526
+ estraverse: 5.3.0
1527
+
1528
+ esrecurse@4.3.0:
1529
+ dependencies:
1530
+ estraverse: 5.3.0
1531
+
1532
+ estraverse@5.3.0: {}
1533
+
1534
+ esutils@2.0.3: {}
1535
+
1536
+ fast-deep-equal@3.1.3: {}
1537
+
1538
+ fast-glob@3.3.3:
1539
+ dependencies:
1540
+ '@nodelib/fs.stat': 2.0.5
1541
+ '@nodelib/fs.walk': 1.2.8
1542
+ glob-parent: 5.1.2
1543
+ merge2: 1.4.1
1544
+ micromatch: 4.0.8
1545
+
1546
+ fast-json-stable-stringify@2.1.0: {}
1547
+
1548
+ fast-levenshtein@2.0.6: {}
1549
+
1550
+ fastq@1.19.1:
1551
+ dependencies:
1552
+ reusify: 1.1.0
1553
+
1554
+ file-entry-cache@6.0.1:
1555
+ dependencies:
1556
+ flat-cache: 3.2.0
1557
+
1558
+ fill-range@7.1.1:
1559
+ dependencies:
1560
+ to-regex-range: 5.0.1
1561
+
1562
+ find-up@5.0.0:
1563
+ dependencies:
1564
+ locate-path: 6.0.0
1565
+ path-exists: 4.0.0
1566
+
1567
+ flat-cache@3.2.0:
1568
+ dependencies:
1569
+ flatted: 3.3.3
1570
+ keyv: 4.5.4
1571
+ rimraf: 3.0.2
1572
+
1573
+ flatted@3.3.3: {}
1574
+
1575
+ fs.realpath@1.0.0: {}
1576
+
1577
+ fsevents@2.3.3:
1578
+ optional: true
1579
+
1580
+ gensync@1.0.0-beta.2: {}
1581
+
1582
+ glob-parent@5.1.2:
1583
+ dependencies:
1584
+ is-glob: 4.0.3
1585
+
1586
+ glob-parent@6.0.2:
1587
+ dependencies:
1588
+ is-glob: 4.0.3
1589
+
1590
+ glob@7.2.3:
1591
+ dependencies:
1592
+ fs.realpath: 1.0.0
1593
+ inflight: 1.0.6
1594
+ inherits: 2.0.4
1595
+ minimatch: 3.1.2
1596
+ once: 1.4.0
1597
+ path-is-absolute: 1.0.1
1598
+
1599
+ globals@13.24.0:
1600
+ dependencies:
1601
+ type-fest: 0.20.2
1602
+
1603
+ globby@11.1.0:
1604
+ dependencies:
1605
+ array-union: 2.1.0
1606
+ dir-glob: 3.0.1
1607
+ fast-glob: 3.3.3
1608
+ ignore: 5.3.2
1609
+ merge2: 1.4.1
1610
+ slash: 3.0.0
1611
+
1612
+ graphemer@1.4.0: {}
1613
+
1614
+ has-flag@4.0.0: {}
1615
+
1616
+ ignore@5.3.2: {}
1617
+
1618
+ import-fresh@3.3.1:
1619
+ dependencies:
1620
+ parent-module: 1.0.1
1621
+ resolve-from: 4.0.0
1622
+
1623
+ imurmurhash@0.1.4: {}
1624
+
1625
+ inflight@1.0.6:
1626
+ dependencies:
1627
+ once: 1.4.0
1628
+ wrappy: 1.0.2
1629
+
1630
+ inherits@2.0.4: {}
1631
+
1632
+ is-extglob@2.1.1: {}
1633
+
1634
+ is-glob@4.0.3:
1635
+ dependencies:
1636
+ is-extglob: 2.1.1
1637
+
1638
+ is-number@7.0.0: {}
1639
+
1640
+ is-path-inside@3.0.3: {}
1641
+
1642
+ isexe@2.0.0: {}
1643
+
1644
+ js-tokens@4.0.0: {}
1645
+
1646
+ js-yaml@4.1.0:
1647
+ dependencies:
1648
+ argparse: 2.0.1
1649
+
1650
+ jsesc@3.1.0: {}
1651
+
1652
+ json-buffer@3.0.1: {}
1653
+
1654
+ json-schema-traverse@0.4.1: {}
1655
+
1656
+ json-stable-stringify-without-jsonify@1.0.1: {}
1657
+
1658
+ json5@2.2.3: {}
1659
+
1660
+ keyv@4.5.4:
1661
+ dependencies:
1662
+ json-buffer: 3.0.1
1663
+
1664
+ levn@0.4.1:
1665
+ dependencies:
1666
+ prelude-ls: 1.2.1
1667
+ type-check: 0.4.0
1668
+
1669
+ locate-path@6.0.0:
1670
+ dependencies:
1671
+ p-locate: 5.0.0
1672
+
1673
+ lodash.merge@4.6.2: {}
1674
+
1675
+ loose-envify@1.4.0:
1676
+ dependencies:
1677
+ js-tokens: 4.0.0
1678
+
1679
+ lru-cache@5.1.1:
1680
+ dependencies:
1681
+ yallist: 3.1.1
1682
+
1683
+ merge2@1.4.1: {}
1684
+
1685
+ micromatch@4.0.8:
1686
+ dependencies:
1687
+ braces: 3.0.3
1688
+ picomatch: 2.3.1
1689
+
1690
+ minimatch@3.1.2:
1691
+ dependencies:
1692
+ brace-expansion: 1.1.12
1693
+
1694
+ minimatch@9.0.3:
1695
+ dependencies:
1696
+ brace-expansion: 2.0.2
1697
+
1698
+ ms@2.1.3: {}
1699
+
1700
+ nanoid@3.3.11: {}
1701
+
1702
+ natural-compare@1.4.0: {}
1703
+
1704
+ node-releases@2.0.19: {}
1705
+
1706
+ once@1.4.0:
1707
+ dependencies:
1708
+ wrappy: 1.0.2
1709
+
1710
+ optionator@0.9.4:
1711
+ dependencies:
1712
+ deep-is: 0.1.4
1713
+ fast-levenshtein: 2.0.6
1714
+ levn: 0.4.1
1715
+ prelude-ls: 1.2.1
1716
+ type-check: 0.4.0
1717
+ word-wrap: 1.2.5
1718
+
1719
+ p-limit@3.1.0:
1720
+ dependencies:
1721
+ yocto-queue: 0.1.0
1722
+
1723
+ p-locate@5.0.0:
1724
+ dependencies:
1725
+ p-limit: 3.1.0
1726
+
1727
+ parent-module@1.0.1:
1728
+ dependencies:
1729
+ callsites: 3.1.0
1730
+
1731
+ path-exists@4.0.0: {}
1732
+
1733
+ path-is-absolute@1.0.1: {}
1734
+
1735
+ path-key@3.1.1: {}
1736
+
1737
+ path-type@4.0.0: {}
1738
+
1739
+ picocolors@1.1.1: {}
1740
+
1741
+ picomatch@2.3.1: {}
1742
+
1743
+ postcss@8.5.6:
1744
+ dependencies:
1745
+ nanoid: 3.3.11
1746
+ picocolors: 1.1.1
1747
+ source-map-js: 1.2.1
1748
+
1749
+ prelude-ls@1.2.1: {}
1750
+
1751
+ punycode@2.3.1: {}
1752
+
1753
+ queue-microtask@1.2.3: {}
1754
+
1755
+ react-dom@18.3.1(react@18.3.1):
1756
+ dependencies:
1757
+ loose-envify: 1.4.0
1758
+ react: 18.3.1
1759
+ scheduler: 0.23.2
1760
+
1761
+ react-refresh@0.17.0: {}
1762
+
1763
+ react@18.3.1:
1764
+ dependencies:
1765
+ loose-envify: 1.4.0
1766
+
1767
+ resolve-from@4.0.0: {}
1768
+
1769
+ reusify@1.1.0: {}
1770
+
1771
+ rimraf@3.0.2:
1772
+ dependencies:
1773
+ glob: 7.2.3
1774
+
1775
+ rollup@3.29.5:
1776
+ optionalDependencies:
1777
+ fsevents: 2.3.3
1778
+
1779
+ run-parallel@1.2.0:
1780
+ dependencies:
1781
+ queue-microtask: 1.2.3
1782
+
1783
+ scheduler@0.23.2:
1784
+ dependencies:
1785
+ loose-envify: 1.4.0
1786
+
1787
+ semver@6.3.1: {}
1788
+
1789
+ semver@7.7.2: {}
1790
+
1791
+ shebang-command@2.0.0:
1792
+ dependencies:
1793
+ shebang-regex: 3.0.0
1794
+
1795
+ shebang-regex@3.0.0: {}
1796
+
1797
+ slash@3.0.0: {}
1798
+
1799
+ source-map-js@1.2.1: {}
1800
+
1801
+ strip-ansi@6.0.1:
1802
+ dependencies:
1803
+ ansi-regex: 5.0.1
1804
+
1805
+ strip-json-comments@3.1.1: {}
1806
+
1807
+ supports-color@7.2.0:
1808
+ dependencies:
1809
+ has-flag: 4.0.0
1810
+
1811
+ text-table@0.2.0: {}
1812
+
1813
+ to-regex-range@5.0.1:
1814
+ dependencies:
1815
+ is-number: 7.0.0
1816
+
1817
+ ts-api-utils@1.4.3(typescript@5.9.2):
1818
+ dependencies:
1819
+ typescript: 5.9.2
1820
+
1821
+ type-check@0.4.0:
1822
+ dependencies:
1823
+ prelude-ls: 1.2.1
1824
+
1825
+ type-fest@0.20.2: {}
1826
+
1827
+ typescript@5.9.2: {}
1828
+
1829
+ update-browserslist-db@1.1.3(browserslist@4.25.2):
1830
+ dependencies:
1831
+ browserslist: 4.25.2
1832
+ escalade: 3.2.0
1833
+ picocolors: 1.1.1
1834
+
1835
+ uri-js@4.4.1:
1836
+ dependencies:
1837
+ punycode: 2.3.1
1838
+
1839
+ vite@4.5.14:
1840
+ dependencies:
1841
+ esbuild: 0.18.20
1842
+ postcss: 8.5.6
1843
+ rollup: 3.29.5
1844
+ optionalDependencies:
1845
+ fsevents: 2.3.3
1846
+
1847
+ which@2.0.2:
1848
+ dependencies:
1849
+ isexe: 2.0.0
1850
+
1851
+ word-wrap@1.2.5: {}
1852
+
1853
+ wrappy@1.0.2: {}
1854
+
1855
+ yallist@3.1.1: {}
1856
+
1857
+ yocto-queue@0.1.0: {}