fastevent 1.1.0 → 1.1.2

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 (55) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist/devTools.d.mts +543 -0
  3. package/dist/devTools.d.ts +543 -0
  4. package/dist/devTools.js +3 -0
  5. package/dist/devTools.js.map +1 -0
  6. package/dist/devTools.mjs +3 -0
  7. package/dist/devTools.mjs.map +1 -0
  8. package/dist/index.d.mts +282 -37
  9. package/dist/index.d.ts +282 -37
  10. package/dist/index.js +1 -1
  11. package/dist/index.js.map +1 -1
  12. package/dist/index.mjs +1 -1
  13. package/dist/index.mjs.map +1 -1
  14. package/example/README.md +54 -0
  15. package/example/eslint.config.js +28 -0
  16. package/example/index.html +13 -0
  17. package/example/package.json +29 -0
  18. package/example/pnpm-lock.yaml +2047 -0
  19. package/example/public/vite.svg +1 -0
  20. package/example/src/App.css +42 -0
  21. package/example/src/App.tsx +60 -0
  22. package/example/src/assets/react.svg +1 -0
  23. package/example/src/index.css +68 -0
  24. package/example/src/main.tsx +10 -0
  25. package/example/src/myEvent.ts +32 -0
  26. package/example/src/vite-env.d.ts +1 -0
  27. package/example/tsconfig.app.json +26 -0
  28. package/example/tsconfig.json +7 -0
  29. package/example/tsconfig.node.json +24 -0
  30. package/example/vite.config.ts +7 -0
  31. package/package.json +15 -2
  32. package/packages/native/index.ts +1 -0
  33. package/packages/turbo/.zig-cache/h/271c82d991949fd7788fd5451f0ca834.txt +0 -0
  34. package/packages/turbo/.zig-cache/h/timestamp +0 -0
  35. package/packages/turbo/.zig-cache/o/ebd7ddab8ffe003267120d598aecce68/dependencies.zig +2 -0
  36. package/packages/turbo/.zig-cache/z/c8114b040daa461a9e2eabd0357554a4 +0 -0
  37. package/packages/turbo/build.zig +60 -0
  38. package/packages/turbo/examples/basic.zig +107 -0
  39. package/packages/turbo/src/event.zig +251 -0
  40. package/packages/turbo/src/index.zig +70 -0
  41. package/packages/turbo/src/scope.zig +104 -0
  42. package/packages/turbo/src/types.zig +88 -0
  43. package/packages/turbo/src/utils.zig +171 -0
  44. package/readme.md +86 -2
  45. package/readme_cn.md +86 -2
  46. package/src/__tests__/scope.test.ts +2 -2
  47. package/src/__tests__/types.test.ts +23 -12
  48. package/src/__tests__/waitFor.test.ts +1 -0
  49. package/src/devTools.ts +166 -0
  50. package/src/event.ts +272 -38
  51. package/src/scope.ts +52 -11
  52. package/src/types.ts +11 -4
  53. package/src/utils/WeakObjectMap.ts +64 -0
  54. package/tsconfig.json +103 -111
  55. package/tsup.config.ts +17 -6
@@ -0,0 +1,2047 @@
1
+ lockfileVersion: '9.0'
2
+
3
+ settings:
4
+ autoInstallPeers: true
5
+ excludeLinksFromLockfile: false
6
+
7
+ importers:
8
+
9
+ .:
10
+ dependencies:
11
+ react:
12
+ specifier: ^19.0.0
13
+ version: 19.1.0
14
+ react-dom:
15
+ specifier: ^19.0.0
16
+ version: 19.1.0(react@19.1.0)
17
+ devDependencies:
18
+ '@eslint/js':
19
+ specifier: ^9.22.0
20
+ version: 9.25.1
21
+ '@types/react':
22
+ specifier: ^19.0.10
23
+ version: 19.1.2
24
+ '@types/react-dom':
25
+ specifier: ^19.0.4
26
+ version: 19.1.2(@types/react@19.1.2)
27
+ '@vitejs/plugin-react':
28
+ specifier: ^4.3.4
29
+ version: 4.4.1(vite@6.3.2)
30
+ eslint:
31
+ specifier: ^9.22.0
32
+ version: 9.25.1
33
+ eslint-plugin-react-hooks:
34
+ specifier: ^5.2.0
35
+ version: 5.2.0(eslint@9.25.1)
36
+ eslint-plugin-react-refresh:
37
+ specifier: ^0.4.19
38
+ version: 0.4.20(eslint@9.25.1)
39
+ globals:
40
+ specifier: ^16.0.0
41
+ version: 16.0.0
42
+ typescript:
43
+ specifier: ~5.7.2
44
+ version: 5.7.3
45
+ typescript-eslint:
46
+ specifier: ^8.26.1
47
+ version: 8.31.0(eslint@9.25.1)(typescript@5.7.3)
48
+ vite:
49
+ specifier: ^6.3.1
50
+ version: 6.3.2
51
+
52
+ packages:
53
+
54
+ '@ampproject/remapping@2.3.0':
55
+ resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
56
+ engines: {node: '>=6.0.0'}
57
+
58
+ '@babel/code-frame@7.26.2':
59
+ resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
60
+ engines: {node: '>=6.9.0'}
61
+
62
+ '@babel/compat-data@7.26.8':
63
+ resolution: {integrity: sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==}
64
+ engines: {node: '>=6.9.0'}
65
+
66
+ '@babel/core@7.26.10':
67
+ resolution: {integrity: sha512-vMqyb7XCDMPvJFFOaT9kxtiRh42GwlZEg1/uIgtZshS5a/8OaduUfCi7kynKgc3Tw/6Uo2D+db9qBttghhmxwQ==}
68
+ engines: {node: '>=6.9.0'}
69
+
70
+ '@babel/generator@7.27.0':
71
+ resolution: {integrity: sha512-VybsKvpiN1gU1sdMZIp7FcqphVVKEwcuj02x73uvcHE0PTihx1nlBcowYWhDwjpoAXRv43+gDzyggGnn1XZhVw==}
72
+ engines: {node: '>=6.9.0'}
73
+
74
+ '@babel/helper-compilation-targets@7.27.0':
75
+ resolution: {integrity: sha512-LVk7fbXml0H2xH34dFzKQ7TDZ2G4/rVTOrq9V+icbbadjbVxxeFeDsNHv2SrZeWoA+6ZiTyWYWtScEIW07EAcA==}
76
+ engines: {node: '>=6.9.0'}
77
+
78
+ '@babel/helper-module-imports@7.25.9':
79
+ resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
80
+ engines: {node: '>=6.9.0'}
81
+
82
+ '@babel/helper-module-transforms@7.26.0':
83
+ resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==}
84
+ engines: {node: '>=6.9.0'}
85
+ peerDependencies:
86
+ '@babel/core': ^7.0.0
87
+
88
+ '@babel/helper-plugin-utils@7.26.5':
89
+ resolution: {integrity: sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==}
90
+ engines: {node: '>=6.9.0'}
91
+
92
+ '@babel/helper-string-parser@7.25.9':
93
+ resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
94
+ engines: {node: '>=6.9.0'}
95
+
96
+ '@babel/helper-validator-identifier@7.25.9':
97
+ resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
98
+ engines: {node: '>=6.9.0'}
99
+
100
+ '@babel/helper-validator-option@7.25.9':
101
+ resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
102
+ engines: {node: '>=6.9.0'}
103
+
104
+ '@babel/helpers@7.27.0':
105
+ resolution: {integrity: sha512-U5eyP/CTFPuNE3qk+WZMxFkp/4zUzdceQlfzf7DdGdhp+Fezd7HD+i8Y24ZuTMKX3wQBld449jijbGq6OdGNQg==}
106
+ engines: {node: '>=6.9.0'}
107
+
108
+ '@babel/parser@7.27.0':
109
+ resolution: {integrity: sha512-iaepho73/2Pz7w2eMS0Q5f83+0RKI7i4xmiYeBmDzfRVbQtTOG7Ts0S4HzJVsTMGI9keU8rNfuZr8DKfSt7Yyg==}
110
+ engines: {node: '>=6.0.0'}
111
+ hasBin: true
112
+
113
+ '@babel/plugin-transform-react-jsx-self@7.25.9':
114
+ resolution: {integrity: sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==}
115
+ engines: {node: '>=6.9.0'}
116
+ peerDependencies:
117
+ '@babel/core': ^7.0.0-0
118
+
119
+ '@babel/plugin-transform-react-jsx-source@7.25.9':
120
+ resolution: {integrity: sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==}
121
+ engines: {node: '>=6.9.0'}
122
+ peerDependencies:
123
+ '@babel/core': ^7.0.0-0
124
+
125
+ '@babel/template@7.27.0':
126
+ resolution: {integrity: sha512-2ncevenBqXI6qRMukPlXwHKHchC7RyMuu4xv5JBXRfOGVcTy1mXCD12qrp7Jsoxll1EV3+9sE4GugBVRjT2jFA==}
127
+ engines: {node: '>=6.9.0'}
128
+
129
+ '@babel/traverse@7.27.0':
130
+ resolution: {integrity: sha512-19lYZFzYVQkkHkl4Cy4WrAVcqBkgvV2YM2TU3xG6DIwO7O3ecbDPfW3yM3bjAGcqcQHi+CCtjMR3dIEHxsd6bA==}
131
+ engines: {node: '>=6.9.0'}
132
+
133
+ '@babel/types@7.27.0':
134
+ resolution: {integrity: sha512-H45s8fVLYjbhFH62dIJ3WtmJ6RSPt/3DRO0ZcT2SUiYiQyz3BLVb9ADEnLl91m74aQPS3AzzeajZHYOalWe3bg==}
135
+ engines: {node: '>=6.9.0'}
136
+
137
+ '@esbuild/aix-ppc64@0.25.3':
138
+ resolution: {integrity: sha512-W8bFfPA8DowP8l//sxjJLSLkD8iEjMc7cBVyP+u4cEv9sM7mdUCkgsj+t0n/BWPFtv7WWCN5Yzj0N6FJNUUqBQ==}
139
+ engines: {node: '>=18'}
140
+ cpu: [ppc64]
141
+ os: [aix]
142
+
143
+ '@esbuild/android-arm64@0.25.3':
144
+ resolution: {integrity: sha512-XelR6MzjlZuBM4f5z2IQHK6LkK34Cvv6Rj2EntER3lwCBFdg6h2lKbtRjpTTsdEjD/WSe1q8UyPBXP1x3i/wYQ==}
145
+ engines: {node: '>=18'}
146
+ cpu: [arm64]
147
+ os: [android]
148
+
149
+ '@esbuild/android-arm@0.25.3':
150
+ resolution: {integrity: sha512-PuwVXbnP87Tcff5I9ngV0lmiSu40xw1At6i3GsU77U7cjDDB4s0X2cyFuBiDa1SBk9DnvWwnGvVaGBqoFWPb7A==}
151
+ engines: {node: '>=18'}
152
+ cpu: [arm]
153
+ os: [android]
154
+
155
+ '@esbuild/android-x64@0.25.3':
156
+ resolution: {integrity: sha512-ogtTpYHT/g1GWS/zKM0cc/tIebFjm1F9Aw1boQ2Y0eUQ+J89d0jFY//s9ei9jVIlkYi8AfOjiixcLJSGNSOAdQ==}
157
+ engines: {node: '>=18'}
158
+ cpu: [x64]
159
+ os: [android]
160
+
161
+ '@esbuild/darwin-arm64@0.25.3':
162
+ resolution: {integrity: sha512-eESK5yfPNTqpAmDfFWNsOhmIOaQA59tAcF/EfYvo5/QWQCzXn5iUSOnqt3ra3UdzBv073ykTtmeLJZGt3HhA+w==}
163
+ engines: {node: '>=18'}
164
+ cpu: [arm64]
165
+ os: [darwin]
166
+
167
+ '@esbuild/darwin-x64@0.25.3':
168
+ resolution: {integrity: sha512-Kd8glo7sIZtwOLcPbW0yLpKmBNWMANZhrC1r6K++uDR2zyzb6AeOYtI6udbtabmQpFaxJ8uduXMAo1gs5ozz8A==}
169
+ engines: {node: '>=18'}
170
+ cpu: [x64]
171
+ os: [darwin]
172
+
173
+ '@esbuild/freebsd-arm64@0.25.3':
174
+ resolution: {integrity: sha512-EJiyS70BYybOBpJth3M0KLOus0n+RRMKTYzhYhFeMwp7e/RaajXvP+BWlmEXNk6uk+KAu46j/kaQzr6au+JcIw==}
175
+ engines: {node: '>=18'}
176
+ cpu: [arm64]
177
+ os: [freebsd]
178
+
179
+ '@esbuild/freebsd-x64@0.25.3':
180
+ resolution: {integrity: sha512-Q+wSjaLpGxYf7zC0kL0nDlhsfuFkoN+EXrx2KSB33RhinWzejOd6AvgmP5JbkgXKmjhmpfgKZq24pneodYqE8Q==}
181
+ engines: {node: '>=18'}
182
+ cpu: [x64]
183
+ os: [freebsd]
184
+
185
+ '@esbuild/linux-arm64@0.25.3':
186
+ resolution: {integrity: sha512-xCUgnNYhRD5bb1C1nqrDV1PfkwgbswTTBRbAd8aH5PhYzikdf/ddtsYyMXFfGSsb/6t6QaPSzxtbfAZr9uox4A==}
187
+ engines: {node: '>=18'}
188
+ cpu: [arm64]
189
+ os: [linux]
190
+
191
+ '@esbuild/linux-arm@0.25.3':
192
+ resolution: {integrity: sha512-dUOVmAUzuHy2ZOKIHIKHCm58HKzFqd+puLaS424h6I85GlSDRZIA5ycBixb3mFgM0Jdh+ZOSB6KptX30DD8YOQ==}
193
+ engines: {node: '>=18'}
194
+ cpu: [arm]
195
+ os: [linux]
196
+
197
+ '@esbuild/linux-ia32@0.25.3':
198
+ resolution: {integrity: sha512-yplPOpczHOO4jTYKmuYuANI3WhvIPSVANGcNUeMlxH4twz/TeXuzEP41tGKNGWJjuMhotpGabeFYGAOU2ummBw==}
199
+ engines: {node: '>=18'}
200
+ cpu: [ia32]
201
+ os: [linux]
202
+
203
+ '@esbuild/linux-loong64@0.25.3':
204
+ resolution: {integrity: sha512-P4BLP5/fjyihmXCELRGrLd793q/lBtKMQl8ARGpDxgzgIKJDRJ/u4r1A/HgpBpKpKZelGct2PGI4T+axcedf6g==}
205
+ engines: {node: '>=18'}
206
+ cpu: [loong64]
207
+ os: [linux]
208
+
209
+ '@esbuild/linux-mips64el@0.25.3':
210
+ resolution: {integrity: sha512-eRAOV2ODpu6P5divMEMa26RRqb2yUoYsuQQOuFUexUoQndm4MdpXXDBbUoKIc0iPa4aCO7gIhtnYomkn2x+bag==}
211
+ engines: {node: '>=18'}
212
+ cpu: [mips64el]
213
+ os: [linux]
214
+
215
+ '@esbuild/linux-ppc64@0.25.3':
216
+ resolution: {integrity: sha512-ZC4jV2p7VbzTlnl8nZKLcBkfzIf4Yad1SJM4ZMKYnJqZFD4rTI+pBG65u8ev4jk3/MPwY9DvGn50wi3uhdaghg==}
217
+ engines: {node: '>=18'}
218
+ cpu: [ppc64]
219
+ os: [linux]
220
+
221
+ '@esbuild/linux-riscv64@0.25.3':
222
+ resolution: {integrity: sha512-LDDODcFzNtECTrUUbVCs6j9/bDVqy7DDRsuIXJg6so+mFksgwG7ZVnTruYi5V+z3eE5y+BJZw7VvUadkbfg7QA==}
223
+ engines: {node: '>=18'}
224
+ cpu: [riscv64]
225
+ os: [linux]
226
+
227
+ '@esbuild/linux-s390x@0.25.3':
228
+ resolution: {integrity: sha512-s+w/NOY2k0yC2p9SLen+ymflgcpRkvwwa02fqmAwhBRI3SC12uiS10edHHXlVWwfAagYSY5UpmT/zISXPMW3tQ==}
229
+ engines: {node: '>=18'}
230
+ cpu: [s390x]
231
+ os: [linux]
232
+
233
+ '@esbuild/linux-x64@0.25.3':
234
+ resolution: {integrity: sha512-nQHDz4pXjSDC6UfOE1Fw9Q8d6GCAd9KdvMZpfVGWSJztYCarRgSDfOVBY5xwhQXseiyxapkiSJi/5/ja8mRFFA==}
235
+ engines: {node: '>=18'}
236
+ cpu: [x64]
237
+ os: [linux]
238
+
239
+ '@esbuild/netbsd-arm64@0.25.3':
240
+ resolution: {integrity: sha512-1QaLtOWq0mzK6tzzp0jRN3eccmN3hezey7mhLnzC6oNlJoUJz4nym5ZD7mDnS/LZQgkrhEbEiTn515lPeLpgWA==}
241
+ engines: {node: '>=18'}
242
+ cpu: [arm64]
243
+ os: [netbsd]
244
+
245
+ '@esbuild/netbsd-x64@0.25.3':
246
+ resolution: {integrity: sha512-i5Hm68HXHdgv8wkrt+10Bc50zM0/eonPb/a/OFVfB6Qvpiirco5gBA5bz7S2SHuU+Y4LWn/zehzNX14Sp4r27g==}
247
+ engines: {node: '>=18'}
248
+ cpu: [x64]
249
+ os: [netbsd]
250
+
251
+ '@esbuild/openbsd-arm64@0.25.3':
252
+ resolution: {integrity: sha512-zGAVApJEYTbOC6H/3QBr2mq3upG/LBEXr85/pTtKiv2IXcgKV0RT0QA/hSXZqSvLEpXeIxah7LczB4lkiYhTAQ==}
253
+ engines: {node: '>=18'}
254
+ cpu: [arm64]
255
+ os: [openbsd]
256
+
257
+ '@esbuild/openbsd-x64@0.25.3':
258
+ resolution: {integrity: sha512-fpqctI45NnCIDKBH5AXQBsD0NDPbEFczK98hk/aa6HJxbl+UtLkJV2+Bvy5hLSLk3LHmqt0NTkKNso1A9y1a4w==}
259
+ engines: {node: '>=18'}
260
+ cpu: [x64]
261
+ os: [openbsd]
262
+
263
+ '@esbuild/sunos-x64@0.25.3':
264
+ resolution: {integrity: sha512-ROJhm7d8bk9dMCUZjkS8fgzsPAZEjtRJqCAmVgB0gMrvG7hfmPmz9k1rwO4jSiblFjYmNvbECL9uhaPzONMfgA==}
265
+ engines: {node: '>=18'}
266
+ cpu: [x64]
267
+ os: [sunos]
268
+
269
+ '@esbuild/win32-arm64@0.25.3':
270
+ resolution: {integrity: sha512-YWcow8peiHpNBiIXHwaswPnAXLsLVygFwCB3A7Bh5jRkIBFWHGmNQ48AlX4xDvQNoMZlPYzjVOQDYEzWCqufMQ==}
271
+ engines: {node: '>=18'}
272
+ cpu: [arm64]
273
+ os: [win32]
274
+
275
+ '@esbuild/win32-ia32@0.25.3':
276
+ resolution: {integrity: sha512-qspTZOIGoXVS4DpNqUYUs9UxVb04khS1Degaw/MnfMe7goQ3lTfQ13Vw4qY/Nj0979BGvMRpAYbs/BAxEvU8ew==}
277
+ engines: {node: '>=18'}
278
+ cpu: [ia32]
279
+ os: [win32]
280
+
281
+ '@esbuild/win32-x64@0.25.3':
282
+ resolution: {integrity: sha512-ICgUR+kPimx0vvRzf+N/7L7tVSQeE3BYY+NhHRHXS1kBuPO7z2+7ea2HbhDyZdTephgvNvKrlDDKUexuCVBVvg==}
283
+ engines: {node: '>=18'}
284
+ cpu: [x64]
285
+ os: [win32]
286
+
287
+ '@eslint-community/eslint-utils@4.6.1':
288
+ resolution: {integrity: sha512-KTsJMmobmbrFLe3LDh0PC2FXpcSYJt/MLjlkh/9LEnmKYLSYmT/0EW9JWANjeoemiuZrmogti0tW5Ch+qNUYDw==}
289
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
290
+ peerDependencies:
291
+ eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
292
+
293
+ '@eslint-community/regexpp@4.12.1':
294
+ resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
295
+ engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
296
+
297
+ '@eslint/config-array@0.20.0':
298
+ resolution: {integrity: sha512-fxlS1kkIjx8+vy2SjuCB94q3htSNrufYTXubwiBFeaQHbH6Ipi43gFJq2zCMt6PHhImH3Xmr0NksKDvchWlpQQ==}
299
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
300
+
301
+ '@eslint/config-helpers@0.2.1':
302
+ resolution: {integrity: sha512-RI17tsD2frtDu/3dmI7QRrD4bedNKPM08ziRYaC5AhkGrzIAJelm9kJU1TznK+apx6V+cqRz8tfpEeG3oIyjxw==}
303
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
304
+
305
+ '@eslint/core@0.13.0':
306
+ resolution: {integrity: sha512-yfkgDw1KR66rkT5A8ci4irzDysN7FRpq3ttJolR88OqQikAWqwA8j5VZyas+vjyBNFIJ7MfybJ9plMILI2UrCw==}
307
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
308
+
309
+ '@eslint/eslintrc@3.3.1':
310
+ resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==}
311
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
312
+
313
+ '@eslint/js@9.25.1':
314
+ resolution: {integrity: sha512-dEIwmjntEx8u3Uvv+kr3PDeeArL8Hw07H9kyYxCjnM9pBjfEhk6uLXSchxxzgiwtRhhzVzqmUSDFBOi1TuZ7qg==}
315
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
316
+
317
+ '@eslint/object-schema@2.1.6':
318
+ resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==}
319
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
320
+
321
+ '@eslint/plugin-kit@0.2.8':
322
+ resolution: {integrity: sha512-ZAoA40rNMPwSm+AeHpCq8STiNAwzWLJuP8Xv4CHIc9wv/PSuExjMrmjfYNj682vW0OOiZ1HKxzvjQr9XZIisQA==}
323
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
324
+
325
+ '@humanfs/core@0.19.1':
326
+ resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
327
+ engines: {node: '>=18.18.0'}
328
+
329
+ '@humanfs/node@0.16.6':
330
+ resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==}
331
+ engines: {node: '>=18.18.0'}
332
+
333
+ '@humanwhocodes/module-importer@1.0.1':
334
+ resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
335
+ engines: {node: '>=12.22'}
336
+
337
+ '@humanwhocodes/retry@0.3.1':
338
+ resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==}
339
+ engines: {node: '>=18.18'}
340
+
341
+ '@humanwhocodes/retry@0.4.2':
342
+ resolution: {integrity: sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==}
343
+ engines: {node: '>=18.18'}
344
+
345
+ '@jridgewell/gen-mapping@0.3.8':
346
+ resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==}
347
+ engines: {node: '>=6.0.0'}
348
+
349
+ '@jridgewell/resolve-uri@3.1.2':
350
+ resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
351
+ engines: {node: '>=6.0.0'}
352
+
353
+ '@jridgewell/set-array@1.2.1':
354
+ resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
355
+ engines: {node: '>=6.0.0'}
356
+
357
+ '@jridgewell/sourcemap-codec@1.5.0':
358
+ resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
359
+
360
+ '@jridgewell/trace-mapping@0.3.25':
361
+ resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
362
+
363
+ '@nodelib/fs.scandir@2.1.5':
364
+ resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
365
+ engines: {node: '>= 8'}
366
+
367
+ '@nodelib/fs.stat@2.0.5':
368
+ resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
369
+ engines: {node: '>= 8'}
370
+
371
+ '@nodelib/fs.walk@1.2.8':
372
+ resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
373
+ engines: {node: '>= 8'}
374
+
375
+ '@rollup/rollup-android-arm-eabi@4.40.0':
376
+ resolution: {integrity: sha512-+Fbls/diZ0RDerhE8kyC6hjADCXA1K4yVNlH0EYfd2XjyH0UGgzaQ8MlT0pCXAThfxv3QUAczHaL+qSv1E4/Cg==}
377
+ cpu: [arm]
378
+ os: [android]
379
+
380
+ '@rollup/rollup-android-arm64@4.40.0':
381
+ resolution: {integrity: sha512-PPA6aEEsTPRz+/4xxAmaoWDqh67N7wFbgFUJGMnanCFs0TV99M0M8QhhaSCks+n6EbQoFvLQgYOGXxlMGQe/6w==}
382
+ cpu: [arm64]
383
+ os: [android]
384
+
385
+ '@rollup/rollup-darwin-arm64@4.40.0':
386
+ resolution: {integrity: sha512-GwYOcOakYHdfnjjKwqpTGgn5a6cUX7+Ra2HeNj/GdXvO2VJOOXCiYYlRFU4CubFM67EhbmzLOmACKEfvp3J1kQ==}
387
+ cpu: [arm64]
388
+ os: [darwin]
389
+
390
+ '@rollup/rollup-darwin-x64@4.40.0':
391
+ resolution: {integrity: sha512-CoLEGJ+2eheqD9KBSxmma6ld01czS52Iw0e2qMZNpPDlf7Z9mj8xmMemxEucinev4LgHalDPczMyxzbq+Q+EtA==}
392
+ cpu: [x64]
393
+ os: [darwin]
394
+
395
+ '@rollup/rollup-freebsd-arm64@4.40.0':
396
+ resolution: {integrity: sha512-r7yGiS4HN/kibvESzmrOB/PxKMhPTlz+FcGvoUIKYoTyGd5toHp48g1uZy1o1xQvybwwpqpe010JrcGG2s5nkg==}
397
+ cpu: [arm64]
398
+ os: [freebsd]
399
+
400
+ '@rollup/rollup-freebsd-x64@4.40.0':
401
+ resolution: {integrity: sha512-mVDxzlf0oLzV3oZOr0SMJ0lSDd3xC4CmnWJ8Val8isp9jRGl5Dq//LLDSPFrasS7pSm6m5xAcKaw3sHXhBjoRw==}
402
+ cpu: [x64]
403
+ os: [freebsd]
404
+
405
+ '@rollup/rollup-linux-arm-gnueabihf@4.40.0':
406
+ resolution: {integrity: sha512-y/qUMOpJxBMy8xCXD++jeu8t7kzjlOCkoxxajL58G62PJGBZVl/Gwpm7JK9+YvlB701rcQTzjUZ1JgUoPTnoQA==}
407
+ cpu: [arm]
408
+ os: [linux]
409
+ libc: [glibc]
410
+
411
+ '@rollup/rollup-linux-arm-musleabihf@4.40.0':
412
+ resolution: {integrity: sha512-GoCsPibtVdJFPv/BOIvBKO/XmwZLwaNWdyD8TKlXuqp0veo2sHE+A/vpMQ5iSArRUz/uaoj4h5S6Pn0+PdhRjg==}
413
+ cpu: [arm]
414
+ os: [linux]
415
+ libc: [musl]
416
+
417
+ '@rollup/rollup-linux-arm64-gnu@4.40.0':
418
+ resolution: {integrity: sha512-L5ZLphTjjAD9leJzSLI7rr8fNqJMlGDKlazW2tX4IUF9P7R5TMQPElpH82Q7eNIDQnQlAyiNVfRPfP2vM5Avvg==}
419
+ cpu: [arm64]
420
+ os: [linux]
421
+ libc: [glibc]
422
+
423
+ '@rollup/rollup-linux-arm64-musl@4.40.0':
424
+ resolution: {integrity: sha512-ATZvCRGCDtv1Y4gpDIXsS+wfFeFuLwVxyUBSLawjgXK2tRE6fnsQEkE4csQQYWlBlsFztRzCnBvWVfcae/1qxQ==}
425
+ cpu: [arm64]
426
+ os: [linux]
427
+ libc: [musl]
428
+
429
+ '@rollup/rollup-linux-loongarch64-gnu@4.40.0':
430
+ resolution: {integrity: sha512-wG9e2XtIhd++QugU5MD9i7OnpaVb08ji3P1y/hNbxrQ3sYEelKJOq1UJ5dXczeo6Hj2rfDEL5GdtkMSVLa/AOg==}
431
+ cpu: [loong64]
432
+ os: [linux]
433
+ libc: [glibc]
434
+
435
+ '@rollup/rollup-linux-powerpc64le-gnu@4.40.0':
436
+ resolution: {integrity: sha512-vgXfWmj0f3jAUvC7TZSU/m/cOE558ILWDzS7jBhiCAFpY2WEBn5jqgbqvmzlMjtp8KlLcBlXVD2mkTSEQE6Ixw==}
437
+ cpu: [ppc64]
438
+ os: [linux]
439
+ libc: [glibc]
440
+
441
+ '@rollup/rollup-linux-riscv64-gnu@4.40.0':
442
+ resolution: {integrity: sha512-uJkYTugqtPZBS3Z136arevt/FsKTF/J9dEMTX/cwR7lsAW4bShzI2R0pJVw+hcBTWF4dxVckYh72Hk3/hWNKvA==}
443
+ cpu: [riscv64]
444
+ os: [linux]
445
+ libc: [glibc]
446
+
447
+ '@rollup/rollup-linux-riscv64-musl@4.40.0':
448
+ resolution: {integrity: sha512-rKmSj6EXQRnhSkE22+WvrqOqRtk733x3p5sWpZilhmjnkHkpeCgWsFFo0dGnUGeA+OZjRl3+VYq+HyCOEuwcxQ==}
449
+ cpu: [riscv64]
450
+ os: [linux]
451
+ libc: [musl]
452
+
453
+ '@rollup/rollup-linux-s390x-gnu@4.40.0':
454
+ resolution: {integrity: sha512-SpnYlAfKPOoVsQqmTFJ0usx0z84bzGOS9anAC0AZ3rdSo3snecihbhFTlJZ8XMwzqAcodjFU4+/SM311dqE5Sw==}
455
+ cpu: [s390x]
456
+ os: [linux]
457
+ libc: [glibc]
458
+
459
+ '@rollup/rollup-linux-x64-gnu@4.40.0':
460
+ resolution: {integrity: sha512-RcDGMtqF9EFN8i2RYN2W+64CdHruJ5rPqrlYw+cgM3uOVPSsnAQps7cpjXe9be/yDp8UC7VLoCoKC8J3Kn2FkQ==}
461
+ cpu: [x64]
462
+ os: [linux]
463
+ libc: [glibc]
464
+
465
+ '@rollup/rollup-linux-x64-musl@4.40.0':
466
+ resolution: {integrity: sha512-HZvjpiUmSNx5zFgwtQAV1GaGazT2RWvqeDi0hV+AtC8unqqDSsaFjPxfsO6qPtKRRg25SisACWnJ37Yio8ttaw==}
467
+ cpu: [x64]
468
+ os: [linux]
469
+ libc: [musl]
470
+
471
+ '@rollup/rollup-win32-arm64-msvc@4.40.0':
472
+ resolution: {integrity: sha512-UtZQQI5k/b8d7d3i9AZmA/t+Q4tk3hOC0tMOMSq2GlMYOfxbesxG4mJSeDp0EHs30N9bsfwUvs3zF4v/RzOeTQ==}
473
+ cpu: [arm64]
474
+ os: [win32]
475
+
476
+ '@rollup/rollup-win32-ia32-msvc@4.40.0':
477
+ resolution: {integrity: sha512-+m03kvI2f5syIqHXCZLPVYplP8pQch9JHyXKZ3AGMKlg8dCyr2PKHjwRLiW53LTrN/Nc3EqHOKxUxzoSPdKddA==}
478
+ cpu: [ia32]
479
+ os: [win32]
480
+
481
+ '@rollup/rollup-win32-x64-msvc@4.40.0':
482
+ resolution: {integrity: sha512-lpPE1cLfP5oPzVjKMx10pgBmKELQnFJXHgvtHCtuJWOv8MxqdEIMNtgHgBFf7Ea2/7EuVwa9fodWUfXAlXZLZQ==}
483
+ cpu: [x64]
484
+ os: [win32]
485
+
486
+ '@types/babel__core@7.20.5':
487
+ resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
488
+
489
+ '@types/babel__generator@7.27.0':
490
+ resolution: {integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==}
491
+
492
+ '@types/babel__template@7.4.4':
493
+ resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
494
+
495
+ '@types/babel__traverse@7.20.7':
496
+ resolution: {integrity: sha512-dkO5fhS7+/oos4ciWxyEyjWe48zmG6wbCheo/G2ZnHx4fs3EU6YC6UM8rk56gAjNJ9P3MTH2jo5jb92/K6wbng==}
497
+
498
+ '@types/estree@1.0.7':
499
+ resolution: {integrity: sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==}
500
+
501
+ '@types/json-schema@7.0.15':
502
+ resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
503
+
504
+ '@types/react-dom@19.1.2':
505
+ resolution: {integrity: sha512-XGJkWF41Qq305SKWEILa1O8vzhb3aOo3ogBlSmiqNko/WmRb6QIaweuZCXjKygVDXpzXb5wyxKTSOsmkuqj+Qw==}
506
+ peerDependencies:
507
+ '@types/react': ^19.0.0
508
+
509
+ '@types/react@19.1.2':
510
+ resolution: {integrity: sha512-oxLPMytKchWGbnQM9O7D67uPa9paTNxO7jVoNMXgkkErULBPhPARCfkKL9ytcIJJRGjbsVwW4ugJzyFFvm/Tiw==}
511
+
512
+ '@typescript-eslint/eslint-plugin@8.31.0':
513
+ resolution: {integrity: sha512-evaQJZ/J/S4wisevDvC1KFZkPzRetH8kYZbkgcTRyql3mcKsf+ZFDV1BVWUGTCAW5pQHoqn5gK5b8kn7ou9aFQ==}
514
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
515
+ peerDependencies:
516
+ '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
517
+ eslint: ^8.57.0 || ^9.0.0
518
+ typescript: '>=4.8.4 <5.9.0'
519
+
520
+ '@typescript-eslint/parser@8.31.0':
521
+ resolution: {integrity: sha512-67kYYShjBR0jNI5vsf/c3WG4u+zDnCTHTPqVMQguffaWWFs7artgwKmfwdifl+r6XyM5LYLas/dInj2T0SgJyw==}
522
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
523
+ peerDependencies:
524
+ eslint: ^8.57.0 || ^9.0.0
525
+ typescript: '>=4.8.4 <5.9.0'
526
+
527
+ '@typescript-eslint/scope-manager@8.31.0':
528
+ resolution: {integrity: sha512-knO8UyF78Nt8O/B64i7TlGXod69ko7z6vJD9uhSlm0qkAbGeRUSudcm0+K/4CrRjrpiHfBCjMWlc08Vav1xwcw==}
529
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
530
+
531
+ '@typescript-eslint/type-utils@8.31.0':
532
+ resolution: {integrity: sha512-DJ1N1GdjI7IS7uRlzJuEDCgDQix3ZVYVtgeWEyhyn4iaoitpMBX6Ndd488mXSx0xah/cONAkEaYyylDyAeHMHg==}
533
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
534
+ peerDependencies:
535
+ eslint: ^8.57.0 || ^9.0.0
536
+ typescript: '>=4.8.4 <5.9.0'
537
+
538
+ '@typescript-eslint/types@8.31.0':
539
+ resolution: {integrity: sha512-Ch8oSjVyYyJxPQk8pMiP2FFGYatqXQfQIaMp+TpuuLlDachRWpUAeEu1u9B/v/8LToehUIWyiKcA/w5hUFRKuQ==}
540
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
541
+
542
+ '@typescript-eslint/typescript-estree@8.31.0':
543
+ resolution: {integrity: sha512-xLmgn4Yl46xi6aDSZ9KkyfhhtnYI15/CvHbpOy/eR5NWhK/BK8wc709KKwhAR0m4ZKRP7h07bm4BWUYOCuRpQQ==}
544
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
545
+ peerDependencies:
546
+ typescript: '>=4.8.4 <5.9.0'
547
+
548
+ '@typescript-eslint/utils@8.31.0':
549
+ resolution: {integrity: sha512-qi6uPLt9cjTFxAb1zGNgTob4x9ur7xC6mHQJ8GwEzGMGE9tYniublmJaowOJ9V2jUzxrltTPfdG2nKlWsq0+Ww==}
550
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
551
+ peerDependencies:
552
+ eslint: ^8.57.0 || ^9.0.0
553
+ typescript: '>=4.8.4 <5.9.0'
554
+
555
+ '@typescript-eslint/visitor-keys@8.31.0':
556
+ resolution: {integrity: sha512-QcGHmlRHWOl93o64ZUMNewCdwKGU6WItOU52H0djgNmn1EOrhVudrDzXz4OycCRSCPwFCDrE2iIt5vmuUdHxuQ==}
557
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
558
+
559
+ '@vitejs/plugin-react@4.4.1':
560
+ resolution: {integrity: sha512-IpEm5ZmeXAP/osiBXVVP5KjFMzbWOonMs0NaQQl+xYnUAcq4oHUBsF2+p4MgKWG4YMmFYJU8A6sxRPuowllm6w==}
561
+ engines: {node: ^14.18.0 || >=16.0.0}
562
+ peerDependencies:
563
+ vite: ^4.2.0 || ^5.0.0 || ^6.0.0
564
+
565
+ acorn-jsx@5.3.2:
566
+ resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
567
+ peerDependencies:
568
+ acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
569
+
570
+ acorn@8.14.1:
571
+ resolution: {integrity: sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==}
572
+ engines: {node: '>=0.4.0'}
573
+ hasBin: true
574
+
575
+ ajv@6.12.6:
576
+ resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
577
+
578
+ ansi-styles@4.3.0:
579
+ resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
580
+ engines: {node: '>=8'}
581
+
582
+ argparse@2.0.1:
583
+ resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
584
+
585
+ balanced-match@1.0.2:
586
+ resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
587
+
588
+ brace-expansion@1.1.11:
589
+ resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
590
+
591
+ brace-expansion@2.0.1:
592
+ resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
593
+
594
+ braces@3.0.3:
595
+ resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
596
+ engines: {node: '>=8'}
597
+
598
+ browserslist@4.24.4:
599
+ resolution: {integrity: sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==}
600
+ engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
601
+ hasBin: true
602
+
603
+ callsites@3.1.0:
604
+ resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
605
+ engines: {node: '>=6'}
606
+
607
+ caniuse-lite@1.0.30001715:
608
+ resolution: {integrity: sha512-7ptkFGMm2OAOgvZpwgA4yjQ5SQbrNVGdRjzH0pBdy1Fasvcr+KAeECmbCAECzTuDuoX0FCY8KzUxjf9+9kfZEw==}
609
+
610
+ chalk@4.1.2:
611
+ resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
612
+ engines: {node: '>=10'}
613
+
614
+ color-convert@2.0.1:
615
+ resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
616
+ engines: {node: '>=7.0.0'}
617
+
618
+ color-name@1.1.4:
619
+ resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
620
+
621
+ concat-map@0.0.1:
622
+ resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
623
+
624
+ convert-source-map@2.0.0:
625
+ resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
626
+
627
+ cross-spawn@7.0.6:
628
+ resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
629
+ engines: {node: '>= 8'}
630
+
631
+ csstype@3.1.3:
632
+ resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
633
+
634
+ debug@4.4.0:
635
+ resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==}
636
+ engines: {node: '>=6.0'}
637
+ peerDependencies:
638
+ supports-color: '*'
639
+ peerDependenciesMeta:
640
+ supports-color:
641
+ optional: true
642
+
643
+ deep-is@0.1.4:
644
+ resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
645
+
646
+ electron-to-chromium@1.5.141:
647
+ resolution: {integrity: sha512-qS+qH9oqVYc1ooubTiB9l904WVyM6qNYxtOEEGReoZXw3xlqeYdFr5GclNzbkAufWgwWLEPoDi3d9MoRwwIjGw==}
648
+
649
+ esbuild@0.25.3:
650
+ resolution: {integrity: sha512-qKA6Pvai73+M2FtftpNKRxJ78GIjmFXFxd/1DVBqGo/qNhLSfv+G12n9pNoWdytJC8U00TrViOwpjT0zgqQS8Q==}
651
+ engines: {node: '>=18'}
652
+ hasBin: true
653
+
654
+ escalade@3.2.0:
655
+ resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
656
+ engines: {node: '>=6'}
657
+
658
+ escape-string-regexp@4.0.0:
659
+ resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
660
+ engines: {node: '>=10'}
661
+
662
+ eslint-plugin-react-hooks@5.2.0:
663
+ resolution: {integrity: sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg==}
664
+ engines: {node: '>=10'}
665
+ peerDependencies:
666
+ eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0
667
+
668
+ eslint-plugin-react-refresh@0.4.20:
669
+ resolution: {integrity: sha512-XpbHQ2q5gUF8BGOX4dHe+71qoirYMhApEPZ7sfhF/dNnOF1UXnCMGZf79SFTBO7Bz5YEIT4TMieSlJBWhP9WBA==}
670
+ peerDependencies:
671
+ eslint: '>=8.40'
672
+
673
+ eslint-scope@8.3.0:
674
+ resolution: {integrity: sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==}
675
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
676
+
677
+ eslint-visitor-keys@3.4.3:
678
+ resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
679
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
680
+
681
+ eslint-visitor-keys@4.2.0:
682
+ resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
683
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
684
+
685
+ eslint@9.25.1:
686
+ resolution: {integrity: sha512-E6Mtz9oGQWDCpV12319d59n4tx9zOTXSTmc8BLVxBx+G/0RdM5MvEEJLU9c0+aleoePYYgVTOsRblx433qmhWQ==}
687
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
688
+ hasBin: true
689
+ peerDependencies:
690
+ jiti: '*'
691
+ peerDependenciesMeta:
692
+ jiti:
693
+ optional: true
694
+
695
+ espree@10.3.0:
696
+ resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==}
697
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
698
+
699
+ esquery@1.6.0:
700
+ resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
701
+ engines: {node: '>=0.10'}
702
+
703
+ esrecurse@4.3.0:
704
+ resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
705
+ engines: {node: '>=4.0'}
706
+
707
+ estraverse@5.3.0:
708
+ resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
709
+ engines: {node: '>=4.0'}
710
+
711
+ esutils@2.0.3:
712
+ resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
713
+ engines: {node: '>=0.10.0'}
714
+
715
+ fast-deep-equal@3.1.3:
716
+ resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
717
+
718
+ fast-glob@3.3.3:
719
+ resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
720
+ engines: {node: '>=8.6.0'}
721
+
722
+ fast-json-stable-stringify@2.1.0:
723
+ resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
724
+
725
+ fast-levenshtein@2.0.6:
726
+ resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
727
+
728
+ fastq@1.19.1:
729
+ resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==}
730
+
731
+ fdir@6.4.4:
732
+ resolution: {integrity: sha512-1NZP+GK4GfuAv3PqKvxQRDMjdSRZjnkq7KfhlNrCNNlZ0ygQFpebfrnfnq/W7fpUnAv9aGWmY1zKx7FYL3gwhg==}
733
+ peerDependencies:
734
+ picomatch: ^3 || ^4
735
+ peerDependenciesMeta:
736
+ picomatch:
737
+ optional: true
738
+
739
+ file-entry-cache@8.0.0:
740
+ resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
741
+ engines: {node: '>=16.0.0'}
742
+
743
+ fill-range@7.1.1:
744
+ resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
745
+ engines: {node: '>=8'}
746
+
747
+ find-up@5.0.0:
748
+ resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
749
+ engines: {node: '>=10'}
750
+
751
+ flat-cache@4.0.1:
752
+ resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
753
+ engines: {node: '>=16'}
754
+
755
+ flatted@3.3.3:
756
+ resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
757
+
758
+ fsevents@2.3.3:
759
+ resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
760
+ engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
761
+ os: [darwin]
762
+
763
+ gensync@1.0.0-beta.2:
764
+ resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
765
+ engines: {node: '>=6.9.0'}
766
+
767
+ glob-parent@5.1.2:
768
+ resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
769
+ engines: {node: '>= 6'}
770
+
771
+ glob-parent@6.0.2:
772
+ resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
773
+ engines: {node: '>=10.13.0'}
774
+
775
+ globals@11.12.0:
776
+ resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
777
+ engines: {node: '>=4'}
778
+
779
+ globals@14.0.0:
780
+ resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
781
+ engines: {node: '>=18'}
782
+
783
+ globals@16.0.0:
784
+ resolution: {integrity: sha512-iInW14XItCXET01CQFqudPOWP2jYMl7T+QRQT+UNcR/iQncN/F0UNpgd76iFkBPgNQb4+X3LV9tLJYzwh+Gl3A==}
785
+ engines: {node: '>=18'}
786
+
787
+ graphemer@1.4.0:
788
+ resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
789
+
790
+ has-flag@4.0.0:
791
+ resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
792
+ engines: {node: '>=8'}
793
+
794
+ ignore@5.3.2:
795
+ resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
796
+ engines: {node: '>= 4'}
797
+
798
+ import-fresh@3.3.1:
799
+ resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
800
+ engines: {node: '>=6'}
801
+
802
+ imurmurhash@0.1.4:
803
+ resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
804
+ engines: {node: '>=0.8.19'}
805
+
806
+ is-extglob@2.1.1:
807
+ resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
808
+ engines: {node: '>=0.10.0'}
809
+
810
+ is-glob@4.0.3:
811
+ resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
812
+ engines: {node: '>=0.10.0'}
813
+
814
+ is-number@7.0.0:
815
+ resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
816
+ engines: {node: '>=0.12.0'}
817
+
818
+ isexe@2.0.0:
819
+ resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
820
+
821
+ js-tokens@4.0.0:
822
+ resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
823
+
824
+ js-yaml@4.1.0:
825
+ resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
826
+ hasBin: true
827
+
828
+ jsesc@3.1.0:
829
+ resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
830
+ engines: {node: '>=6'}
831
+ hasBin: true
832
+
833
+ json-buffer@3.0.1:
834
+ resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
835
+
836
+ json-schema-traverse@0.4.1:
837
+ resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
838
+
839
+ json-stable-stringify-without-jsonify@1.0.1:
840
+ resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
841
+
842
+ json5@2.2.3:
843
+ resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
844
+ engines: {node: '>=6'}
845
+ hasBin: true
846
+
847
+ keyv@4.5.4:
848
+ resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
849
+
850
+ levn@0.4.1:
851
+ resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
852
+ engines: {node: '>= 0.8.0'}
853
+
854
+ locate-path@6.0.0:
855
+ resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
856
+ engines: {node: '>=10'}
857
+
858
+ lodash.merge@4.6.2:
859
+ resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
860
+
861
+ lru-cache@5.1.1:
862
+ resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
863
+
864
+ merge2@1.4.1:
865
+ resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
866
+ engines: {node: '>= 8'}
867
+
868
+ micromatch@4.0.8:
869
+ resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
870
+ engines: {node: '>=8.6'}
871
+
872
+ minimatch@3.1.2:
873
+ resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
874
+
875
+ minimatch@9.0.5:
876
+ resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
877
+ engines: {node: '>=16 || 14 >=14.17'}
878
+
879
+ ms@2.1.3:
880
+ resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
881
+
882
+ nanoid@3.3.11:
883
+ resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
884
+ engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
885
+ hasBin: true
886
+
887
+ natural-compare@1.4.0:
888
+ resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
889
+
890
+ node-releases@2.0.19:
891
+ resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==}
892
+
893
+ optionator@0.9.4:
894
+ resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
895
+ engines: {node: '>= 0.8.0'}
896
+
897
+ p-limit@3.1.0:
898
+ resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
899
+ engines: {node: '>=10'}
900
+
901
+ p-locate@5.0.0:
902
+ resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
903
+ engines: {node: '>=10'}
904
+
905
+ parent-module@1.0.1:
906
+ resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
907
+ engines: {node: '>=6'}
908
+
909
+ path-exists@4.0.0:
910
+ resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
911
+ engines: {node: '>=8'}
912
+
913
+ path-key@3.1.1:
914
+ resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
915
+ engines: {node: '>=8'}
916
+
917
+ picocolors@1.1.1:
918
+ resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
919
+
920
+ picomatch@2.3.1:
921
+ resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
922
+ engines: {node: '>=8.6'}
923
+
924
+ picomatch@4.0.2:
925
+ resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
926
+ engines: {node: '>=12'}
927
+
928
+ postcss@8.5.3:
929
+ resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==}
930
+ engines: {node: ^10 || ^12 || >=14}
931
+
932
+ prelude-ls@1.2.1:
933
+ resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
934
+ engines: {node: '>= 0.8.0'}
935
+
936
+ punycode@2.3.1:
937
+ resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
938
+ engines: {node: '>=6'}
939
+
940
+ queue-microtask@1.2.3:
941
+ resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
942
+
943
+ react-dom@19.1.0:
944
+ resolution: {integrity: sha512-Xs1hdnE+DyKgeHJeJznQmYMIBG3TKIHJJT95Q58nHLSrElKlGQqDTR2HQ9fx5CN/Gk6Vh/kupBTDLU11/nDk/g==}
945
+ peerDependencies:
946
+ react: ^19.1.0
947
+
948
+ react-refresh@0.17.0:
949
+ resolution: {integrity: sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==}
950
+ engines: {node: '>=0.10.0'}
951
+
952
+ react@19.1.0:
953
+ resolution: {integrity: sha512-FS+XFBNvn3GTAWq26joslQgWNoFu08F4kl0J4CgdNKADkdSGXQyTCnKteIAJy96Br6YbpEU1LSzV5dYtjMkMDg==}
954
+ engines: {node: '>=0.10.0'}
955
+
956
+ resolve-from@4.0.0:
957
+ resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
958
+ engines: {node: '>=4'}
959
+
960
+ reusify@1.1.0:
961
+ resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
962
+ engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
963
+
964
+ rollup@4.40.0:
965
+ resolution: {integrity: sha512-Noe455xmA96nnqH5piFtLobsGbCij7Tu+tb3c1vYjNbTkfzGqXqQXG3wJaYXkRZuQ0vEYN4bhwg7QnIrqB5B+w==}
966
+ engines: {node: '>=18.0.0', npm: '>=8.0.0'}
967
+ hasBin: true
968
+
969
+ run-parallel@1.2.0:
970
+ resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
971
+
972
+ scheduler@0.26.0:
973
+ resolution: {integrity: sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA==}
974
+
975
+ semver@6.3.1:
976
+ resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
977
+ hasBin: true
978
+
979
+ semver@7.7.1:
980
+ resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==}
981
+ engines: {node: '>=10'}
982
+ hasBin: true
983
+
984
+ shebang-command@2.0.0:
985
+ resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
986
+ engines: {node: '>=8'}
987
+
988
+ shebang-regex@3.0.0:
989
+ resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
990
+ engines: {node: '>=8'}
991
+
992
+ source-map-js@1.2.1:
993
+ resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
994
+ engines: {node: '>=0.10.0'}
995
+
996
+ strip-json-comments@3.1.1:
997
+ resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
998
+ engines: {node: '>=8'}
999
+
1000
+ supports-color@7.2.0:
1001
+ resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
1002
+ engines: {node: '>=8'}
1003
+
1004
+ tinyglobby@0.2.13:
1005
+ resolution: {integrity: sha512-mEwzpUgrLySlveBwEVDMKk5B57bhLPYovRfPAXD5gA/98Opn0rCDj3GtLwFvCvH5RK9uPCExUROW5NjDwvqkxw==}
1006
+ engines: {node: '>=12.0.0'}
1007
+
1008
+ to-regex-range@5.0.1:
1009
+ resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
1010
+ engines: {node: '>=8.0'}
1011
+
1012
+ ts-api-utils@2.1.0:
1013
+ resolution: {integrity: sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==}
1014
+ engines: {node: '>=18.12'}
1015
+ peerDependencies:
1016
+ typescript: '>=4.8.4'
1017
+
1018
+ type-check@0.4.0:
1019
+ resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
1020
+ engines: {node: '>= 0.8.0'}
1021
+
1022
+ typescript-eslint@8.31.0:
1023
+ resolution: {integrity: sha512-u+93F0sB0An8WEAPtwxVhFby573E8ckdjwUUQUj9QA4v8JAvgtoDdIyYR3XFwFHq2W1KJ1AurwJCO+w+Y1ixyQ==}
1024
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1025
+ peerDependencies:
1026
+ eslint: ^8.57.0 || ^9.0.0
1027
+ typescript: '>=4.8.4 <5.9.0'
1028
+
1029
+ typescript@5.7.3:
1030
+ resolution: {integrity: sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==}
1031
+ engines: {node: '>=14.17'}
1032
+ hasBin: true
1033
+
1034
+ update-browserslist-db@1.1.3:
1035
+ resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==}
1036
+ hasBin: true
1037
+ peerDependencies:
1038
+ browserslist: '>= 4.21.0'
1039
+
1040
+ uri-js@4.4.1:
1041
+ resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
1042
+
1043
+ vite@6.3.2:
1044
+ resolution: {integrity: sha512-ZSvGOXKGceizRQIZSz7TGJ0pS3QLlVY/9hwxVh17W3re67je1RKYzFHivZ/t0tubU78Vkyb9WnHPENSBCzbckg==}
1045
+ engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
1046
+ hasBin: true
1047
+ peerDependencies:
1048
+ '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
1049
+ jiti: '>=1.21.0'
1050
+ less: '*'
1051
+ lightningcss: ^1.21.0
1052
+ sass: '*'
1053
+ sass-embedded: '*'
1054
+ stylus: '*'
1055
+ sugarss: '*'
1056
+ terser: ^5.16.0
1057
+ tsx: ^4.8.1
1058
+ yaml: ^2.4.2
1059
+ peerDependenciesMeta:
1060
+ '@types/node':
1061
+ optional: true
1062
+ jiti:
1063
+ optional: true
1064
+ less:
1065
+ optional: true
1066
+ lightningcss:
1067
+ optional: true
1068
+ sass:
1069
+ optional: true
1070
+ sass-embedded:
1071
+ optional: true
1072
+ stylus:
1073
+ optional: true
1074
+ sugarss:
1075
+ optional: true
1076
+ terser:
1077
+ optional: true
1078
+ tsx:
1079
+ optional: true
1080
+ yaml:
1081
+ optional: true
1082
+
1083
+ which@2.0.2:
1084
+ resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
1085
+ engines: {node: '>= 8'}
1086
+ hasBin: true
1087
+
1088
+ word-wrap@1.2.5:
1089
+ resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
1090
+ engines: {node: '>=0.10.0'}
1091
+
1092
+ yallist@3.1.1:
1093
+ resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
1094
+
1095
+ yocto-queue@0.1.0:
1096
+ resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
1097
+ engines: {node: '>=10'}
1098
+
1099
+ snapshots:
1100
+
1101
+ '@ampproject/remapping@2.3.0':
1102
+ dependencies:
1103
+ '@jridgewell/gen-mapping': 0.3.8
1104
+ '@jridgewell/trace-mapping': 0.3.25
1105
+
1106
+ '@babel/code-frame@7.26.2':
1107
+ dependencies:
1108
+ '@babel/helper-validator-identifier': 7.25.9
1109
+ js-tokens: 4.0.0
1110
+ picocolors: 1.1.1
1111
+
1112
+ '@babel/compat-data@7.26.8': {}
1113
+
1114
+ '@babel/core@7.26.10':
1115
+ dependencies:
1116
+ '@ampproject/remapping': 2.3.0
1117
+ '@babel/code-frame': 7.26.2
1118
+ '@babel/generator': 7.27.0
1119
+ '@babel/helper-compilation-targets': 7.27.0
1120
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10)
1121
+ '@babel/helpers': 7.27.0
1122
+ '@babel/parser': 7.27.0
1123
+ '@babel/template': 7.27.0
1124
+ '@babel/traverse': 7.27.0
1125
+ '@babel/types': 7.27.0
1126
+ convert-source-map: 2.0.0
1127
+ debug: 4.4.0
1128
+ gensync: 1.0.0-beta.2
1129
+ json5: 2.2.3
1130
+ semver: 6.3.1
1131
+ transitivePeerDependencies:
1132
+ - supports-color
1133
+
1134
+ '@babel/generator@7.27.0':
1135
+ dependencies:
1136
+ '@babel/parser': 7.27.0
1137
+ '@babel/types': 7.27.0
1138
+ '@jridgewell/gen-mapping': 0.3.8
1139
+ '@jridgewell/trace-mapping': 0.3.25
1140
+ jsesc: 3.1.0
1141
+
1142
+ '@babel/helper-compilation-targets@7.27.0':
1143
+ dependencies:
1144
+ '@babel/compat-data': 7.26.8
1145
+ '@babel/helper-validator-option': 7.25.9
1146
+ browserslist: 4.24.4
1147
+ lru-cache: 5.1.1
1148
+ semver: 6.3.1
1149
+
1150
+ '@babel/helper-module-imports@7.25.9':
1151
+ dependencies:
1152
+ '@babel/traverse': 7.27.0
1153
+ '@babel/types': 7.27.0
1154
+ transitivePeerDependencies:
1155
+ - supports-color
1156
+
1157
+ '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.10)':
1158
+ dependencies:
1159
+ '@babel/core': 7.26.10
1160
+ '@babel/helper-module-imports': 7.25.9
1161
+ '@babel/helper-validator-identifier': 7.25.9
1162
+ '@babel/traverse': 7.27.0
1163
+ transitivePeerDependencies:
1164
+ - supports-color
1165
+
1166
+ '@babel/helper-plugin-utils@7.26.5': {}
1167
+
1168
+ '@babel/helper-string-parser@7.25.9': {}
1169
+
1170
+ '@babel/helper-validator-identifier@7.25.9': {}
1171
+
1172
+ '@babel/helper-validator-option@7.25.9': {}
1173
+
1174
+ '@babel/helpers@7.27.0':
1175
+ dependencies:
1176
+ '@babel/template': 7.27.0
1177
+ '@babel/types': 7.27.0
1178
+
1179
+ '@babel/parser@7.27.0':
1180
+ dependencies:
1181
+ '@babel/types': 7.27.0
1182
+
1183
+ '@babel/plugin-transform-react-jsx-self@7.25.9(@babel/core@7.26.10)':
1184
+ dependencies:
1185
+ '@babel/core': 7.26.10
1186
+ '@babel/helper-plugin-utils': 7.26.5
1187
+
1188
+ '@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.26.10)':
1189
+ dependencies:
1190
+ '@babel/core': 7.26.10
1191
+ '@babel/helper-plugin-utils': 7.26.5
1192
+
1193
+ '@babel/template@7.27.0':
1194
+ dependencies:
1195
+ '@babel/code-frame': 7.26.2
1196
+ '@babel/parser': 7.27.0
1197
+ '@babel/types': 7.27.0
1198
+
1199
+ '@babel/traverse@7.27.0':
1200
+ dependencies:
1201
+ '@babel/code-frame': 7.26.2
1202
+ '@babel/generator': 7.27.0
1203
+ '@babel/parser': 7.27.0
1204
+ '@babel/template': 7.27.0
1205
+ '@babel/types': 7.27.0
1206
+ debug: 4.4.0
1207
+ globals: 11.12.0
1208
+ transitivePeerDependencies:
1209
+ - supports-color
1210
+
1211
+ '@babel/types@7.27.0':
1212
+ dependencies:
1213
+ '@babel/helper-string-parser': 7.25.9
1214
+ '@babel/helper-validator-identifier': 7.25.9
1215
+
1216
+ '@esbuild/aix-ppc64@0.25.3':
1217
+ optional: true
1218
+
1219
+ '@esbuild/android-arm64@0.25.3':
1220
+ optional: true
1221
+
1222
+ '@esbuild/android-arm@0.25.3':
1223
+ optional: true
1224
+
1225
+ '@esbuild/android-x64@0.25.3':
1226
+ optional: true
1227
+
1228
+ '@esbuild/darwin-arm64@0.25.3':
1229
+ optional: true
1230
+
1231
+ '@esbuild/darwin-x64@0.25.3':
1232
+ optional: true
1233
+
1234
+ '@esbuild/freebsd-arm64@0.25.3':
1235
+ optional: true
1236
+
1237
+ '@esbuild/freebsd-x64@0.25.3':
1238
+ optional: true
1239
+
1240
+ '@esbuild/linux-arm64@0.25.3':
1241
+ optional: true
1242
+
1243
+ '@esbuild/linux-arm@0.25.3':
1244
+ optional: true
1245
+
1246
+ '@esbuild/linux-ia32@0.25.3':
1247
+ optional: true
1248
+
1249
+ '@esbuild/linux-loong64@0.25.3':
1250
+ optional: true
1251
+
1252
+ '@esbuild/linux-mips64el@0.25.3':
1253
+ optional: true
1254
+
1255
+ '@esbuild/linux-ppc64@0.25.3':
1256
+ optional: true
1257
+
1258
+ '@esbuild/linux-riscv64@0.25.3':
1259
+ optional: true
1260
+
1261
+ '@esbuild/linux-s390x@0.25.3':
1262
+ optional: true
1263
+
1264
+ '@esbuild/linux-x64@0.25.3':
1265
+ optional: true
1266
+
1267
+ '@esbuild/netbsd-arm64@0.25.3':
1268
+ optional: true
1269
+
1270
+ '@esbuild/netbsd-x64@0.25.3':
1271
+ optional: true
1272
+
1273
+ '@esbuild/openbsd-arm64@0.25.3':
1274
+ optional: true
1275
+
1276
+ '@esbuild/openbsd-x64@0.25.3':
1277
+ optional: true
1278
+
1279
+ '@esbuild/sunos-x64@0.25.3':
1280
+ optional: true
1281
+
1282
+ '@esbuild/win32-arm64@0.25.3':
1283
+ optional: true
1284
+
1285
+ '@esbuild/win32-ia32@0.25.3':
1286
+ optional: true
1287
+
1288
+ '@esbuild/win32-x64@0.25.3':
1289
+ optional: true
1290
+
1291
+ '@eslint-community/eslint-utils@4.6.1(eslint@9.25.1)':
1292
+ dependencies:
1293
+ eslint: 9.25.1
1294
+ eslint-visitor-keys: 3.4.3
1295
+
1296
+ '@eslint-community/regexpp@4.12.1': {}
1297
+
1298
+ '@eslint/config-array@0.20.0':
1299
+ dependencies:
1300
+ '@eslint/object-schema': 2.1.6
1301
+ debug: 4.4.0
1302
+ minimatch: 3.1.2
1303
+ transitivePeerDependencies:
1304
+ - supports-color
1305
+
1306
+ '@eslint/config-helpers@0.2.1': {}
1307
+
1308
+ '@eslint/core@0.13.0':
1309
+ dependencies:
1310
+ '@types/json-schema': 7.0.15
1311
+
1312
+ '@eslint/eslintrc@3.3.1':
1313
+ dependencies:
1314
+ ajv: 6.12.6
1315
+ debug: 4.4.0
1316
+ espree: 10.3.0
1317
+ globals: 14.0.0
1318
+ ignore: 5.3.2
1319
+ import-fresh: 3.3.1
1320
+ js-yaml: 4.1.0
1321
+ minimatch: 3.1.2
1322
+ strip-json-comments: 3.1.1
1323
+ transitivePeerDependencies:
1324
+ - supports-color
1325
+
1326
+ '@eslint/js@9.25.1': {}
1327
+
1328
+ '@eslint/object-schema@2.1.6': {}
1329
+
1330
+ '@eslint/plugin-kit@0.2.8':
1331
+ dependencies:
1332
+ '@eslint/core': 0.13.0
1333
+ levn: 0.4.1
1334
+
1335
+ '@humanfs/core@0.19.1': {}
1336
+
1337
+ '@humanfs/node@0.16.6':
1338
+ dependencies:
1339
+ '@humanfs/core': 0.19.1
1340
+ '@humanwhocodes/retry': 0.3.1
1341
+
1342
+ '@humanwhocodes/module-importer@1.0.1': {}
1343
+
1344
+ '@humanwhocodes/retry@0.3.1': {}
1345
+
1346
+ '@humanwhocodes/retry@0.4.2': {}
1347
+
1348
+ '@jridgewell/gen-mapping@0.3.8':
1349
+ dependencies:
1350
+ '@jridgewell/set-array': 1.2.1
1351
+ '@jridgewell/sourcemap-codec': 1.5.0
1352
+ '@jridgewell/trace-mapping': 0.3.25
1353
+
1354
+ '@jridgewell/resolve-uri@3.1.2': {}
1355
+
1356
+ '@jridgewell/set-array@1.2.1': {}
1357
+
1358
+ '@jridgewell/sourcemap-codec@1.5.0': {}
1359
+
1360
+ '@jridgewell/trace-mapping@0.3.25':
1361
+ dependencies:
1362
+ '@jridgewell/resolve-uri': 3.1.2
1363
+ '@jridgewell/sourcemap-codec': 1.5.0
1364
+
1365
+ '@nodelib/fs.scandir@2.1.5':
1366
+ dependencies:
1367
+ '@nodelib/fs.stat': 2.0.5
1368
+ run-parallel: 1.2.0
1369
+
1370
+ '@nodelib/fs.stat@2.0.5': {}
1371
+
1372
+ '@nodelib/fs.walk@1.2.8':
1373
+ dependencies:
1374
+ '@nodelib/fs.scandir': 2.1.5
1375
+ fastq: 1.19.1
1376
+
1377
+ '@rollup/rollup-android-arm-eabi@4.40.0':
1378
+ optional: true
1379
+
1380
+ '@rollup/rollup-android-arm64@4.40.0':
1381
+ optional: true
1382
+
1383
+ '@rollup/rollup-darwin-arm64@4.40.0':
1384
+ optional: true
1385
+
1386
+ '@rollup/rollup-darwin-x64@4.40.0':
1387
+ optional: true
1388
+
1389
+ '@rollup/rollup-freebsd-arm64@4.40.0':
1390
+ optional: true
1391
+
1392
+ '@rollup/rollup-freebsd-x64@4.40.0':
1393
+ optional: true
1394
+
1395
+ '@rollup/rollup-linux-arm-gnueabihf@4.40.0':
1396
+ optional: true
1397
+
1398
+ '@rollup/rollup-linux-arm-musleabihf@4.40.0':
1399
+ optional: true
1400
+
1401
+ '@rollup/rollup-linux-arm64-gnu@4.40.0':
1402
+ optional: true
1403
+
1404
+ '@rollup/rollup-linux-arm64-musl@4.40.0':
1405
+ optional: true
1406
+
1407
+ '@rollup/rollup-linux-loongarch64-gnu@4.40.0':
1408
+ optional: true
1409
+
1410
+ '@rollup/rollup-linux-powerpc64le-gnu@4.40.0':
1411
+ optional: true
1412
+
1413
+ '@rollup/rollup-linux-riscv64-gnu@4.40.0':
1414
+ optional: true
1415
+
1416
+ '@rollup/rollup-linux-riscv64-musl@4.40.0':
1417
+ optional: true
1418
+
1419
+ '@rollup/rollup-linux-s390x-gnu@4.40.0':
1420
+ optional: true
1421
+
1422
+ '@rollup/rollup-linux-x64-gnu@4.40.0':
1423
+ optional: true
1424
+
1425
+ '@rollup/rollup-linux-x64-musl@4.40.0':
1426
+ optional: true
1427
+
1428
+ '@rollup/rollup-win32-arm64-msvc@4.40.0':
1429
+ optional: true
1430
+
1431
+ '@rollup/rollup-win32-ia32-msvc@4.40.0':
1432
+ optional: true
1433
+
1434
+ '@rollup/rollup-win32-x64-msvc@4.40.0':
1435
+ optional: true
1436
+
1437
+ '@types/babel__core@7.20.5':
1438
+ dependencies:
1439
+ '@babel/parser': 7.27.0
1440
+ '@babel/types': 7.27.0
1441
+ '@types/babel__generator': 7.27.0
1442
+ '@types/babel__template': 7.4.4
1443
+ '@types/babel__traverse': 7.20.7
1444
+
1445
+ '@types/babel__generator@7.27.0':
1446
+ dependencies:
1447
+ '@babel/types': 7.27.0
1448
+
1449
+ '@types/babel__template@7.4.4':
1450
+ dependencies:
1451
+ '@babel/parser': 7.27.0
1452
+ '@babel/types': 7.27.0
1453
+
1454
+ '@types/babel__traverse@7.20.7':
1455
+ dependencies:
1456
+ '@babel/types': 7.27.0
1457
+
1458
+ '@types/estree@1.0.7': {}
1459
+
1460
+ '@types/json-schema@7.0.15': {}
1461
+
1462
+ '@types/react-dom@19.1.2(@types/react@19.1.2)':
1463
+ dependencies:
1464
+ '@types/react': 19.1.2
1465
+
1466
+ '@types/react@19.1.2':
1467
+ dependencies:
1468
+ csstype: 3.1.3
1469
+
1470
+ '@typescript-eslint/eslint-plugin@8.31.0(@typescript-eslint/parser@8.31.0(eslint@9.25.1)(typescript@5.7.3))(eslint@9.25.1)(typescript@5.7.3)':
1471
+ dependencies:
1472
+ '@eslint-community/regexpp': 4.12.1
1473
+ '@typescript-eslint/parser': 8.31.0(eslint@9.25.1)(typescript@5.7.3)
1474
+ '@typescript-eslint/scope-manager': 8.31.0
1475
+ '@typescript-eslint/type-utils': 8.31.0(eslint@9.25.1)(typescript@5.7.3)
1476
+ '@typescript-eslint/utils': 8.31.0(eslint@9.25.1)(typescript@5.7.3)
1477
+ '@typescript-eslint/visitor-keys': 8.31.0
1478
+ eslint: 9.25.1
1479
+ graphemer: 1.4.0
1480
+ ignore: 5.3.2
1481
+ natural-compare: 1.4.0
1482
+ ts-api-utils: 2.1.0(typescript@5.7.3)
1483
+ typescript: 5.7.3
1484
+ transitivePeerDependencies:
1485
+ - supports-color
1486
+
1487
+ '@typescript-eslint/parser@8.31.0(eslint@9.25.1)(typescript@5.7.3)':
1488
+ dependencies:
1489
+ '@typescript-eslint/scope-manager': 8.31.0
1490
+ '@typescript-eslint/types': 8.31.0
1491
+ '@typescript-eslint/typescript-estree': 8.31.0(typescript@5.7.3)
1492
+ '@typescript-eslint/visitor-keys': 8.31.0
1493
+ debug: 4.4.0
1494
+ eslint: 9.25.1
1495
+ typescript: 5.7.3
1496
+ transitivePeerDependencies:
1497
+ - supports-color
1498
+
1499
+ '@typescript-eslint/scope-manager@8.31.0':
1500
+ dependencies:
1501
+ '@typescript-eslint/types': 8.31.0
1502
+ '@typescript-eslint/visitor-keys': 8.31.0
1503
+
1504
+ '@typescript-eslint/type-utils@8.31.0(eslint@9.25.1)(typescript@5.7.3)':
1505
+ dependencies:
1506
+ '@typescript-eslint/typescript-estree': 8.31.0(typescript@5.7.3)
1507
+ '@typescript-eslint/utils': 8.31.0(eslint@9.25.1)(typescript@5.7.3)
1508
+ debug: 4.4.0
1509
+ eslint: 9.25.1
1510
+ ts-api-utils: 2.1.0(typescript@5.7.3)
1511
+ typescript: 5.7.3
1512
+ transitivePeerDependencies:
1513
+ - supports-color
1514
+
1515
+ '@typescript-eslint/types@8.31.0': {}
1516
+
1517
+ '@typescript-eslint/typescript-estree@8.31.0(typescript@5.7.3)':
1518
+ dependencies:
1519
+ '@typescript-eslint/types': 8.31.0
1520
+ '@typescript-eslint/visitor-keys': 8.31.0
1521
+ debug: 4.4.0
1522
+ fast-glob: 3.3.3
1523
+ is-glob: 4.0.3
1524
+ minimatch: 9.0.5
1525
+ semver: 7.7.1
1526
+ ts-api-utils: 2.1.0(typescript@5.7.3)
1527
+ typescript: 5.7.3
1528
+ transitivePeerDependencies:
1529
+ - supports-color
1530
+
1531
+ '@typescript-eslint/utils@8.31.0(eslint@9.25.1)(typescript@5.7.3)':
1532
+ dependencies:
1533
+ '@eslint-community/eslint-utils': 4.6.1(eslint@9.25.1)
1534
+ '@typescript-eslint/scope-manager': 8.31.0
1535
+ '@typescript-eslint/types': 8.31.0
1536
+ '@typescript-eslint/typescript-estree': 8.31.0(typescript@5.7.3)
1537
+ eslint: 9.25.1
1538
+ typescript: 5.7.3
1539
+ transitivePeerDependencies:
1540
+ - supports-color
1541
+
1542
+ '@typescript-eslint/visitor-keys@8.31.0':
1543
+ dependencies:
1544
+ '@typescript-eslint/types': 8.31.0
1545
+ eslint-visitor-keys: 4.2.0
1546
+
1547
+ '@vitejs/plugin-react@4.4.1(vite@6.3.2)':
1548
+ dependencies:
1549
+ '@babel/core': 7.26.10
1550
+ '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.10)
1551
+ '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.10)
1552
+ '@types/babel__core': 7.20.5
1553
+ react-refresh: 0.17.0
1554
+ vite: 6.3.2
1555
+ transitivePeerDependencies:
1556
+ - supports-color
1557
+
1558
+ acorn-jsx@5.3.2(acorn@8.14.1):
1559
+ dependencies:
1560
+ acorn: 8.14.1
1561
+
1562
+ acorn@8.14.1: {}
1563
+
1564
+ ajv@6.12.6:
1565
+ dependencies:
1566
+ fast-deep-equal: 3.1.3
1567
+ fast-json-stable-stringify: 2.1.0
1568
+ json-schema-traverse: 0.4.1
1569
+ uri-js: 4.4.1
1570
+
1571
+ ansi-styles@4.3.0:
1572
+ dependencies:
1573
+ color-convert: 2.0.1
1574
+
1575
+ argparse@2.0.1: {}
1576
+
1577
+ balanced-match@1.0.2: {}
1578
+
1579
+ brace-expansion@1.1.11:
1580
+ dependencies:
1581
+ balanced-match: 1.0.2
1582
+ concat-map: 0.0.1
1583
+
1584
+ brace-expansion@2.0.1:
1585
+ dependencies:
1586
+ balanced-match: 1.0.2
1587
+
1588
+ braces@3.0.3:
1589
+ dependencies:
1590
+ fill-range: 7.1.1
1591
+
1592
+ browserslist@4.24.4:
1593
+ dependencies:
1594
+ caniuse-lite: 1.0.30001715
1595
+ electron-to-chromium: 1.5.141
1596
+ node-releases: 2.0.19
1597
+ update-browserslist-db: 1.1.3(browserslist@4.24.4)
1598
+
1599
+ callsites@3.1.0: {}
1600
+
1601
+ caniuse-lite@1.0.30001715: {}
1602
+
1603
+ chalk@4.1.2:
1604
+ dependencies:
1605
+ ansi-styles: 4.3.0
1606
+ supports-color: 7.2.0
1607
+
1608
+ color-convert@2.0.1:
1609
+ dependencies:
1610
+ color-name: 1.1.4
1611
+
1612
+ color-name@1.1.4: {}
1613
+
1614
+ concat-map@0.0.1: {}
1615
+
1616
+ convert-source-map@2.0.0: {}
1617
+
1618
+ cross-spawn@7.0.6:
1619
+ dependencies:
1620
+ path-key: 3.1.1
1621
+ shebang-command: 2.0.0
1622
+ which: 2.0.2
1623
+
1624
+ csstype@3.1.3: {}
1625
+
1626
+ debug@4.4.0:
1627
+ dependencies:
1628
+ ms: 2.1.3
1629
+
1630
+ deep-is@0.1.4: {}
1631
+
1632
+ electron-to-chromium@1.5.141: {}
1633
+
1634
+ esbuild@0.25.3:
1635
+ optionalDependencies:
1636
+ '@esbuild/aix-ppc64': 0.25.3
1637
+ '@esbuild/android-arm': 0.25.3
1638
+ '@esbuild/android-arm64': 0.25.3
1639
+ '@esbuild/android-x64': 0.25.3
1640
+ '@esbuild/darwin-arm64': 0.25.3
1641
+ '@esbuild/darwin-x64': 0.25.3
1642
+ '@esbuild/freebsd-arm64': 0.25.3
1643
+ '@esbuild/freebsd-x64': 0.25.3
1644
+ '@esbuild/linux-arm': 0.25.3
1645
+ '@esbuild/linux-arm64': 0.25.3
1646
+ '@esbuild/linux-ia32': 0.25.3
1647
+ '@esbuild/linux-loong64': 0.25.3
1648
+ '@esbuild/linux-mips64el': 0.25.3
1649
+ '@esbuild/linux-ppc64': 0.25.3
1650
+ '@esbuild/linux-riscv64': 0.25.3
1651
+ '@esbuild/linux-s390x': 0.25.3
1652
+ '@esbuild/linux-x64': 0.25.3
1653
+ '@esbuild/netbsd-arm64': 0.25.3
1654
+ '@esbuild/netbsd-x64': 0.25.3
1655
+ '@esbuild/openbsd-arm64': 0.25.3
1656
+ '@esbuild/openbsd-x64': 0.25.3
1657
+ '@esbuild/sunos-x64': 0.25.3
1658
+ '@esbuild/win32-arm64': 0.25.3
1659
+ '@esbuild/win32-ia32': 0.25.3
1660
+ '@esbuild/win32-x64': 0.25.3
1661
+
1662
+ escalade@3.2.0: {}
1663
+
1664
+ escape-string-regexp@4.0.0: {}
1665
+
1666
+ eslint-plugin-react-hooks@5.2.0(eslint@9.25.1):
1667
+ dependencies:
1668
+ eslint: 9.25.1
1669
+
1670
+ eslint-plugin-react-refresh@0.4.20(eslint@9.25.1):
1671
+ dependencies:
1672
+ eslint: 9.25.1
1673
+
1674
+ eslint-scope@8.3.0:
1675
+ dependencies:
1676
+ esrecurse: 4.3.0
1677
+ estraverse: 5.3.0
1678
+
1679
+ eslint-visitor-keys@3.4.3: {}
1680
+
1681
+ eslint-visitor-keys@4.2.0: {}
1682
+
1683
+ eslint@9.25.1:
1684
+ dependencies:
1685
+ '@eslint-community/eslint-utils': 4.6.1(eslint@9.25.1)
1686
+ '@eslint-community/regexpp': 4.12.1
1687
+ '@eslint/config-array': 0.20.0
1688
+ '@eslint/config-helpers': 0.2.1
1689
+ '@eslint/core': 0.13.0
1690
+ '@eslint/eslintrc': 3.3.1
1691
+ '@eslint/js': 9.25.1
1692
+ '@eslint/plugin-kit': 0.2.8
1693
+ '@humanfs/node': 0.16.6
1694
+ '@humanwhocodes/module-importer': 1.0.1
1695
+ '@humanwhocodes/retry': 0.4.2
1696
+ '@types/estree': 1.0.7
1697
+ '@types/json-schema': 7.0.15
1698
+ ajv: 6.12.6
1699
+ chalk: 4.1.2
1700
+ cross-spawn: 7.0.6
1701
+ debug: 4.4.0
1702
+ escape-string-regexp: 4.0.0
1703
+ eslint-scope: 8.3.0
1704
+ eslint-visitor-keys: 4.2.0
1705
+ espree: 10.3.0
1706
+ esquery: 1.6.0
1707
+ esutils: 2.0.3
1708
+ fast-deep-equal: 3.1.3
1709
+ file-entry-cache: 8.0.0
1710
+ find-up: 5.0.0
1711
+ glob-parent: 6.0.2
1712
+ ignore: 5.3.2
1713
+ imurmurhash: 0.1.4
1714
+ is-glob: 4.0.3
1715
+ json-stable-stringify-without-jsonify: 1.0.1
1716
+ lodash.merge: 4.6.2
1717
+ minimatch: 3.1.2
1718
+ natural-compare: 1.4.0
1719
+ optionator: 0.9.4
1720
+ transitivePeerDependencies:
1721
+ - supports-color
1722
+
1723
+ espree@10.3.0:
1724
+ dependencies:
1725
+ acorn: 8.14.1
1726
+ acorn-jsx: 5.3.2(acorn@8.14.1)
1727
+ eslint-visitor-keys: 4.2.0
1728
+
1729
+ esquery@1.6.0:
1730
+ dependencies:
1731
+ estraverse: 5.3.0
1732
+
1733
+ esrecurse@4.3.0:
1734
+ dependencies:
1735
+ estraverse: 5.3.0
1736
+
1737
+ estraverse@5.3.0: {}
1738
+
1739
+ esutils@2.0.3: {}
1740
+
1741
+ fast-deep-equal@3.1.3: {}
1742
+
1743
+ fast-glob@3.3.3:
1744
+ dependencies:
1745
+ '@nodelib/fs.stat': 2.0.5
1746
+ '@nodelib/fs.walk': 1.2.8
1747
+ glob-parent: 5.1.2
1748
+ merge2: 1.4.1
1749
+ micromatch: 4.0.8
1750
+
1751
+ fast-json-stable-stringify@2.1.0: {}
1752
+
1753
+ fast-levenshtein@2.0.6: {}
1754
+
1755
+ fastq@1.19.1:
1756
+ dependencies:
1757
+ reusify: 1.1.0
1758
+
1759
+ fdir@6.4.4(picomatch@4.0.2):
1760
+ optionalDependencies:
1761
+ picomatch: 4.0.2
1762
+
1763
+ file-entry-cache@8.0.0:
1764
+ dependencies:
1765
+ flat-cache: 4.0.1
1766
+
1767
+ fill-range@7.1.1:
1768
+ dependencies:
1769
+ to-regex-range: 5.0.1
1770
+
1771
+ find-up@5.0.0:
1772
+ dependencies:
1773
+ locate-path: 6.0.0
1774
+ path-exists: 4.0.0
1775
+
1776
+ flat-cache@4.0.1:
1777
+ dependencies:
1778
+ flatted: 3.3.3
1779
+ keyv: 4.5.4
1780
+
1781
+ flatted@3.3.3: {}
1782
+
1783
+ fsevents@2.3.3:
1784
+ optional: true
1785
+
1786
+ gensync@1.0.0-beta.2: {}
1787
+
1788
+ glob-parent@5.1.2:
1789
+ dependencies:
1790
+ is-glob: 4.0.3
1791
+
1792
+ glob-parent@6.0.2:
1793
+ dependencies:
1794
+ is-glob: 4.0.3
1795
+
1796
+ globals@11.12.0: {}
1797
+
1798
+ globals@14.0.0: {}
1799
+
1800
+ globals@16.0.0: {}
1801
+
1802
+ graphemer@1.4.0: {}
1803
+
1804
+ has-flag@4.0.0: {}
1805
+
1806
+ ignore@5.3.2: {}
1807
+
1808
+ import-fresh@3.3.1:
1809
+ dependencies:
1810
+ parent-module: 1.0.1
1811
+ resolve-from: 4.0.0
1812
+
1813
+ imurmurhash@0.1.4: {}
1814
+
1815
+ is-extglob@2.1.1: {}
1816
+
1817
+ is-glob@4.0.3:
1818
+ dependencies:
1819
+ is-extglob: 2.1.1
1820
+
1821
+ is-number@7.0.0: {}
1822
+
1823
+ isexe@2.0.0: {}
1824
+
1825
+ js-tokens@4.0.0: {}
1826
+
1827
+ js-yaml@4.1.0:
1828
+ dependencies:
1829
+ argparse: 2.0.1
1830
+
1831
+ jsesc@3.1.0: {}
1832
+
1833
+ json-buffer@3.0.1: {}
1834
+
1835
+ json-schema-traverse@0.4.1: {}
1836
+
1837
+ json-stable-stringify-without-jsonify@1.0.1: {}
1838
+
1839
+ json5@2.2.3: {}
1840
+
1841
+ keyv@4.5.4:
1842
+ dependencies:
1843
+ json-buffer: 3.0.1
1844
+
1845
+ levn@0.4.1:
1846
+ dependencies:
1847
+ prelude-ls: 1.2.1
1848
+ type-check: 0.4.0
1849
+
1850
+ locate-path@6.0.0:
1851
+ dependencies:
1852
+ p-locate: 5.0.0
1853
+
1854
+ lodash.merge@4.6.2: {}
1855
+
1856
+ lru-cache@5.1.1:
1857
+ dependencies:
1858
+ yallist: 3.1.1
1859
+
1860
+ merge2@1.4.1: {}
1861
+
1862
+ micromatch@4.0.8:
1863
+ dependencies:
1864
+ braces: 3.0.3
1865
+ picomatch: 2.3.1
1866
+
1867
+ minimatch@3.1.2:
1868
+ dependencies:
1869
+ brace-expansion: 1.1.11
1870
+
1871
+ minimatch@9.0.5:
1872
+ dependencies:
1873
+ brace-expansion: 2.0.1
1874
+
1875
+ ms@2.1.3: {}
1876
+
1877
+ nanoid@3.3.11: {}
1878
+
1879
+ natural-compare@1.4.0: {}
1880
+
1881
+ node-releases@2.0.19: {}
1882
+
1883
+ optionator@0.9.4:
1884
+ dependencies:
1885
+ deep-is: 0.1.4
1886
+ fast-levenshtein: 2.0.6
1887
+ levn: 0.4.1
1888
+ prelude-ls: 1.2.1
1889
+ type-check: 0.4.0
1890
+ word-wrap: 1.2.5
1891
+
1892
+ p-limit@3.1.0:
1893
+ dependencies:
1894
+ yocto-queue: 0.1.0
1895
+
1896
+ p-locate@5.0.0:
1897
+ dependencies:
1898
+ p-limit: 3.1.0
1899
+
1900
+ parent-module@1.0.1:
1901
+ dependencies:
1902
+ callsites: 3.1.0
1903
+
1904
+ path-exists@4.0.0: {}
1905
+
1906
+ path-key@3.1.1: {}
1907
+
1908
+ picocolors@1.1.1: {}
1909
+
1910
+ picomatch@2.3.1: {}
1911
+
1912
+ picomatch@4.0.2: {}
1913
+
1914
+ postcss@8.5.3:
1915
+ dependencies:
1916
+ nanoid: 3.3.11
1917
+ picocolors: 1.1.1
1918
+ source-map-js: 1.2.1
1919
+
1920
+ prelude-ls@1.2.1: {}
1921
+
1922
+ punycode@2.3.1: {}
1923
+
1924
+ queue-microtask@1.2.3: {}
1925
+
1926
+ react-dom@19.1.0(react@19.1.0):
1927
+ dependencies:
1928
+ react: 19.1.0
1929
+ scheduler: 0.26.0
1930
+
1931
+ react-refresh@0.17.0: {}
1932
+
1933
+ react@19.1.0: {}
1934
+
1935
+ resolve-from@4.0.0: {}
1936
+
1937
+ reusify@1.1.0: {}
1938
+
1939
+ rollup@4.40.0:
1940
+ dependencies:
1941
+ '@types/estree': 1.0.7
1942
+ optionalDependencies:
1943
+ '@rollup/rollup-android-arm-eabi': 4.40.0
1944
+ '@rollup/rollup-android-arm64': 4.40.0
1945
+ '@rollup/rollup-darwin-arm64': 4.40.0
1946
+ '@rollup/rollup-darwin-x64': 4.40.0
1947
+ '@rollup/rollup-freebsd-arm64': 4.40.0
1948
+ '@rollup/rollup-freebsd-x64': 4.40.0
1949
+ '@rollup/rollup-linux-arm-gnueabihf': 4.40.0
1950
+ '@rollup/rollup-linux-arm-musleabihf': 4.40.0
1951
+ '@rollup/rollup-linux-arm64-gnu': 4.40.0
1952
+ '@rollup/rollup-linux-arm64-musl': 4.40.0
1953
+ '@rollup/rollup-linux-loongarch64-gnu': 4.40.0
1954
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.40.0
1955
+ '@rollup/rollup-linux-riscv64-gnu': 4.40.0
1956
+ '@rollup/rollup-linux-riscv64-musl': 4.40.0
1957
+ '@rollup/rollup-linux-s390x-gnu': 4.40.0
1958
+ '@rollup/rollup-linux-x64-gnu': 4.40.0
1959
+ '@rollup/rollup-linux-x64-musl': 4.40.0
1960
+ '@rollup/rollup-win32-arm64-msvc': 4.40.0
1961
+ '@rollup/rollup-win32-ia32-msvc': 4.40.0
1962
+ '@rollup/rollup-win32-x64-msvc': 4.40.0
1963
+ fsevents: 2.3.3
1964
+
1965
+ run-parallel@1.2.0:
1966
+ dependencies:
1967
+ queue-microtask: 1.2.3
1968
+
1969
+ scheduler@0.26.0: {}
1970
+
1971
+ semver@6.3.1: {}
1972
+
1973
+ semver@7.7.1: {}
1974
+
1975
+ shebang-command@2.0.0:
1976
+ dependencies:
1977
+ shebang-regex: 3.0.0
1978
+
1979
+ shebang-regex@3.0.0: {}
1980
+
1981
+ source-map-js@1.2.1: {}
1982
+
1983
+ strip-json-comments@3.1.1: {}
1984
+
1985
+ supports-color@7.2.0:
1986
+ dependencies:
1987
+ has-flag: 4.0.0
1988
+
1989
+ tinyglobby@0.2.13:
1990
+ dependencies:
1991
+ fdir: 6.4.4(picomatch@4.0.2)
1992
+ picomatch: 4.0.2
1993
+
1994
+ to-regex-range@5.0.1:
1995
+ dependencies:
1996
+ is-number: 7.0.0
1997
+
1998
+ ts-api-utils@2.1.0(typescript@5.7.3):
1999
+ dependencies:
2000
+ typescript: 5.7.3
2001
+
2002
+ type-check@0.4.0:
2003
+ dependencies:
2004
+ prelude-ls: 1.2.1
2005
+
2006
+ typescript-eslint@8.31.0(eslint@9.25.1)(typescript@5.7.3):
2007
+ dependencies:
2008
+ '@typescript-eslint/eslint-plugin': 8.31.0(@typescript-eslint/parser@8.31.0(eslint@9.25.1)(typescript@5.7.3))(eslint@9.25.1)(typescript@5.7.3)
2009
+ '@typescript-eslint/parser': 8.31.0(eslint@9.25.1)(typescript@5.7.3)
2010
+ '@typescript-eslint/utils': 8.31.0(eslint@9.25.1)(typescript@5.7.3)
2011
+ eslint: 9.25.1
2012
+ typescript: 5.7.3
2013
+ transitivePeerDependencies:
2014
+ - supports-color
2015
+
2016
+ typescript@5.7.3: {}
2017
+
2018
+ update-browserslist-db@1.1.3(browserslist@4.24.4):
2019
+ dependencies:
2020
+ browserslist: 4.24.4
2021
+ escalade: 3.2.0
2022
+ picocolors: 1.1.1
2023
+
2024
+ uri-js@4.4.1:
2025
+ dependencies:
2026
+ punycode: 2.3.1
2027
+
2028
+ vite@6.3.2:
2029
+ dependencies:
2030
+ esbuild: 0.25.3
2031
+ fdir: 6.4.4(picomatch@4.0.2)
2032
+ picomatch: 4.0.2
2033
+ postcss: 8.5.3
2034
+ rollup: 4.40.0
2035
+ tinyglobby: 0.2.13
2036
+ optionalDependencies:
2037
+ fsevents: 2.3.3
2038
+
2039
+ which@2.0.2:
2040
+ dependencies:
2041
+ isexe: 2.0.0
2042
+
2043
+ word-wrap@1.2.5: {}
2044
+
2045
+ yallist@3.1.1: {}
2046
+
2047
+ yocto-queue@0.1.0: {}