skyltmax_config 2.0.0 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.devcontainer/boot.sh +7 -46
- data/.devcontainer/docker-compose.yml +1 -1
- data/CHANGELOG.md +6 -0
- data/Gemfile.lock +5 -5
- data/eslint.js +26 -49
- data/fixture/package.json +1 -1
- data/fixture/pnpm-lock.yaml +386 -312
- data/fixture/src/ui/card.tsx +31 -0
- data/lib/skyltmax_config/version.rb +1 -1
- data/package.json +7 -8
- data/pnpm-lock.yaml +462 -398
- data/prettier-ignored-plugin.js +33 -0
- data/prettier.js +4 -3
- data/reset.d.ts +2 -1
- data/tests/configs.test.js +18 -1
- metadata +3 -1
data/pnpm-lock.yaml
CHANGED
|
@@ -8,6 +8,9 @@ importers:
|
|
|
8
8
|
|
|
9
9
|
.:
|
|
10
10
|
dependencies:
|
|
11
|
+
'@eslint-react/eslint-plugin':
|
|
12
|
+
specifier: 5.18.6
|
|
13
|
+
version: 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
11
14
|
'@eslint/js':
|
|
12
15
|
specifier: 10.0.1
|
|
13
16
|
version: 10.0.1(eslint@10.8.1)
|
|
@@ -16,13 +19,13 @@ importers:
|
|
|
16
19
|
version: 0.6.1
|
|
17
20
|
'@vitest/eslint-plugin':
|
|
18
21
|
specifier: 1.6.27
|
|
19
|
-
version: 1.6.27(@typescript-eslint/eslint-plugin@8.
|
|
22
|
+
version: 1.6.27(@typescript-eslint/eslint-plugin@8.67.0(@typescript-eslint/parser@8.67.0(eslint@10.8.1)(typescript@6.0.3))(eslint@10.8.1)(typescript@6.0.3))(eslint@10.8.1)(typescript@6.0.3)(vitest@4.1.10(vite@8.2.1))
|
|
20
23
|
eslint-config-prettier:
|
|
21
24
|
specifier: 10.1.8
|
|
22
25
|
version: 10.1.8(eslint@10.8.1)
|
|
23
26
|
eslint-plugin-import-x:
|
|
24
27
|
specifier: 4.17.1
|
|
25
|
-
version: 4.17.1(@typescript-eslint/utils@8.
|
|
28
|
+
version: 4.17.1(@typescript-eslint/utils@8.67.0(eslint@10.8.1)(typescript@6.0.3))(eslint@10.8.1)
|
|
26
29
|
eslint-plugin-jest-dom:
|
|
27
30
|
specifier: 5.10.1
|
|
28
31
|
version: 5.10.1(eslint@10.8.1)
|
|
@@ -32,9 +35,6 @@ importers:
|
|
|
32
35
|
eslint-plugin-prettier:
|
|
33
36
|
specifier: 5.5.6
|
|
34
37
|
version: 5.5.6(eslint-config-prettier@10.1.8(eslint@10.8.1))(eslint@10.8.1)(prettier@3.9.6)
|
|
35
|
-
eslint-plugin-react:
|
|
36
|
-
specifier: 7.37.5
|
|
37
|
-
version: 7.37.5(eslint@10.8.1)
|
|
38
38
|
eslint-plugin-react-hooks:
|
|
39
39
|
specifier: 7.1.1
|
|
40
40
|
version: 7.1.1(eslint@10.8.1)
|
|
@@ -42,21 +42,18 @@ importers:
|
|
|
42
42
|
specifier: 7.16.2
|
|
43
43
|
version: 7.16.2(eslint@10.8.1)(typescript@6.0.3)
|
|
44
44
|
globals:
|
|
45
|
-
specifier: 17.
|
|
46
|
-
version: 17.
|
|
47
|
-
prettier-plugin-ignored:
|
|
48
|
-
specifier: 1.0.0
|
|
49
|
-
version: 1.0.0(prettier@3.9.6)
|
|
45
|
+
specifier: 17.11.0
|
|
46
|
+
version: 17.11.0
|
|
50
47
|
prettier-plugin-tailwindcss:
|
|
51
48
|
specifier: 0.8.1
|
|
52
49
|
version: 0.8.1(prettier@3.9.6)
|
|
53
50
|
typescript-eslint:
|
|
54
|
-
specifier: 8.
|
|
55
|
-
version: 8.
|
|
51
|
+
specifier: 8.67.0
|
|
52
|
+
version: 8.67.0(eslint@10.8.1)(typescript@6.0.3)
|
|
56
53
|
devDependencies:
|
|
57
54
|
'@types/react':
|
|
58
|
-
specifier:
|
|
59
|
-
version:
|
|
55
|
+
specifier: 19.2.18
|
|
56
|
+
version: 19.2.18
|
|
60
57
|
eslint:
|
|
61
58
|
specifier: 10.8.1
|
|
62
59
|
version: 10.8.1
|
|
@@ -67,8 +64,8 @@ importers:
|
|
|
67
64
|
specifier: 3.9.6
|
|
68
65
|
version: 3.9.6
|
|
69
66
|
react:
|
|
70
|
-
specifier:
|
|
71
|
-
version:
|
|
67
|
+
specifier: 19.2.8
|
|
68
|
+
version: 19.2.8
|
|
72
69
|
typescript:
|
|
73
70
|
specifier: 6.0.3
|
|
74
71
|
version: 6.0.3
|
|
@@ -164,6 +161,55 @@ packages:
|
|
|
164
161
|
resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==}
|
|
165
162
|
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
|
|
166
163
|
|
|
164
|
+
'@eslint-react/ast@5.18.6':
|
|
165
|
+
resolution: {integrity: sha512-okgOez6L9onvcdU0lyLOykKQSaj2hMtVV2ucx2iqmTsfKDGyhVlMuNLnfyOkgQyHdgfROTVtAAYnQ6KPf7PggQ==}
|
|
166
|
+
engines: {node: '>=22.0.0'}
|
|
167
|
+
peerDependencies:
|
|
168
|
+
eslint: '*'
|
|
169
|
+
typescript: '*'
|
|
170
|
+
|
|
171
|
+
'@eslint-react/core@5.18.6':
|
|
172
|
+
resolution: {integrity: sha512-utvjmfgy/lMSMt4QSU5QK2coHk6tkRChxLmkW6z8sthgmB6138CYzC3cPR9kze5pOgYJouF95xiaPnHKnXx21A==}
|
|
173
|
+
engines: {node: '>=22.0.0'}
|
|
174
|
+
peerDependencies:
|
|
175
|
+
eslint: '*'
|
|
176
|
+
typescript: '*'
|
|
177
|
+
|
|
178
|
+
'@eslint-react/eslint-plugin@5.18.6':
|
|
179
|
+
resolution: {integrity: sha512-qBZXKx05CPNrvdNydM958rZt2hgVhhriU/8LUeS5s/5gdpuekflrfF+y3yT4NT8Ej3J37h7e50RdH6Lu1r0KPg==}
|
|
180
|
+
engines: {node: '>=22.0.0'}
|
|
181
|
+
peerDependencies:
|
|
182
|
+
eslint: '*'
|
|
183
|
+
typescript: '*'
|
|
184
|
+
|
|
185
|
+
'@eslint-react/eslint@5.18.6':
|
|
186
|
+
resolution: {integrity: sha512-8BzLB6mtIDmAIwAt1u4g6Yp+1LSGAnqm8SGNHbyZG1sQikWW9Fskv3fx5Zy6CGMV9D7gafcHTiVTcuBYNE+87w==}
|
|
187
|
+
engines: {node: '>=22.0.0'}
|
|
188
|
+
peerDependencies:
|
|
189
|
+
eslint: '*'
|
|
190
|
+
typescript: '*'
|
|
191
|
+
|
|
192
|
+
'@eslint-react/jsx@5.18.6':
|
|
193
|
+
resolution: {integrity: sha512-oAbG2pW6XhiROZotfSjLU19A84/AxYHiiKjim5USHH5xtYfYjO7skFSM6LztuPggqn/wccSxLgmKIFGUKM/95g==}
|
|
194
|
+
engines: {node: '>=22.0.0'}
|
|
195
|
+
peerDependencies:
|
|
196
|
+
eslint: '*'
|
|
197
|
+
typescript: '*'
|
|
198
|
+
|
|
199
|
+
'@eslint-react/shared@5.18.6':
|
|
200
|
+
resolution: {integrity: sha512-zCzb/W1xwG412BWVTjqhDznsJEHdyZVkVJz4jbAebHLpKxygK5XeG+vShdYbIFC7OcJU8hYbvEf3P2UNqXVhBw==}
|
|
201
|
+
engines: {node: '>=22.0.0'}
|
|
202
|
+
peerDependencies:
|
|
203
|
+
eslint: '*'
|
|
204
|
+
typescript: '*'
|
|
205
|
+
|
|
206
|
+
'@eslint-react/var@5.18.6':
|
|
207
|
+
resolution: {integrity: sha512-5pxFlOy0Ajx+JUz4I4PwnYtOrqcj/R59Gx9m/WWjukFza/ap3FYnu8vEl2Q0txUQoUPJ7euPnBhkKOE7LhsOWA==}
|
|
208
|
+
engines: {node: '>=22.0.0'}
|
|
209
|
+
peerDependencies:
|
|
210
|
+
eslint: '*'
|
|
211
|
+
typescript: '*'
|
|
212
|
+
|
|
167
213
|
'@eslint/config-array@0.23.5':
|
|
168
214
|
resolution: {integrity: sha512-Y3kKLvC1dvTOT+oGlqNQ1XLqK6D1HU2YXPc52NmAlJZbMMWDzGYXMiPRJ8TYD39muD/OTjlZmNJ4ib7dvSrMBA==}
|
|
169
215
|
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
@@ -229,106 +275,106 @@ packages:
|
|
|
229
275
|
'@jridgewell/trace-mapping@0.3.31':
|
|
230
276
|
resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
|
|
231
277
|
|
|
232
|
-
'@napi-rs/wasm-runtime@1.2.
|
|
233
|
-
resolution: {integrity: sha512-
|
|
278
|
+
'@napi-rs/wasm-runtime@1.2.3':
|
|
279
|
+
resolution: {integrity: sha512-UMduMbqO5s5zF2NkNacMT/yK5Y5QiKvWr2+50bzIIxFDwVJ2h49b+oyjaCGPhJxd2/gC2x39EHv/gHVuu36x2Q==}
|
|
234
280
|
engines: {node: ^20.19.0 || ^22.13.0 || >=23.5.0}
|
|
235
281
|
peerDependencies:
|
|
236
|
-
'@emnapi/core': ^1.7.1 || ^2.0.0-alpha.
|
|
237
|
-
'@emnapi/runtime': ^1.7.1 || ^2.0.0-alpha.
|
|
282
|
+
'@emnapi/core': ^1.7.1 || ^2.0.0-alpha.4
|
|
283
|
+
'@emnapi/runtime': ^1.7.1 || ^2.0.0-alpha.4
|
|
238
284
|
|
|
239
|
-
'@oxc-project/types@0.
|
|
240
|
-
resolution: {integrity: sha512-
|
|
285
|
+
'@oxc-project/types@0.144.0':
|
|
286
|
+
resolution: {integrity: sha512-nuhZIOLuI6TFQ32I/WnUx+SCPY7SdSKwgnFHydAuoS1+Z4BRcaP+RRJmGzl9lw+0OFF7UmaESf7KQRXaNLHypg==}
|
|
241
287
|
|
|
242
288
|
'@pkgr/core@0.3.6':
|
|
243
289
|
resolution: {integrity: sha512-SEeaJLb3qBNF/OaXnaR1NmmBbFYk1zC0ZH/52fATcRPLFg/p791YrcyFFy44Bo9sLaGuSuLp5Q6axbb/O+v/RA==}
|
|
244
290
|
engines: {node: ^14.18.0 || >=16.0.0}
|
|
245
291
|
|
|
246
|
-
'@rolldown/binding-android-arm64@1.2.
|
|
247
|
-
resolution: {integrity: sha512-
|
|
292
|
+
'@rolldown/binding-android-arm64@1.2.4':
|
|
293
|
+
resolution: {integrity: sha512-jHC2cnyKz5xU2fhECtFl8OZ83cYNt13GZQD+0uMJ/X3o+ijmd56okHhTUwxVSHPx1IRVIJEZ1/1pPzeLCU6XKA==}
|
|
248
294
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
249
295
|
cpu: [arm64]
|
|
250
296
|
os: [android]
|
|
251
297
|
|
|
252
|
-
'@rolldown/binding-darwin-arm64@1.2.
|
|
253
|
-
resolution: {integrity: sha512-
|
|
298
|
+
'@rolldown/binding-darwin-arm64@1.2.4':
|
|
299
|
+
resolution: {integrity: sha512-Dc5mPD8F5F/FS8i01syd7FTF6yB2fVthH/TRkjwJkzUK6EpoxHtqvZQP5Zwq80/5z19TWYHIg1KOHboCgVx/aQ==}
|
|
254
300
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
255
301
|
cpu: [arm64]
|
|
256
302
|
os: [darwin]
|
|
257
303
|
|
|
258
|
-
'@rolldown/binding-darwin-x64@1.2.
|
|
259
|
-
resolution: {integrity: sha512-
|
|
304
|
+
'@rolldown/binding-darwin-x64@1.2.4':
|
|
305
|
+
resolution: {integrity: sha512-fpDm4oBo6SqLvWUYCmFhdde3U9KH2fRNNMeAnAPAIwxRL345xutL0EtEUcuoxsoazdJGv/MuDBQHlCDrtbvqOg==}
|
|
260
306
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
261
307
|
cpu: [x64]
|
|
262
308
|
os: [darwin]
|
|
263
309
|
|
|
264
|
-
'@rolldown/binding-freebsd-x64@1.2.
|
|
265
|
-
resolution: {integrity: sha512-
|
|
310
|
+
'@rolldown/binding-freebsd-x64@1.2.4':
|
|
311
|
+
resolution: {integrity: sha512-rSJoreDE/HoIzoaib6MTp5jQtCTdMHKIvItAKT/ImS6Y6Ww76oUaeMyp4Vc/fAgd/ehji068IxetHXAnqUwN9A==}
|
|
266
312
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
267
313
|
cpu: [x64]
|
|
268
314
|
os: [freebsd]
|
|
269
315
|
|
|
270
|
-
'@rolldown/binding-linux-arm-gnueabihf@1.2.
|
|
271
|
-
resolution: {integrity: sha512
|
|
316
|
+
'@rolldown/binding-linux-arm-gnueabihf@1.2.4':
|
|
317
|
+
resolution: {integrity: sha512-/jm8OGHgn7oGaJu3i/qZI9spUGcJ+y/lk43ttQ/iO1tOd9NissG6o97bighBCiL+BKRngmcDuR6ikfwYdJmVuQ==}
|
|
272
318
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
273
319
|
cpu: [arm]
|
|
274
320
|
os: [linux]
|
|
275
321
|
|
|
276
|
-
'@rolldown/binding-linux-arm64-gnu@1.2.
|
|
277
|
-
resolution: {integrity: sha512-
|
|
322
|
+
'@rolldown/binding-linux-arm64-gnu@1.2.4':
|
|
323
|
+
resolution: {integrity: sha512-tIP06BeD9EqvECBrPZ+sqdPlYrT+aYaAiu1wYziVx5elRK/ftm33JxVDy2bXGbr6J0CrtirCkR87/X5a2euEng==}
|
|
278
324
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
279
325
|
cpu: [arm64]
|
|
280
326
|
os: [linux]
|
|
281
327
|
libc: [glibc]
|
|
282
328
|
|
|
283
|
-
'@rolldown/binding-linux-arm64-musl@1.2.
|
|
284
|
-
resolution: {integrity: sha512-
|
|
329
|
+
'@rolldown/binding-linux-arm64-musl@1.2.4':
|
|
330
|
+
resolution: {integrity: sha512-Ql1Q0EQqVThvn9VAVlwNzsUvbSFtCMGjLpRRi4pk5i7NZZ4n5ISiLMjHYtus4VQ2PvkSw24zyaCVsiS+sXPj1w==}
|
|
285
331
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
286
332
|
cpu: [arm64]
|
|
287
333
|
os: [linux]
|
|
288
334
|
libc: [musl]
|
|
289
335
|
|
|
290
|
-
'@rolldown/binding-linux-ppc64-gnu@1.2.
|
|
291
|
-
resolution: {integrity: sha512-
|
|
336
|
+
'@rolldown/binding-linux-ppc64-gnu@1.2.4':
|
|
337
|
+
resolution: {integrity: sha512-GjbjXD4XXfN19D0LZNbmiCBUoDiRACsYHr0yaIbbn8aFsXjHZifcYqu/W5Er5X2X990WjHXFrxarn5chzItorQ==}
|
|
292
338
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
293
339
|
cpu: [ppc64]
|
|
294
340
|
os: [linux]
|
|
295
341
|
libc: [glibc]
|
|
296
342
|
|
|
297
|
-
'@rolldown/binding-linux-s390x-gnu@1.2.
|
|
298
|
-
resolution: {integrity: sha512-
|
|
343
|
+
'@rolldown/binding-linux-s390x-gnu@1.2.4':
|
|
344
|
+
resolution: {integrity: sha512-p5WR0NOwaRmJ/B1b6IjEFLLivwEsf3PrdBIhRbhTCQisbo2SvHHpG4ELB/+FgQNnB88LTOF86upmJmbvZdQ2lw==}
|
|
299
345
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
300
346
|
cpu: [s390x]
|
|
301
347
|
os: [linux]
|
|
302
348
|
libc: [glibc]
|
|
303
349
|
|
|
304
|
-
'@rolldown/binding-linux-x64-gnu@1.2.
|
|
305
|
-
resolution: {integrity: sha512-
|
|
350
|
+
'@rolldown/binding-linux-x64-gnu@1.2.4':
|
|
351
|
+
resolution: {integrity: sha512-4/GyVjmhR+Tc6HLJvwc1sOhPqAZtySiSMesOZyX6JQ5XBxoTDEMKQzvo07NIK6nTon/SivlZqvhzvuVBNQhObQ==}
|
|
306
352
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
307
353
|
cpu: [x64]
|
|
308
354
|
os: [linux]
|
|
309
355
|
libc: [glibc]
|
|
310
356
|
|
|
311
|
-
'@rolldown/binding-linux-x64-musl@1.2.
|
|
312
|
-
resolution: {integrity: sha512
|
|
357
|
+
'@rolldown/binding-linux-x64-musl@1.2.4':
|
|
358
|
+
resolution: {integrity: sha512-l9eeLsCNvPpmSXUej0etw/J1eqV0Jj1D5G/xG6YTijmE6dkv6E2QezgWbTfQk63v952DPqrjOCoiqxq7Bw0YUQ==}
|
|
313
359
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
314
360
|
cpu: [x64]
|
|
315
361
|
os: [linux]
|
|
316
362
|
libc: [musl]
|
|
317
363
|
|
|
318
|
-
'@rolldown/binding-openharmony-arm64@1.2.
|
|
319
|
-
resolution: {integrity: sha512-
|
|
364
|
+
'@rolldown/binding-openharmony-arm64@1.2.4':
|
|
365
|
+
resolution: {integrity: sha512-e0F355MSTMm3+UOqtV3L24gFUp2N5m1f8L/7d56deik6va+AXdrt9F8LbzGpeWGWRbZEDq4m8NVnJDeBtf9DZg==}
|
|
320
366
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
321
367
|
cpu: [arm64]
|
|
322
368
|
os: [openharmony]
|
|
323
369
|
|
|
324
|
-
'@rolldown/binding-win32-arm64-msvc@1.2.
|
|
325
|
-
resolution: {integrity: sha512-
|
|
370
|
+
'@rolldown/binding-win32-arm64-msvc@1.2.4':
|
|
371
|
+
resolution: {integrity: sha512-AWLi0uBRYh6QlE7OKhiz+phZC0qwtij2QZmhmOdsLdFn64m7oMpooE9ICE3lhm9xMb4SpDo2WbHcxX1iFLFtqw==}
|
|
326
372
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
327
373
|
cpu: [arm64]
|
|
328
374
|
os: [win32]
|
|
329
375
|
|
|
330
|
-
'@rolldown/binding-win32-x64-msvc@1.2.
|
|
331
|
-
resolution: {integrity: sha512-
|
|
376
|
+
'@rolldown/binding-win32-x64-msvc@1.2.4':
|
|
377
|
+
resolution: {integrity: sha512-UwSDJOg3dqCAejWdxclJjCsh3Qq4vLYMDxmyHqo1btz3stK2VqgwNd3mm5tuIwzSlGIQ/1H9Hr+Zn09mrezNqQ==}
|
|
332
378
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
333
379
|
cpu: [x64]
|
|
334
380
|
os: [win32]
|
|
@@ -360,69 +406,66 @@ packages:
|
|
|
360
406
|
'@types/json-schema@7.0.15':
|
|
361
407
|
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
|
|
362
408
|
|
|
363
|
-
'@types/
|
|
364
|
-
resolution: {integrity: sha512-
|
|
409
|
+
'@types/react@19.2.18':
|
|
410
|
+
resolution: {integrity: sha512-AnzbBERsrLKtk2XSfTbYRLjQPdy116Sty4q+T+Bp3IC4l6jNBvreVPAHmpq9qhXQM7CXZPjLVmGMw9sy+hxQ3w==}
|
|
365
411
|
|
|
366
|
-
'@
|
|
367
|
-
resolution: {integrity: sha512-
|
|
368
|
-
|
|
369
|
-
'@typescript-eslint/eslint-plugin@8.66.0':
|
|
370
|
-
resolution: {integrity: sha512-p088eaGrzYz1s+7cov0aMOCkNGTJlVxF4jgubf28c8L0Cv9Rloj8YBHnv4hXLq6IIEE1AsjNWavO+k+8kP2Y0A==}
|
|
412
|
+
'@typescript-eslint/eslint-plugin@8.67.0':
|
|
413
|
+
resolution: {integrity: sha512-Un7Heoyj65NREbKAyIrFxeM143NZpExWmy1Nep4DLeQOeLlTeumPjoNKnBrU5D5moWXbPJgRa5Uwcdu0faVNGQ==}
|
|
371
414
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
372
415
|
peerDependencies:
|
|
373
|
-
'@typescript-eslint/parser': ^8.
|
|
416
|
+
'@typescript-eslint/parser': ^8.67.0
|
|
374
417
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
375
418
|
typescript: '>=4.8.4 <6.1.0'
|
|
376
419
|
|
|
377
|
-
'@typescript-eslint/parser@8.
|
|
378
|
-
resolution: {integrity: sha512-
|
|
420
|
+
'@typescript-eslint/parser@8.67.0':
|
|
421
|
+
resolution: {integrity: sha512-fUBfTuuEulWqX6V8+O3PtScV01tzYYRUDTAirHFKoRAt7nOzoGiPt0M/bB47wWNy0coOOcgEwAMUtBpykMxl6w==}
|
|
379
422
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
380
423
|
peerDependencies:
|
|
381
424
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
382
425
|
typescript: '>=4.8.4 <6.1.0'
|
|
383
426
|
|
|
384
|
-
'@typescript-eslint/project-service@8.
|
|
385
|
-
resolution: {integrity: sha512-
|
|
427
|
+
'@typescript-eslint/project-service@8.67.0':
|
|
428
|
+
resolution: {integrity: sha512-cvE8c7ulYeXN9fYuszhCeCsbzyVEXuhrRCybnBre7TUmqb5nRmBfQAwCj0O3WJFDeyAZt4VYv51vMCC9LHSdYw==}
|
|
386
429
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
387
430
|
peerDependencies:
|
|
388
431
|
typescript: '>=4.8.4 <6.1.0'
|
|
389
432
|
|
|
390
|
-
'@typescript-eslint/scope-manager@8.
|
|
391
|
-
resolution: {integrity: sha512-
|
|
433
|
+
'@typescript-eslint/scope-manager@8.67.0':
|
|
434
|
+
resolution: {integrity: sha512-EgvsleTwS4E+WzzSvem8fAUubLwatMNF1B5hHSLQxcvs7q2dtRhGyujHwLJSYlG41niJ7GP24Aha2+0mb1b2kg==}
|
|
392
435
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
393
436
|
|
|
394
|
-
'@typescript-eslint/tsconfig-utils@8.
|
|
395
|
-
resolution: {integrity: sha512-
|
|
437
|
+
'@typescript-eslint/tsconfig-utils@8.67.0':
|
|
438
|
+
resolution: {integrity: sha512-vV+LUSv5njUWsknE71fqKTlXUva+R76SaeORd6Zojcunk/6DvKFXONU3BrAs2H49mbygUXt6gbYunzwqNwlhdg==}
|
|
396
439
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
397
440
|
peerDependencies:
|
|
398
441
|
typescript: '>=4.8.4 <6.1.0'
|
|
399
442
|
|
|
400
|
-
'@typescript-eslint/type-utils@8.
|
|
401
|
-
resolution: {integrity: sha512-
|
|
443
|
+
'@typescript-eslint/type-utils@8.67.0':
|
|
444
|
+
resolution: {integrity: sha512-aVWDXbRmdXO9siTfX4ditQI1T9+zVcNazT48EJCD0v40/9RIFoUgZ05CmGEq9H2gixRpjUn/iplwvlcvutJW/Q==}
|
|
402
445
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
403
446
|
peerDependencies:
|
|
404
447
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
405
448
|
typescript: '>=4.8.4 <6.1.0'
|
|
406
449
|
|
|
407
|
-
'@typescript-eslint/types@8.
|
|
408
|
-
resolution: {integrity: sha512-
|
|
450
|
+
'@typescript-eslint/types@8.67.0':
|
|
451
|
+
resolution: {integrity: sha512-sBtgslww8nsMYUjhdPBiSyUqSzT8uR6g93A2QXnQC8+cGdjz0CyaOdqHDRJb1AtORbZCNUJBBeFA/tNR2uQmww==}
|
|
409
452
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
410
453
|
|
|
411
|
-
'@typescript-eslint/typescript-estree@8.
|
|
412
|
-
resolution: {integrity: sha512-
|
|
454
|
+
'@typescript-eslint/typescript-estree@8.67.0':
|
|
455
|
+
resolution: {integrity: sha512-EKQBCE9yNlRJYm7jdTW5AhDacDUmSwQb0FAJAmK2EKYrNXIsa2vxcSZx6PvJ/dEdI6lS+Y9W+EXckLj0iPFGcw==}
|
|
413
456
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
414
457
|
peerDependencies:
|
|
415
458
|
typescript: '>=4.8.4 <6.1.0'
|
|
416
459
|
|
|
417
|
-
'@typescript-eslint/utils@8.
|
|
418
|
-
resolution: {integrity: sha512-
|
|
460
|
+
'@typescript-eslint/utils@8.67.0':
|
|
461
|
+
resolution: {integrity: sha512-U9D1FdwEWBwok3hxxSdhclMb0twvt9QnjIQ0VfQ1AiX2epnpSgv2ubVDsayOFyY8K6FX+AQ7E0FKWVG3iKsj1A==}
|
|
419
462
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
420
463
|
peerDependencies:
|
|
421
464
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
422
465
|
typescript: '>=4.8.4 <6.1.0'
|
|
423
466
|
|
|
424
|
-
'@typescript-eslint/visitor-keys@8.
|
|
425
|
-
resolution: {integrity: sha512-
|
|
467
|
+
'@typescript-eslint/visitor-keys@8.67.0':
|
|
468
|
+
resolution: {integrity: sha512-fkv8dHRDqfGtTHuJeebdrQ7cX6Ad4WAS00rgHh9UGvMycF1mjBfsxry1XsLIFhWZ6Judlh6UdzK+TYlbpCXgnA==}
|
|
426
469
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
427
470
|
|
|
428
471
|
'@unrs/resolver-binding-android-arm-eabi@1.12.2':
|
|
@@ -619,10 +662,6 @@ packages:
|
|
|
619
662
|
resolution: {integrity: sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==}
|
|
620
663
|
engines: {node: '>= 0.4'}
|
|
621
664
|
|
|
622
|
-
array.prototype.findlast@1.2.5:
|
|
623
|
-
resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==}
|
|
624
|
-
engines: {node: '>= 0.4'}
|
|
625
|
-
|
|
626
665
|
array.prototype.flat@1.3.3:
|
|
627
666
|
resolution: {integrity: sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==}
|
|
628
667
|
engines: {node: '>= 0.4'}
|
|
@@ -631,10 +670,6 @@ packages:
|
|
|
631
670
|
resolution: {integrity: sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==}
|
|
632
671
|
engines: {node: '>= 0.4'}
|
|
633
672
|
|
|
634
|
-
array.prototype.tosorted@1.1.4:
|
|
635
|
-
resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==}
|
|
636
|
-
engines: {node: '>= 0.4'}
|
|
637
|
-
|
|
638
673
|
arraybuffer.prototype.slice@1.0.4:
|
|
639
674
|
resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==}
|
|
640
675
|
engines: {node: '>= 0.4'}
|
|
@@ -669,11 +704,14 @@ packages:
|
|
|
669
704
|
resolution: {integrity: sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==}
|
|
670
705
|
engines: {node: 18 || 20 || >=22}
|
|
671
706
|
|
|
672
|
-
baseline-browser-mapping@2.11.
|
|
673
|
-
resolution: {integrity: sha512-
|
|
707
|
+
baseline-browser-mapping@2.11.14:
|
|
708
|
+
resolution: {integrity: sha512-JyJ954WzuIR8/FFzX0o5krdSTrBAkcCSRfWSleRsIHSWV+cZe2FI1PKggVkFke1hBldRs+LRxUczzE9iPmgZww==}
|
|
674
709
|
engines: {node: '>=6.0.0'}
|
|
675
710
|
hasBin: true
|
|
676
711
|
|
|
712
|
+
birecord@0.1.2:
|
|
713
|
+
resolution: {integrity: sha512-5PAPTTmMpMEb+GuMb5DebfBkipRGyIW9+gtwEBSoDA9xkhHILm04+hZQ702pMksu3d8YAuGkmgTzQWcKqTPScA==}
|
|
714
|
+
|
|
677
715
|
brace-expansion@1.1.18:
|
|
678
716
|
resolution: {integrity: sha512-Edep/X9fGqVNmzKBVsDYIOtD+z1tuezV70LBjdCst9Tqu76lsnvRiZ6oTic1n+/BIwX6QDGAO94PN4N2SADvtw==}
|
|
679
717
|
|
|
@@ -709,6 +747,9 @@ packages:
|
|
|
709
747
|
resolution: {integrity: sha512-rKZTGo4fzKYna8UcL0isTg5wkBNla7bxTypLwZQXjIdi++IdP1OJ41rI5Mti3/jltkPujbu4i9LIARYA+zpotQ==}
|
|
710
748
|
engines: {node: '>= 12.0.0'}
|
|
711
749
|
|
|
750
|
+
compare-versions@6.1.1:
|
|
751
|
+
resolution: {integrity: sha512-4hm4VPpIecmlg59CHXnRDnqGplJFrbLG4aFEl5vl6cK1u76ws3LLvX7ikFnTDl5vo39sjWD6AaDPYodJp/NNHg==}
|
|
752
|
+
|
|
712
753
|
concat-map@0.0.1:
|
|
713
754
|
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
|
|
714
755
|
|
|
@@ -761,16 +802,12 @@ packages:
|
|
|
761
802
|
resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
|
|
762
803
|
engines: {node: '>=8'}
|
|
763
804
|
|
|
764
|
-
doctrine@2.1.0:
|
|
765
|
-
resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
|
|
766
|
-
engines: {node: '>=0.10.0'}
|
|
767
|
-
|
|
768
805
|
dunder-proto@1.0.1:
|
|
769
806
|
resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
|
|
770
807
|
engines: {node: '>= 0.4'}
|
|
771
808
|
|
|
772
|
-
electron-to-chromium@1.5.
|
|
773
|
-
resolution: {integrity: sha512-
|
|
809
|
+
electron-to-chromium@1.5.406:
|
|
810
|
+
resolution: {integrity: sha512-hWH5ORBi3d0IipnMh7BN5GDTaAmrSSSWmznwt2zltdiRNEWoEQyTwF0FFSBxzHO7hLSRT6loQu3IQGV0wg/Tvg==}
|
|
774
811
|
|
|
775
812
|
emoji-regex@9.2.2:
|
|
776
813
|
resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
|
|
@@ -791,10 +828,6 @@ packages:
|
|
|
791
828
|
resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
|
|
792
829
|
engines: {node: '>= 0.4'}
|
|
793
830
|
|
|
794
|
-
es-iterator-helpers@1.4.0:
|
|
795
|
-
resolution: {integrity: sha512-c/A0P0oxkACDc+cKWw8evLXK83oBKgn0qPOqCYT4x9uolpCIJAcYvJC9QYKNDRPsTeGyCrQ326jrvgZWdCdK5Q==}
|
|
796
|
-
engines: {node: '>= 0.4'}
|
|
797
|
-
|
|
798
831
|
es-module-lexer@2.3.1:
|
|
799
832
|
resolution: {integrity: sha512-shc1dbU90Yl/xq1QrC7QRtfcwURZuVRfPhZbDoldJ1cn1gzDvBaBWlv0eFolj5+0znnPJz5TXLxsN77X/12KTA==}
|
|
800
833
|
|
|
@@ -880,17 +913,53 @@ packages:
|
|
|
880
913
|
eslint-config-prettier:
|
|
881
914
|
optional: true
|
|
882
915
|
|
|
916
|
+
eslint-plugin-react-dom@5.18.6:
|
|
917
|
+
resolution: {integrity: sha512-xco47I0Agu+83QH2ONbgZd1JPLSXJON+gtFGJbOhgfPvetfO7UkcHu8iLpncopwyWekAXfhvomJsDlNLTm26/g==}
|
|
918
|
+
engines: {node: '>=22.0.0'}
|
|
919
|
+
peerDependencies:
|
|
920
|
+
eslint: '*'
|
|
921
|
+
typescript: '*'
|
|
922
|
+
|
|
883
923
|
eslint-plugin-react-hooks@7.1.1:
|
|
884
924
|
resolution: {integrity: sha512-f2I7Gw6JbvCexzIInuSbZpfdQ44D7iqdWX01FKLvrPgqxoE7oMj8clOfto8U6vYiz4yd5oKu39rRSVOe1zRu0g==}
|
|
885
925
|
engines: {node: '>=18'}
|
|
886
926
|
peerDependencies:
|
|
887
927
|
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 || ^10.0.0
|
|
888
928
|
|
|
889
|
-
eslint-plugin-react@
|
|
890
|
-
resolution: {integrity: sha512-
|
|
891
|
-
engines: {node: '>=
|
|
929
|
+
eslint-plugin-react-jsx@5.18.6:
|
|
930
|
+
resolution: {integrity: sha512-6EvzS5gZGfQ0byvSxgqV/F0qXTVnNGcCU7wgFZqz8I1IXmcbYyBCyU7gqNlKW1/1ptiZFmuwo57+eW6HyK+wEg==}
|
|
931
|
+
engines: {node: '>=22.0.0'}
|
|
932
|
+
peerDependencies:
|
|
933
|
+
eslint: '*'
|
|
934
|
+
typescript: '*'
|
|
935
|
+
|
|
936
|
+
eslint-plugin-react-naming-convention@5.18.6:
|
|
937
|
+
resolution: {integrity: sha512-3KZkJN8XDTq6YtaYvyWJt3GQRjW3WhoVuGgLfhf0yO+8H0GW78FkesqGe//+np+pBXwPv6hck4c8ViTEQJ9qIQ==}
|
|
938
|
+
engines: {node: '>=22.0.0'}
|
|
939
|
+
peerDependencies:
|
|
940
|
+
eslint: '*'
|
|
941
|
+
typescript: '*'
|
|
942
|
+
|
|
943
|
+
eslint-plugin-react-rsc@5.18.6:
|
|
944
|
+
resolution: {integrity: sha512-4mzLkRKRpN9Rr5JMeNrxkMFLHce1ikAdsjAiPOSIgYwWSsQWxHwpMTf+UfjXgfB6CcAcyKCyIe5HmOMX2kUoVQ==}
|
|
945
|
+
engines: {node: '>=22.0.0'}
|
|
946
|
+
peerDependencies:
|
|
947
|
+
eslint: '*'
|
|
948
|
+
typescript: '*'
|
|
949
|
+
|
|
950
|
+
eslint-plugin-react-web-api@5.18.6:
|
|
951
|
+
resolution: {integrity: sha512-r8s39AbHZ0071XcgCMoCdNkSARftqI6U/0bBJXPioVUw+hjp0n4EB27fsc69AHzRl/NJWA1oUJb+kcqxoWMR4w==}
|
|
952
|
+
engines: {node: '>=22.0.0'}
|
|
953
|
+
peerDependencies:
|
|
954
|
+
eslint: '*'
|
|
955
|
+
typescript: '*'
|
|
956
|
+
|
|
957
|
+
eslint-plugin-react-x@5.18.6:
|
|
958
|
+
resolution: {integrity: sha512-VvxeREksTiY9Q7YnpNvQNrjapUGu43rQJXrtbjT9ADwXX5nZiyUqD7T7fkbUYfH6NPz2bYvnAmGEctIfEGTTfQ==}
|
|
959
|
+
engines: {node: '>=22.0.0'}
|
|
892
960
|
peerDependencies:
|
|
893
|
-
eslint:
|
|
961
|
+
eslint: '*'
|
|
962
|
+
typescript: '*'
|
|
894
963
|
|
|
895
964
|
eslint-plugin-testing-library@7.16.2:
|
|
896
965
|
resolution: {integrity: sha512-8gleGnQXK2ZA3hHwjCwpYTZvM+9VsrJ+/9kDI8CjqAQGAdMQOdn/rJNu7ZySENuiWlGKQWyZJ4ZjEg2zamaRHw==}
|
|
@@ -1022,15 +1091,15 @@ packages:
|
|
|
1022
1091
|
resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==}
|
|
1023
1092
|
engines: {node: '>= 0.4'}
|
|
1024
1093
|
|
|
1025
|
-
get-tsconfig@4.14.
|
|
1026
|
-
resolution: {integrity: sha512-
|
|
1094
|
+
get-tsconfig@4.14.2:
|
|
1095
|
+
resolution: {integrity: sha512-XpwZALwwl/BaKTAyC6+c5T8y6kCg2jk+XGqOVrKIQmW49pNypYLMRjCUXqa28tQgJlhS2RlzP7sc+Rx7W6qsfw==}
|
|
1027
1096
|
|
|
1028
1097
|
glob-parent@6.0.2:
|
|
1029
1098
|
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
|
|
1030
1099
|
engines: {node: '>=10.13.0'}
|
|
1031
1100
|
|
|
1032
|
-
globals@17.
|
|
1033
|
-
resolution: {integrity: sha512-
|
|
1101
|
+
globals@17.11.0:
|
|
1102
|
+
resolution: {integrity: sha512-Z2I8hM+PbJDXQDq3Icgpzv+mPdwr68iZUU9d5WW4FuXfDUQfkZaZuvjMv42/5crNyw154+9+VWXbYrUgDXbxNw==}
|
|
1034
1103
|
engines: {node: '>=18'}
|
|
1035
1104
|
|
|
1036
1105
|
globalthis@1.0.4:
|
|
@@ -1106,10 +1175,6 @@ packages:
|
|
|
1106
1175
|
resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
|
|
1107
1176
|
engines: {node: '>= 0.4'}
|
|
1108
1177
|
|
|
1109
|
-
is-core-module@2.16.2:
|
|
1110
|
-
resolution: {integrity: sha512-evOr8xfXKxE6qSR0hSXL2r3sd7ALj8+7jQEUvPYcm5sgZFdJ+AYzT6yNmJenvIYQBgIGwfwz08sL8zoL7yq2BA==}
|
|
1111
|
-
engines: {node: '>= 0.4'}
|
|
1112
|
-
|
|
1113
1178
|
is-data-view@1.0.2:
|
|
1114
1179
|
resolution: {integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==}
|
|
1115
1180
|
engines: {node: '>= 0.4'}
|
|
@@ -1196,10 +1261,6 @@ packages:
|
|
|
1196
1261
|
resolution: {integrity: sha512-FFUtZMpoZ8RqHS3XeXEmHWLA4thH+ZxCv2lOiPIn1Xc7CxrqhWzNSDzD+/chS/zbYezmiwWLdQC09JdQKmthOw==}
|
|
1197
1262
|
engines: {node: '>=20'}
|
|
1198
1263
|
|
|
1199
|
-
iterator.prototype@1.1.5:
|
|
1200
|
-
resolution: {integrity: sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==}
|
|
1201
|
-
engines: {node: '>= 0.4'}
|
|
1202
|
-
|
|
1203
1264
|
js-tokens@4.0.0:
|
|
1204
1265
|
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
|
|
1205
1266
|
|
|
@@ -1322,10 +1383,6 @@ packages:
|
|
|
1322
1383
|
resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
|
|
1323
1384
|
engines: {node: '>=10'}
|
|
1324
1385
|
|
|
1325
|
-
loose-envify@1.4.0:
|
|
1326
|
-
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
|
|
1327
|
-
hasBin: true
|
|
1328
|
-
|
|
1329
1386
|
lru-cache@5.1.1:
|
|
1330
1387
|
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
|
|
1331
1388
|
|
|
@@ -1363,10 +1420,6 @@ packages:
|
|
|
1363
1420
|
natural-compare@1.4.0:
|
|
1364
1421
|
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
|
|
1365
1422
|
|
|
1366
|
-
node-exports-info@1.6.2:
|
|
1367
|
-
resolution: {integrity: sha512-kXs9Go0cah0qHVV2v389IXQLdLCeE1xfFtjOAF+iobu0OIoG1pje8At2vMHyaPMiPMnG/LWP50twML21eMcAag==}
|
|
1368
|
-
engines: {node: '>= 0.4'}
|
|
1369
|
-
|
|
1370
1423
|
node-releases@2.0.53:
|
|
1371
1424
|
resolution: {integrity: sha512-D9UOmYG3UH1V+ENW56t5QXBwJw1YEY18ruVeus89Rw+SyIgjPkCO84bRzO3uNIYosJbNwiabWVn48o3uJLjxFQ==}
|
|
1372
1425
|
engines: {node: '>=18'}
|
|
@@ -1380,10 +1433,6 @@ packages:
|
|
|
1380
1433
|
engines: {node: ^22.22.2 || ^24.15.0 || >=26.0.0, npm: '>= 10'}
|
|
1381
1434
|
hasBin: true
|
|
1382
1435
|
|
|
1383
|
-
object-assign@4.1.1:
|
|
1384
|
-
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
|
|
1385
|
-
engines: {node: '>=0.10.0'}
|
|
1386
|
-
|
|
1387
1436
|
object-inspect@1.13.4:
|
|
1388
1437
|
resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==}
|
|
1389
1438
|
engines: {node: '>= 0.4'}
|
|
@@ -1396,10 +1445,6 @@ packages:
|
|
|
1396
1445
|
resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==}
|
|
1397
1446
|
engines: {node: '>= 0.4'}
|
|
1398
1447
|
|
|
1399
|
-
object.entries@1.1.9:
|
|
1400
|
-
resolution: {integrity: sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==}
|
|
1401
|
-
engines: {node: '>= 0.4'}
|
|
1402
|
-
|
|
1403
1448
|
object.fromentries@2.0.8:
|
|
1404
1449
|
resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==}
|
|
1405
1450
|
engines: {node: '>= 0.4'}
|
|
@@ -1436,9 +1481,6 @@ packages:
|
|
|
1436
1481
|
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
|
|
1437
1482
|
engines: {node: '>=8'}
|
|
1438
1483
|
|
|
1439
|
-
path-parse@1.0.7:
|
|
1440
|
-
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
|
|
1441
|
-
|
|
1442
1484
|
pathe@2.0.3:
|
|
1443
1485
|
resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
|
|
1444
1486
|
|
|
@@ -1470,11 +1512,6 @@ packages:
|
|
|
1470
1512
|
resolution: {integrity: sha512-SxToR7P8Y2lWmv/kTzVLC1t/GDI2WGjMwNhLLE9qtH8Q13C+aEmuRlzDst4Up4s0Wc8sF2M+J57iB3cMLqftfg==}
|
|
1471
1513
|
engines: {node: '>=6.0.0'}
|
|
1472
1514
|
|
|
1473
|
-
prettier-plugin-ignored@1.0.0:
|
|
1474
|
-
resolution: {integrity: sha512-q0wSUvUfHqg2cZ5SADkqnGK9Cv5bBn/ootjwDWAQ+8qE/iN1nklT3XHSaF6duRl6j0P4Ew70r0vAJkGZrn4/+w==}
|
|
1475
|
-
peerDependencies:
|
|
1476
|
-
prettier: 3.x
|
|
1477
|
-
|
|
1478
1515
|
prettier-plugin-tailwindcss@0.8.1:
|
|
1479
1516
|
resolution: {integrity: sha512-iaFMYqDsE4ffdDkn5qup0j5f2aCEBFZrdrZnvu9QKTlWx/iGPeQ4HHu7b7fCPMxeo9nwQBiOAh2nSypdFYWJkw==}
|
|
1480
1517
|
engines: {node: '>=20.19'}
|
|
@@ -1535,18 +1572,12 @@ packages:
|
|
|
1535
1572
|
engines: {node: '>=14'}
|
|
1536
1573
|
hasBin: true
|
|
1537
1574
|
|
|
1538
|
-
prop-types@15.8.1:
|
|
1539
|
-
resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
|
|
1540
|
-
|
|
1541
1575
|
punycode@2.3.1:
|
|
1542
1576
|
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
|
|
1543
1577
|
engines: {node: '>=6'}
|
|
1544
1578
|
|
|
1545
|
-
react
|
|
1546
|
-
resolution: {integrity: sha512-
|
|
1547
|
-
|
|
1548
|
-
react@18.3.1:
|
|
1549
|
-
resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
|
|
1579
|
+
react@19.2.8:
|
|
1580
|
+
resolution: {integrity: sha512-PWaYA1L/q9u2u7xYQi+Y3L3Yfnie7XyLeaJICV1MGD6LprsBxcAqGjYyr0eY3p+QdsA+x/Irkt4Qif8D63+Sbw==}
|
|
1550
1581
|
engines: {node: '>=0.10.0'}
|
|
1551
1582
|
|
|
1552
1583
|
read-package-json-fast@6.0.0:
|
|
@@ -1568,13 +1599,8 @@ packages:
|
|
|
1568
1599
|
resolve-pkg-maps@1.0.0:
|
|
1569
1600
|
resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
|
|
1570
1601
|
|
|
1571
|
-
|
|
1572
|
-
resolution: {integrity: sha512-
|
|
1573
|
-
engines: {node: '>= 0.4'}
|
|
1574
|
-
hasBin: true
|
|
1575
|
-
|
|
1576
|
-
rolldown@1.2.3:
|
|
1577
|
-
resolution: {integrity: sha512-rn9wpmxplLf7NLNyCk9FyWh3FM43DbY8jOzCdEPzH7uflhTftRbCEpqi6Ly2osgoU8OwObtmavMbWLaWy4LX7A==}
|
|
1602
|
+
rolldown@1.2.4:
|
|
1603
|
+
resolution: {integrity: sha512-rSr7irW0K7QRWzjdJXqZowkcRdDtjRduh43rBltnVKd0VFq839l1lJoDvGJb6gl7+4rTTCrPWu+YfujUL8Ug7w==}
|
|
1578
1604
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
1579
1605
|
hasBin: true
|
|
1580
1606
|
|
|
@@ -1660,17 +1686,13 @@ packages:
|
|
|
1660
1686
|
resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==}
|
|
1661
1687
|
engines: {node: '>= 0.4'}
|
|
1662
1688
|
|
|
1689
|
+
string-ts@2.3.1:
|
|
1690
|
+
resolution: {integrity: sha512-xSJq+BS52SaFFAVxuStmx6n5aYZU571uYUnUrPXkPFCfdHyZMMlbP2v2Wx5sNBnAVzq/2+0+mcBLBa3Xa5ubYw==}
|
|
1691
|
+
|
|
1663
1692
|
string.prototype.includes@2.0.1:
|
|
1664
1693
|
resolution: {integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==}
|
|
1665
1694
|
engines: {node: '>= 0.4'}
|
|
1666
1695
|
|
|
1667
|
-
string.prototype.matchall@4.0.12:
|
|
1668
|
-
resolution: {integrity: sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==}
|
|
1669
|
-
engines: {node: '>= 0.4'}
|
|
1670
|
-
|
|
1671
|
-
string.prototype.repeat@1.0.0:
|
|
1672
|
-
resolution: {integrity: sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==}
|
|
1673
|
-
|
|
1674
1696
|
string.prototype.trim@1.2.11:
|
|
1675
1697
|
resolution: {integrity: sha512-PwvK7BU+CMTJGYQCTZb5RWXIML92lftJLhQz1tBzgKiqGxJaMlBAa48POXaNAC2s4y8jr3EFqrkF9+44neS46w==}
|
|
1676
1698
|
engines: {node: '>= 0.4'}
|
|
@@ -1683,10 +1705,6 @@ packages:
|
|
|
1683
1705
|
resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==}
|
|
1684
1706
|
engines: {node: '>= 0.4'}
|
|
1685
1707
|
|
|
1686
|
-
supports-preserve-symlinks-flag@1.0.0:
|
|
1687
|
-
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
|
|
1688
|
-
engines: {node: '>= 0.4'}
|
|
1689
|
-
|
|
1690
1708
|
synckit@0.11.13:
|
|
1691
1709
|
resolution: {integrity: sha512-eNRKgb3z66Yp3D2CixVujOUvXLFUTij/zVnV8KRyvFdQwpz7I5DS8UfRkTeLzb64u+dkzDSdelE24izu+zSSUg==}
|
|
1692
1710
|
engines: {node: ^14.18.0 || >=16.0.0}
|
|
@@ -1712,6 +1730,9 @@ packages:
|
|
|
1712
1730
|
peerDependencies:
|
|
1713
1731
|
typescript: '>=4.8.4'
|
|
1714
1732
|
|
|
1733
|
+
ts-pattern@5.9.0:
|
|
1734
|
+
resolution: {integrity: sha512-6s5V71mX8qBUmlgbrfL33xDUwO0fq48rxAu2LBE11WBeGdpCPOsXksQbZJHvHwhrd3QjUusd3mAOM5Gg0mFBLg==}
|
|
1735
|
+
|
|
1715
1736
|
tslib@2.8.1:
|
|
1716
1737
|
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
|
|
1717
1738
|
|
|
@@ -1735,8 +1756,8 @@ packages:
|
|
|
1735
1756
|
resolution: {integrity: sha512-phPGCwqr2+Qo0fwniCE8e4pKnGu/yFb5nD5Y8bf0EEeiI5GklnACYA9GFy/DrAeRrKHXvHn+1SUsOWgJp6RO+g==}
|
|
1736
1757
|
engines: {node: '>= 0.4'}
|
|
1737
1758
|
|
|
1738
|
-
typescript-eslint@8.
|
|
1739
|
-
resolution: {integrity: sha512-
|
|
1759
|
+
typescript-eslint@8.67.0:
|
|
1760
|
+
resolution: {integrity: sha512-S2udFs8tCKEKffuJ4TB1idGUZiXdCPGi3IPBGWXarbLQ5UPXORV8QEVzJ4gCRduURMb5EkpNCdjbk0eDIuI8Yg==}
|
|
1740
1761
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1741
1762
|
peerDependencies:
|
|
1742
1763
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
@@ -2023,6 +2044,92 @@ snapshots:
|
|
|
2023
2044
|
|
|
2024
2045
|
'@eslint-community/regexpp@4.12.2': {}
|
|
2025
2046
|
|
|
2047
|
+
'@eslint-react/ast@5.18.6(eslint@10.8.1)(typescript@6.0.3)':
|
|
2048
|
+
dependencies:
|
|
2049
|
+
'@typescript-eslint/types': 8.67.0
|
|
2050
|
+
'@typescript-eslint/typescript-estree': 8.67.0(typescript@6.0.3)
|
|
2051
|
+
'@typescript-eslint/utils': 8.67.0(eslint@10.8.1)(typescript@6.0.3)
|
|
2052
|
+
eslint: 10.8.1
|
|
2053
|
+
string-ts: 2.3.1
|
|
2054
|
+
typescript: 6.0.3
|
|
2055
|
+
transitivePeerDependencies:
|
|
2056
|
+
- supports-color
|
|
2057
|
+
|
|
2058
|
+
'@eslint-react/core@5.18.6(eslint@10.8.1)(typescript@6.0.3)':
|
|
2059
|
+
dependencies:
|
|
2060
|
+
'@eslint-react/ast': 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2061
|
+
'@eslint-react/eslint': 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2062
|
+
'@eslint-react/shared': 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2063
|
+
'@eslint-react/var': 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2064
|
+
'@typescript-eslint/scope-manager': 8.67.0
|
|
2065
|
+
'@typescript-eslint/types': 8.67.0
|
|
2066
|
+
'@typescript-eslint/utils': 8.67.0(eslint@10.8.1)(typescript@6.0.3)
|
|
2067
|
+
eslint: 10.8.1
|
|
2068
|
+
ts-pattern: 5.9.0
|
|
2069
|
+
typescript: 6.0.3
|
|
2070
|
+
transitivePeerDependencies:
|
|
2071
|
+
- supports-color
|
|
2072
|
+
|
|
2073
|
+
'@eslint-react/eslint-plugin@5.18.6(eslint@10.8.1)(typescript@6.0.3)':
|
|
2074
|
+
dependencies:
|
|
2075
|
+
'@eslint-react/shared': 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2076
|
+
eslint: 10.8.1
|
|
2077
|
+
eslint-plugin-react-dom: 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2078
|
+
eslint-plugin-react-jsx: 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2079
|
+
eslint-plugin-react-naming-convention: 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2080
|
+
eslint-plugin-react-rsc: 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2081
|
+
eslint-plugin-react-web-api: 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2082
|
+
eslint-plugin-react-x: 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2083
|
+
typescript: 6.0.3
|
|
2084
|
+
transitivePeerDependencies:
|
|
2085
|
+
- supports-color
|
|
2086
|
+
|
|
2087
|
+
'@eslint-react/eslint@5.18.6(eslint@10.8.1)(typescript@6.0.3)':
|
|
2088
|
+
dependencies:
|
|
2089
|
+
'@typescript-eslint/utils': 8.67.0(eslint@10.8.1)(typescript@6.0.3)
|
|
2090
|
+
eslint: 10.8.1
|
|
2091
|
+
typescript: 6.0.3
|
|
2092
|
+
transitivePeerDependencies:
|
|
2093
|
+
- supports-color
|
|
2094
|
+
|
|
2095
|
+
'@eslint-react/jsx@5.18.6(eslint@10.8.1)(typescript@6.0.3)':
|
|
2096
|
+
dependencies:
|
|
2097
|
+
'@eslint-react/ast': 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2098
|
+
'@eslint-react/eslint': 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2099
|
+
'@eslint-react/shared': 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2100
|
+
'@eslint-react/var': 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2101
|
+
'@typescript-eslint/types': 8.67.0
|
|
2102
|
+
'@typescript-eslint/utils': 8.67.0(eslint@10.8.1)(typescript@6.0.3)
|
|
2103
|
+
eslint: 10.8.1
|
|
2104
|
+
ts-pattern: 5.9.0
|
|
2105
|
+
typescript: 6.0.3
|
|
2106
|
+
transitivePeerDependencies:
|
|
2107
|
+
- supports-color
|
|
2108
|
+
|
|
2109
|
+
'@eslint-react/shared@5.18.6(eslint@10.8.1)(typescript@6.0.3)':
|
|
2110
|
+
dependencies:
|
|
2111
|
+
'@eslint-react/eslint': 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2112
|
+
'@typescript-eslint/utils': 8.67.0(eslint@10.8.1)(typescript@6.0.3)
|
|
2113
|
+
eslint: 10.8.1
|
|
2114
|
+
ts-pattern: 5.9.0
|
|
2115
|
+
typescript: 6.0.3
|
|
2116
|
+
zod: 4.4.3
|
|
2117
|
+
transitivePeerDependencies:
|
|
2118
|
+
- supports-color
|
|
2119
|
+
|
|
2120
|
+
'@eslint-react/var@5.18.6(eslint@10.8.1)(typescript@6.0.3)':
|
|
2121
|
+
dependencies:
|
|
2122
|
+
'@eslint-react/ast': 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2123
|
+
'@eslint-react/eslint': 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2124
|
+
'@typescript-eslint/scope-manager': 8.67.0
|
|
2125
|
+
'@typescript-eslint/types': 8.67.0
|
|
2126
|
+
'@typescript-eslint/utils': 8.67.0(eslint@10.8.1)(typescript@6.0.3)
|
|
2127
|
+
eslint: 10.8.1
|
|
2128
|
+
ts-pattern: 5.9.0
|
|
2129
|
+
typescript: 6.0.3
|
|
2130
|
+
transitivePeerDependencies:
|
|
2131
|
+
- supports-color
|
|
2132
|
+
|
|
2026
2133
|
'@eslint/config-array@0.23.5':
|
|
2027
2134
|
dependencies:
|
|
2028
2135
|
'@eslint/object-schema': 3.0.5
|
|
@@ -2085,57 +2192,57 @@ snapshots:
|
|
|
2085
2192
|
'@jridgewell/resolve-uri': 3.1.2
|
|
2086
2193
|
'@jridgewell/sourcemap-codec': 1.5.5
|
|
2087
2194
|
|
|
2088
|
-
'@napi-rs/wasm-runtime@1.2.
|
|
2195
|
+
'@napi-rs/wasm-runtime@1.2.3(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)':
|
|
2089
2196
|
dependencies:
|
|
2090
2197
|
'@emnapi/core': 1.10.0
|
|
2091
2198
|
'@emnapi/runtime': 1.10.0
|
|
2092
2199
|
'@tybys/wasm-util': 0.10.3
|
|
2093
2200
|
optional: true
|
|
2094
2201
|
|
|
2095
|
-
'@oxc-project/types@0.
|
|
2202
|
+
'@oxc-project/types@0.144.0': {}
|
|
2096
2203
|
|
|
2097
2204
|
'@pkgr/core@0.3.6': {}
|
|
2098
2205
|
|
|
2099
|
-
'@rolldown/binding-android-arm64@1.2.
|
|
2206
|
+
'@rolldown/binding-android-arm64@1.2.4':
|
|
2100
2207
|
optional: true
|
|
2101
2208
|
|
|
2102
|
-
'@rolldown/binding-darwin-arm64@1.2.
|
|
2209
|
+
'@rolldown/binding-darwin-arm64@1.2.4':
|
|
2103
2210
|
optional: true
|
|
2104
2211
|
|
|
2105
|
-
'@rolldown/binding-darwin-x64@1.2.
|
|
2212
|
+
'@rolldown/binding-darwin-x64@1.2.4':
|
|
2106
2213
|
optional: true
|
|
2107
2214
|
|
|
2108
|
-
'@rolldown/binding-freebsd-x64@1.2.
|
|
2215
|
+
'@rolldown/binding-freebsd-x64@1.2.4':
|
|
2109
2216
|
optional: true
|
|
2110
2217
|
|
|
2111
|
-
'@rolldown/binding-linux-arm-gnueabihf@1.2.
|
|
2218
|
+
'@rolldown/binding-linux-arm-gnueabihf@1.2.4':
|
|
2112
2219
|
optional: true
|
|
2113
2220
|
|
|
2114
|
-
'@rolldown/binding-linux-arm64-gnu@1.2.
|
|
2221
|
+
'@rolldown/binding-linux-arm64-gnu@1.2.4':
|
|
2115
2222
|
optional: true
|
|
2116
2223
|
|
|
2117
|
-
'@rolldown/binding-linux-arm64-musl@1.2.
|
|
2224
|
+
'@rolldown/binding-linux-arm64-musl@1.2.4':
|
|
2118
2225
|
optional: true
|
|
2119
2226
|
|
|
2120
|
-
'@rolldown/binding-linux-ppc64-gnu@1.2.
|
|
2227
|
+
'@rolldown/binding-linux-ppc64-gnu@1.2.4':
|
|
2121
2228
|
optional: true
|
|
2122
2229
|
|
|
2123
|
-
'@rolldown/binding-linux-s390x-gnu@1.2.
|
|
2230
|
+
'@rolldown/binding-linux-s390x-gnu@1.2.4':
|
|
2124
2231
|
optional: true
|
|
2125
2232
|
|
|
2126
|
-
'@rolldown/binding-linux-x64-gnu@1.2.
|
|
2233
|
+
'@rolldown/binding-linux-x64-gnu@1.2.4':
|
|
2127
2234
|
optional: true
|
|
2128
2235
|
|
|
2129
|
-
'@rolldown/binding-linux-x64-musl@1.2.
|
|
2236
|
+
'@rolldown/binding-linux-x64-musl@1.2.4':
|
|
2130
2237
|
optional: true
|
|
2131
2238
|
|
|
2132
|
-
'@rolldown/binding-openharmony-arm64@1.2.
|
|
2239
|
+
'@rolldown/binding-openharmony-arm64@1.2.4':
|
|
2133
2240
|
optional: true
|
|
2134
2241
|
|
|
2135
|
-
'@rolldown/binding-win32-arm64-msvc@1.2.
|
|
2242
|
+
'@rolldown/binding-win32-arm64-msvc@1.2.4':
|
|
2136
2243
|
optional: true
|
|
2137
2244
|
|
|
2138
|
-
'@rolldown/binding-win32-x64-msvc@1.2.
|
|
2245
|
+
'@rolldown/binding-win32-x64-msvc@1.2.4':
|
|
2139
2246
|
optional: true
|
|
2140
2247
|
|
|
2141
2248
|
'@rolldown/pluginutils@1.0.1': {}
|
|
@@ -2162,21 +2269,18 @@ snapshots:
|
|
|
2162
2269
|
|
|
2163
2270
|
'@types/json-schema@7.0.15': {}
|
|
2164
2271
|
|
|
2165
|
-
'@types/
|
|
2166
|
-
|
|
2167
|
-
'@types/react@18.3.31':
|
|
2272
|
+
'@types/react@19.2.18':
|
|
2168
2273
|
dependencies:
|
|
2169
|
-
'@types/prop-types': 15.7.15
|
|
2170
2274
|
csstype: 3.2.3
|
|
2171
2275
|
|
|
2172
|
-
'@typescript-eslint/eslint-plugin@8.
|
|
2276
|
+
'@typescript-eslint/eslint-plugin@8.67.0(@typescript-eslint/parser@8.67.0(eslint@10.8.1)(typescript@6.0.3))(eslint@10.8.1)(typescript@6.0.3)':
|
|
2173
2277
|
dependencies:
|
|
2174
2278
|
'@eslint-community/regexpp': 4.12.2
|
|
2175
|
-
'@typescript-eslint/parser': 8.
|
|
2176
|
-
'@typescript-eslint/scope-manager': 8.
|
|
2177
|
-
'@typescript-eslint/type-utils': 8.
|
|
2178
|
-
'@typescript-eslint/utils': 8.
|
|
2179
|
-
'@typescript-eslint/visitor-keys': 8.
|
|
2279
|
+
'@typescript-eslint/parser': 8.67.0(eslint@10.8.1)(typescript@6.0.3)
|
|
2280
|
+
'@typescript-eslint/scope-manager': 8.67.0
|
|
2281
|
+
'@typescript-eslint/type-utils': 8.67.0(eslint@10.8.1)(typescript@6.0.3)
|
|
2282
|
+
'@typescript-eslint/utils': 8.67.0(eslint@10.8.1)(typescript@6.0.3)
|
|
2283
|
+
'@typescript-eslint/visitor-keys': 8.67.0
|
|
2180
2284
|
eslint: 10.8.1
|
|
2181
2285
|
ignore: 7.0.6
|
|
2182
2286
|
natural-compare: 1.4.0
|
|
@@ -2185,41 +2289,41 @@ snapshots:
|
|
|
2185
2289
|
transitivePeerDependencies:
|
|
2186
2290
|
- supports-color
|
|
2187
2291
|
|
|
2188
|
-
'@typescript-eslint/parser@8.
|
|
2292
|
+
'@typescript-eslint/parser@8.67.0(eslint@10.8.1)(typescript@6.0.3)':
|
|
2189
2293
|
dependencies:
|
|
2190
|
-
'@typescript-eslint/scope-manager': 8.
|
|
2191
|
-
'@typescript-eslint/types': 8.
|
|
2192
|
-
'@typescript-eslint/typescript-estree': 8.
|
|
2193
|
-
'@typescript-eslint/visitor-keys': 8.
|
|
2294
|
+
'@typescript-eslint/scope-manager': 8.67.0
|
|
2295
|
+
'@typescript-eslint/types': 8.67.0
|
|
2296
|
+
'@typescript-eslint/typescript-estree': 8.67.0(typescript@6.0.3)
|
|
2297
|
+
'@typescript-eslint/visitor-keys': 8.67.0
|
|
2194
2298
|
debug: 4.4.3
|
|
2195
2299
|
eslint: 10.8.1
|
|
2196
2300
|
typescript: 6.0.3
|
|
2197
2301
|
transitivePeerDependencies:
|
|
2198
2302
|
- supports-color
|
|
2199
2303
|
|
|
2200
|
-
'@typescript-eslint/project-service@8.
|
|
2304
|
+
'@typescript-eslint/project-service@8.67.0(typescript@6.0.3)':
|
|
2201
2305
|
dependencies:
|
|
2202
|
-
'@typescript-eslint/tsconfig-utils': 8.
|
|
2203
|
-
'@typescript-eslint/types': 8.
|
|
2306
|
+
'@typescript-eslint/tsconfig-utils': 8.67.0(typescript@6.0.3)
|
|
2307
|
+
'@typescript-eslint/types': 8.67.0
|
|
2204
2308
|
debug: 4.4.3
|
|
2205
2309
|
typescript: 6.0.3
|
|
2206
2310
|
transitivePeerDependencies:
|
|
2207
2311
|
- supports-color
|
|
2208
2312
|
|
|
2209
|
-
'@typescript-eslint/scope-manager@8.
|
|
2313
|
+
'@typescript-eslint/scope-manager@8.67.0':
|
|
2210
2314
|
dependencies:
|
|
2211
|
-
'@typescript-eslint/types': 8.
|
|
2212
|
-
'@typescript-eslint/visitor-keys': 8.
|
|
2315
|
+
'@typescript-eslint/types': 8.67.0
|
|
2316
|
+
'@typescript-eslint/visitor-keys': 8.67.0
|
|
2213
2317
|
|
|
2214
|
-
'@typescript-eslint/tsconfig-utils@8.
|
|
2318
|
+
'@typescript-eslint/tsconfig-utils@8.67.0(typescript@6.0.3)':
|
|
2215
2319
|
dependencies:
|
|
2216
2320
|
typescript: 6.0.3
|
|
2217
2321
|
|
|
2218
|
-
'@typescript-eslint/type-utils@8.
|
|
2322
|
+
'@typescript-eslint/type-utils@8.67.0(eslint@10.8.1)(typescript@6.0.3)':
|
|
2219
2323
|
dependencies:
|
|
2220
|
-
'@typescript-eslint/types': 8.
|
|
2221
|
-
'@typescript-eslint/typescript-estree': 8.
|
|
2222
|
-
'@typescript-eslint/utils': 8.
|
|
2324
|
+
'@typescript-eslint/types': 8.67.0
|
|
2325
|
+
'@typescript-eslint/typescript-estree': 8.67.0(typescript@6.0.3)
|
|
2326
|
+
'@typescript-eslint/utils': 8.67.0(eslint@10.8.1)(typescript@6.0.3)
|
|
2223
2327
|
debug: 4.4.3
|
|
2224
2328
|
eslint: 10.8.1
|
|
2225
2329
|
ts-api-utils: 2.5.0(typescript@6.0.3)
|
|
@@ -2227,14 +2331,14 @@ snapshots:
|
|
|
2227
2331
|
transitivePeerDependencies:
|
|
2228
2332
|
- supports-color
|
|
2229
2333
|
|
|
2230
|
-
'@typescript-eslint/types@8.
|
|
2334
|
+
'@typescript-eslint/types@8.67.0': {}
|
|
2231
2335
|
|
|
2232
|
-
'@typescript-eslint/typescript-estree@8.
|
|
2336
|
+
'@typescript-eslint/typescript-estree@8.67.0(typescript@6.0.3)':
|
|
2233
2337
|
dependencies:
|
|
2234
|
-
'@typescript-eslint/project-service': 8.
|
|
2235
|
-
'@typescript-eslint/tsconfig-utils': 8.
|
|
2236
|
-
'@typescript-eslint/types': 8.
|
|
2237
|
-
'@typescript-eslint/visitor-keys': 8.
|
|
2338
|
+
'@typescript-eslint/project-service': 8.67.0(typescript@6.0.3)
|
|
2339
|
+
'@typescript-eslint/tsconfig-utils': 8.67.0(typescript@6.0.3)
|
|
2340
|
+
'@typescript-eslint/types': 8.67.0
|
|
2341
|
+
'@typescript-eslint/visitor-keys': 8.67.0
|
|
2238
2342
|
debug: 4.4.3
|
|
2239
2343
|
minimatch: 10.2.6
|
|
2240
2344
|
semver: 7.8.5
|
|
@@ -2244,20 +2348,20 @@ snapshots:
|
|
|
2244
2348
|
transitivePeerDependencies:
|
|
2245
2349
|
- supports-color
|
|
2246
2350
|
|
|
2247
|
-
'@typescript-eslint/utils@8.
|
|
2351
|
+
'@typescript-eslint/utils@8.67.0(eslint@10.8.1)(typescript@6.0.3)':
|
|
2248
2352
|
dependencies:
|
|
2249
2353
|
'@eslint-community/eslint-utils': 4.10.1(eslint@10.8.1)
|
|
2250
|
-
'@typescript-eslint/scope-manager': 8.
|
|
2251
|
-
'@typescript-eslint/types': 8.
|
|
2252
|
-
'@typescript-eslint/typescript-estree': 8.
|
|
2354
|
+
'@typescript-eslint/scope-manager': 8.67.0
|
|
2355
|
+
'@typescript-eslint/types': 8.67.0
|
|
2356
|
+
'@typescript-eslint/typescript-estree': 8.67.0(typescript@6.0.3)
|
|
2253
2357
|
eslint: 10.8.1
|
|
2254
2358
|
typescript: 6.0.3
|
|
2255
2359
|
transitivePeerDependencies:
|
|
2256
2360
|
- supports-color
|
|
2257
2361
|
|
|
2258
|
-
'@typescript-eslint/visitor-keys@8.
|
|
2362
|
+
'@typescript-eslint/visitor-keys@8.67.0':
|
|
2259
2363
|
dependencies:
|
|
2260
|
-
'@typescript-eslint/types': 8.
|
|
2364
|
+
'@typescript-eslint/types': 8.67.0
|
|
2261
2365
|
eslint-visitor-keys: 5.0.1
|
|
2262
2366
|
|
|
2263
2367
|
'@unrs/resolver-binding-android-arm-eabi@1.12.2':
|
|
@@ -2318,7 +2422,7 @@ snapshots:
|
|
|
2318
2422
|
dependencies:
|
|
2319
2423
|
'@emnapi/core': 1.10.0
|
|
2320
2424
|
'@emnapi/runtime': 1.10.0
|
|
2321
|
-
'@napi-rs/wasm-runtime': 1.2.
|
|
2425
|
+
'@napi-rs/wasm-runtime': 1.2.3(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)
|
|
2322
2426
|
optional: true
|
|
2323
2427
|
|
|
2324
2428
|
'@unrs/resolver-binding-win32-arm64-msvc@1.12.2':
|
|
@@ -2330,13 +2434,13 @@ snapshots:
|
|
|
2330
2434
|
'@unrs/resolver-binding-win32-x64-msvc@1.12.2':
|
|
2331
2435
|
optional: true
|
|
2332
2436
|
|
|
2333
|
-
'@vitest/eslint-plugin@1.6.27(@typescript-eslint/eslint-plugin@8.
|
|
2437
|
+
'@vitest/eslint-plugin@1.6.27(@typescript-eslint/eslint-plugin@8.67.0(@typescript-eslint/parser@8.67.0(eslint@10.8.1)(typescript@6.0.3))(eslint@10.8.1)(typescript@6.0.3))(eslint@10.8.1)(typescript@6.0.3)(vitest@4.1.10(vite@8.2.1))':
|
|
2334
2438
|
dependencies:
|
|
2335
|
-
'@typescript-eslint/scope-manager': 8.
|
|
2336
|
-
'@typescript-eslint/utils': 8.
|
|
2439
|
+
'@typescript-eslint/scope-manager': 8.67.0
|
|
2440
|
+
'@typescript-eslint/utils': 8.67.0(eslint@10.8.1)(typescript@6.0.3)
|
|
2337
2441
|
eslint: 10.8.1
|
|
2338
2442
|
optionalDependencies:
|
|
2339
|
-
'@typescript-eslint/eslint-plugin': 8.
|
|
2443
|
+
'@typescript-eslint/eslint-plugin': 8.67.0(@typescript-eslint/parser@8.67.0(eslint@10.8.1)(typescript@6.0.3))(eslint@10.8.1)(typescript@6.0.3)
|
|
2340
2444
|
typescript: 6.0.3
|
|
2341
2445
|
vitest: 4.1.10(vite@8.2.1)
|
|
2342
2446
|
transitivePeerDependencies:
|
|
@@ -2416,15 +2520,6 @@ snapshots:
|
|
|
2416
2520
|
is-string: 1.1.1
|
|
2417
2521
|
math-intrinsics: 1.1.0
|
|
2418
2522
|
|
|
2419
|
-
array.prototype.findlast@1.2.5:
|
|
2420
|
-
dependencies:
|
|
2421
|
-
call-bind: 1.0.9
|
|
2422
|
-
define-properties: 1.2.1
|
|
2423
|
-
es-abstract: 1.24.2
|
|
2424
|
-
es-errors: 1.3.0
|
|
2425
|
-
es-object-atoms: 1.1.2
|
|
2426
|
-
es-shim-unscopables: 1.1.0
|
|
2427
|
-
|
|
2428
2523
|
array.prototype.flat@1.3.3:
|
|
2429
2524
|
dependencies:
|
|
2430
2525
|
call-bind: 1.0.9
|
|
@@ -2439,14 +2534,6 @@ snapshots:
|
|
|
2439
2534
|
es-abstract: 1.24.2
|
|
2440
2535
|
es-shim-unscopables: 1.1.0
|
|
2441
2536
|
|
|
2442
|
-
array.prototype.tosorted@1.1.4:
|
|
2443
|
-
dependencies:
|
|
2444
|
-
call-bind: 1.0.9
|
|
2445
|
-
define-properties: 1.2.1
|
|
2446
|
-
es-abstract: 1.24.2
|
|
2447
|
-
es-errors: 1.3.0
|
|
2448
|
-
es-shim-unscopables: 1.1.0
|
|
2449
|
-
|
|
2450
2537
|
arraybuffer.prototype.slice@1.0.4:
|
|
2451
2538
|
dependencies:
|
|
2452
2539
|
array-buffer-byte-length: 1.0.2
|
|
@@ -2475,7 +2562,9 @@ snapshots:
|
|
|
2475
2562
|
|
|
2476
2563
|
balanced-match@4.0.4: {}
|
|
2477
2564
|
|
|
2478
|
-
baseline-browser-mapping@2.11.
|
|
2565
|
+
baseline-browser-mapping@2.11.14: {}
|
|
2566
|
+
|
|
2567
|
+
birecord@0.1.2: {}
|
|
2479
2568
|
|
|
2480
2569
|
brace-expansion@1.1.18:
|
|
2481
2570
|
dependencies:
|
|
@@ -2488,9 +2577,9 @@ snapshots:
|
|
|
2488
2577
|
|
|
2489
2578
|
browserslist@4.28.8:
|
|
2490
2579
|
dependencies:
|
|
2491
|
-
baseline-browser-mapping: 2.11.
|
|
2580
|
+
baseline-browser-mapping: 2.11.14
|
|
2492
2581
|
caniuse-lite: 1.0.30001809
|
|
2493
|
-
electron-to-chromium: 1.5.
|
|
2582
|
+
electron-to-chromium: 1.5.406
|
|
2494
2583
|
node-releases: 2.0.53
|
|
2495
2584
|
update-browserslist-db: 1.3.1(browserslist@4.28.8)
|
|
2496
2585
|
|
|
@@ -2517,6 +2606,8 @@ snapshots:
|
|
|
2517
2606
|
|
|
2518
2607
|
comment-parser@1.4.8: {}
|
|
2519
2608
|
|
|
2609
|
+
compare-versions@6.1.1: {}
|
|
2610
|
+
|
|
2520
2611
|
concat-map@0.0.1: {}
|
|
2521
2612
|
|
|
2522
2613
|
convert-source-map@2.0.0: {}
|
|
@@ -2569,17 +2660,13 @@ snapshots:
|
|
|
2569
2660
|
|
|
2570
2661
|
detect-libc@2.1.2: {}
|
|
2571
2662
|
|
|
2572
|
-
doctrine@2.1.0:
|
|
2573
|
-
dependencies:
|
|
2574
|
-
esutils: 2.0.3
|
|
2575
|
-
|
|
2576
2663
|
dunder-proto@1.0.1:
|
|
2577
2664
|
dependencies:
|
|
2578
2665
|
call-bind-apply-helpers: 1.0.2
|
|
2579
2666
|
es-errors: 1.3.0
|
|
2580
2667
|
gopd: 1.2.0
|
|
2581
2668
|
|
|
2582
|
-
electron-to-chromium@1.5.
|
|
2669
|
+
electron-to-chromium@1.5.406: {}
|
|
2583
2670
|
|
|
2584
2671
|
emoji-regex@9.2.2: {}
|
|
2585
2672
|
|
|
@@ -2651,25 +2738,6 @@ snapshots:
|
|
|
2651
2738
|
|
|
2652
2739
|
es-errors@1.3.0: {}
|
|
2653
2740
|
|
|
2654
|
-
es-iterator-helpers@1.4.0:
|
|
2655
|
-
dependencies:
|
|
2656
|
-
call-bind: 1.0.9
|
|
2657
|
-
call-bound: 1.0.4
|
|
2658
|
-
define-properties: 1.2.1
|
|
2659
|
-
es-abstract: 1.24.2
|
|
2660
|
-
es-errors: 1.3.0
|
|
2661
|
-
es-set-tostringtag: 2.1.0
|
|
2662
|
-
function-bind: 1.1.2
|
|
2663
|
-
get-intrinsic: 1.3.0
|
|
2664
|
-
globalthis: 1.0.4
|
|
2665
|
-
gopd: 1.2.0
|
|
2666
|
-
has-property-descriptors: 1.0.2
|
|
2667
|
-
has-proto: 1.2.0
|
|
2668
|
-
has-symbols: 1.1.0
|
|
2669
|
-
internal-slot: 1.1.0
|
|
2670
|
-
iterator.prototype: 1.1.5
|
|
2671
|
-
math-intrinsics: 1.1.0
|
|
2672
|
-
|
|
2673
2741
|
es-module-lexer@2.3.1: {}
|
|
2674
2742
|
|
|
2675
2743
|
es-object-atoms@1.1.2:
|
|
@@ -2706,14 +2774,14 @@ snapshots:
|
|
|
2706
2774
|
|
|
2707
2775
|
eslint-import-context@0.1.9(unrs-resolver@1.12.2):
|
|
2708
2776
|
dependencies:
|
|
2709
|
-
get-tsconfig: 4.14.
|
|
2777
|
+
get-tsconfig: 4.14.2
|
|
2710
2778
|
stable-hash-x: 0.2.0
|
|
2711
2779
|
optionalDependencies:
|
|
2712
2780
|
unrs-resolver: 1.12.2
|
|
2713
2781
|
|
|
2714
|
-
eslint-plugin-import-x@4.17.1(@typescript-eslint/utils@8.
|
|
2782
|
+
eslint-plugin-import-x@4.17.1(@typescript-eslint/utils@8.67.0(eslint@10.8.1)(typescript@6.0.3))(eslint@10.8.1):
|
|
2715
2783
|
dependencies:
|
|
2716
|
-
'@typescript-eslint/types': 8.
|
|
2784
|
+
'@typescript-eslint/types': 8.67.0
|
|
2717
2785
|
comment-parser: 1.4.8
|
|
2718
2786
|
debug: 4.4.3
|
|
2719
2787
|
eslint: 10.8.1
|
|
@@ -2724,7 +2792,7 @@ snapshots:
|
|
|
2724
2792
|
stable-hash-x: 0.2.0
|
|
2725
2793
|
unrs-resolver: 1.12.2
|
|
2726
2794
|
optionalDependencies:
|
|
2727
|
-
'@typescript-eslint/utils': 8.
|
|
2795
|
+
'@typescript-eslint/utils': 8.67.0(eslint@10.8.1)(typescript@6.0.3)
|
|
2728
2796
|
transitivePeerDependencies:
|
|
2729
2797
|
- supports-color
|
|
2730
2798
|
|
|
@@ -2761,6 +2829,20 @@ snapshots:
|
|
|
2761
2829
|
optionalDependencies:
|
|
2762
2830
|
eslint-config-prettier: 10.1.8(eslint@10.8.1)
|
|
2763
2831
|
|
|
2832
|
+
eslint-plugin-react-dom@5.18.6(eslint@10.8.1)(typescript@6.0.3):
|
|
2833
|
+
dependencies:
|
|
2834
|
+
'@eslint-react/ast': 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2835
|
+
'@eslint-react/eslint': 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2836
|
+
'@eslint-react/jsx': 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2837
|
+
'@eslint-react/shared': 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2838
|
+
'@typescript-eslint/types': 8.67.0
|
|
2839
|
+
'@typescript-eslint/utils': 8.67.0(eslint@10.8.1)(typescript@6.0.3)
|
|
2840
|
+
compare-versions: 6.1.1
|
|
2841
|
+
eslint: 10.8.1
|
|
2842
|
+
typescript: 6.0.3
|
|
2843
|
+
transitivePeerDependencies:
|
|
2844
|
+
- supports-color
|
|
2845
|
+
|
|
2764
2846
|
eslint-plugin-react-hooks@7.1.1(eslint@10.8.1):
|
|
2765
2847
|
dependencies:
|
|
2766
2848
|
'@babel/core': 7.29.7
|
|
@@ -2772,32 +2854,91 @@ snapshots:
|
|
|
2772
2854
|
transitivePeerDependencies:
|
|
2773
2855
|
- supports-color
|
|
2774
2856
|
|
|
2775
|
-
eslint-plugin-react@
|
|
2857
|
+
eslint-plugin-react-jsx@5.18.6(eslint@10.8.1)(typescript@6.0.3):
|
|
2776
2858
|
dependencies:
|
|
2777
|
-
|
|
2778
|
-
|
|
2779
|
-
|
|
2780
|
-
|
|
2781
|
-
|
|
2782
|
-
|
|
2859
|
+
'@eslint-react/ast': 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2860
|
+
'@eslint-react/core': 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2861
|
+
'@eslint-react/eslint': 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2862
|
+
'@eslint-react/jsx': 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2863
|
+
'@eslint-react/shared': 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2864
|
+
'@typescript-eslint/types': 8.67.0
|
|
2865
|
+
'@typescript-eslint/utils': 8.67.0(eslint@10.8.1)(typescript@6.0.3)
|
|
2783
2866
|
eslint: 10.8.1
|
|
2784
|
-
|
|
2785
|
-
|
|
2786
|
-
|
|
2787
|
-
|
|
2788
|
-
|
|
2789
|
-
|
|
2790
|
-
|
|
2791
|
-
|
|
2792
|
-
|
|
2793
|
-
|
|
2794
|
-
|
|
2795
|
-
|
|
2867
|
+
typescript: 6.0.3
|
|
2868
|
+
transitivePeerDependencies:
|
|
2869
|
+
- supports-color
|
|
2870
|
+
|
|
2871
|
+
eslint-plugin-react-naming-convention@5.18.6(eslint@10.8.1)(typescript@6.0.3):
|
|
2872
|
+
dependencies:
|
|
2873
|
+
'@eslint-react/ast': 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2874
|
+
'@eslint-react/core': 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2875
|
+
'@eslint-react/eslint': 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2876
|
+
'@eslint-react/shared': 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2877
|
+
'@eslint-react/var': 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2878
|
+
'@typescript-eslint/types': 8.67.0
|
|
2879
|
+
'@typescript-eslint/utils': 8.67.0(eslint@10.8.1)(typescript@6.0.3)
|
|
2880
|
+
eslint: 10.8.1
|
|
2881
|
+
ts-pattern: 5.9.0
|
|
2882
|
+
typescript: 6.0.3
|
|
2883
|
+
transitivePeerDependencies:
|
|
2884
|
+
- supports-color
|
|
2885
|
+
|
|
2886
|
+
eslint-plugin-react-rsc@5.18.6(eslint@10.8.1)(typescript@6.0.3):
|
|
2887
|
+
dependencies:
|
|
2888
|
+
'@eslint-react/ast': 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2889
|
+
'@eslint-react/core': 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2890
|
+
'@eslint-react/eslint': 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2891
|
+
'@eslint-react/shared': 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2892
|
+
'@eslint-react/var': 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2893
|
+
'@typescript-eslint/types': 8.67.0
|
|
2894
|
+
'@typescript-eslint/utils': 8.67.0(eslint@10.8.1)(typescript@6.0.3)
|
|
2895
|
+
eslint: 10.8.1
|
|
2896
|
+
typescript: 6.0.3
|
|
2897
|
+
transitivePeerDependencies:
|
|
2898
|
+
- supports-color
|
|
2899
|
+
|
|
2900
|
+
eslint-plugin-react-web-api@5.18.6(eslint@10.8.1)(typescript@6.0.3):
|
|
2901
|
+
dependencies:
|
|
2902
|
+
'@eslint-react/ast': 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2903
|
+
'@eslint-react/core': 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2904
|
+
'@eslint-react/eslint': 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2905
|
+
'@eslint-react/shared': 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2906
|
+
'@eslint-react/var': 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2907
|
+
'@typescript-eslint/types': 8.67.0
|
|
2908
|
+
'@typescript-eslint/utils': 8.67.0(eslint@10.8.1)(typescript@6.0.3)
|
|
2909
|
+
birecord: 0.1.2
|
|
2910
|
+
eslint: 10.8.1
|
|
2911
|
+
ts-pattern: 5.9.0
|
|
2912
|
+
typescript: 6.0.3
|
|
2913
|
+
transitivePeerDependencies:
|
|
2914
|
+
- supports-color
|
|
2915
|
+
|
|
2916
|
+
eslint-plugin-react-x@5.18.6(eslint@10.8.1)(typescript@6.0.3):
|
|
2917
|
+
dependencies:
|
|
2918
|
+
'@eslint-react/ast': 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2919
|
+
'@eslint-react/core': 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2920
|
+
'@eslint-react/eslint': 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2921
|
+
'@eslint-react/jsx': 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2922
|
+
'@eslint-react/shared': 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2923
|
+
'@eslint-react/var': 5.18.6(eslint@10.8.1)(typescript@6.0.3)
|
|
2924
|
+
'@typescript-eslint/scope-manager': 8.67.0
|
|
2925
|
+
'@typescript-eslint/type-utils': 8.67.0(eslint@10.8.1)(typescript@6.0.3)
|
|
2926
|
+
'@typescript-eslint/types': 8.67.0
|
|
2927
|
+
'@typescript-eslint/typescript-estree': 8.67.0(typescript@6.0.3)
|
|
2928
|
+
'@typescript-eslint/utils': 8.67.0(eslint@10.8.1)(typescript@6.0.3)
|
|
2929
|
+
compare-versions: 6.1.1
|
|
2930
|
+
eslint: 10.8.1
|
|
2931
|
+
string-ts: 2.3.1
|
|
2932
|
+
ts-api-utils: 2.5.0(typescript@6.0.3)
|
|
2933
|
+
ts-pattern: 5.9.0
|
|
2934
|
+
typescript: 6.0.3
|
|
2935
|
+
transitivePeerDependencies:
|
|
2936
|
+
- supports-color
|
|
2796
2937
|
|
|
2797
2938
|
eslint-plugin-testing-library@7.16.2(eslint@10.8.1)(typescript@6.0.3):
|
|
2798
2939
|
dependencies:
|
|
2799
|
-
'@typescript-eslint/scope-manager': 8.
|
|
2800
|
-
'@typescript-eslint/utils': 8.
|
|
2940
|
+
'@typescript-eslint/scope-manager': 8.67.0
|
|
2941
|
+
'@typescript-eslint/utils': 8.67.0(eslint@10.8.1)(typescript@6.0.3)
|
|
2801
2942
|
eslint: 10.8.1
|
|
2802
2943
|
transitivePeerDependencies:
|
|
2803
2944
|
- supports-color
|
|
@@ -2952,7 +3093,7 @@ snapshots:
|
|
|
2952
3093
|
es-errors: 1.3.0
|
|
2953
3094
|
get-intrinsic: 1.3.0
|
|
2954
3095
|
|
|
2955
|
-
get-tsconfig@4.14.
|
|
3096
|
+
get-tsconfig@4.14.2:
|
|
2956
3097
|
dependencies:
|
|
2957
3098
|
resolve-pkg-maps: 1.0.0
|
|
2958
3099
|
|
|
@@ -2960,7 +3101,7 @@ snapshots:
|
|
|
2960
3101
|
dependencies:
|
|
2961
3102
|
is-glob: 4.0.3
|
|
2962
3103
|
|
|
2963
|
-
globals@17.
|
|
3104
|
+
globals@17.11.0: {}
|
|
2964
3105
|
|
|
2965
3106
|
globalthis@1.0.4:
|
|
2966
3107
|
dependencies:
|
|
@@ -3032,10 +3173,6 @@ snapshots:
|
|
|
3032
3173
|
|
|
3033
3174
|
is-callable@1.2.7: {}
|
|
3034
3175
|
|
|
3035
|
-
is-core-module@2.16.2:
|
|
3036
|
-
dependencies:
|
|
3037
|
-
hasown: 2.0.4
|
|
3038
|
-
|
|
3039
3176
|
is-data-view@1.0.2:
|
|
3040
3177
|
dependencies:
|
|
3041
3178
|
call-bound: 1.0.4
|
|
@@ -3123,15 +3260,6 @@ snapshots:
|
|
|
3123
3260
|
|
|
3124
3261
|
isexe@4.0.0: {}
|
|
3125
3262
|
|
|
3126
|
-
iterator.prototype@1.1.5:
|
|
3127
|
-
dependencies:
|
|
3128
|
-
define-data-property: 1.1.4
|
|
3129
|
-
es-object-atoms: 1.1.2
|
|
3130
|
-
get-intrinsic: 1.3.0
|
|
3131
|
-
get-proto: 1.0.1
|
|
3132
|
-
has-symbols: 1.1.0
|
|
3133
|
-
set-function-name: 2.0.2
|
|
3134
|
-
|
|
3135
3263
|
js-tokens@4.0.0: {}
|
|
3136
3264
|
|
|
3137
3265
|
jsesc@3.1.0: {}
|
|
@@ -3221,10 +3349,6 @@ snapshots:
|
|
|
3221
3349
|
dependencies:
|
|
3222
3350
|
p-locate: 5.0.0
|
|
3223
3351
|
|
|
3224
|
-
loose-envify@1.4.0:
|
|
3225
|
-
dependencies:
|
|
3226
|
-
js-tokens: 4.0.0
|
|
3227
|
-
|
|
3228
3352
|
lru-cache@5.1.1:
|
|
3229
3353
|
dependencies:
|
|
3230
3354
|
yallist: 3.1.1
|
|
@@ -3253,13 +3377,6 @@ snapshots:
|
|
|
3253
3377
|
|
|
3254
3378
|
natural-compare@1.4.0: {}
|
|
3255
3379
|
|
|
3256
|
-
node-exports-info@1.6.2:
|
|
3257
|
-
dependencies:
|
|
3258
|
-
array.prototype.flatmap: 1.3.3
|
|
3259
|
-
es-errors: 1.3.0
|
|
3260
|
-
object.entries: 1.1.9
|
|
3261
|
-
semver: 6.3.1
|
|
3262
|
-
|
|
3263
3380
|
node-releases@2.0.53: {}
|
|
3264
3381
|
|
|
3265
3382
|
npm-normalize-package-bin@6.0.0: {}
|
|
@@ -3275,8 +3392,6 @@ snapshots:
|
|
|
3275
3392
|
shell-quote: 1.10.0
|
|
3276
3393
|
which: 7.0.0
|
|
3277
3394
|
|
|
3278
|
-
object-assign@4.1.1: {}
|
|
3279
|
-
|
|
3280
3395
|
object-inspect@1.13.4: {}
|
|
3281
3396
|
|
|
3282
3397
|
object-keys@1.1.1: {}
|
|
@@ -3290,13 +3405,6 @@ snapshots:
|
|
|
3290
3405
|
has-symbols: 1.1.0
|
|
3291
3406
|
object-keys: 1.1.1
|
|
3292
3407
|
|
|
3293
|
-
object.entries@1.1.9:
|
|
3294
|
-
dependencies:
|
|
3295
|
-
call-bind: 1.0.9
|
|
3296
|
-
call-bound: 1.0.4
|
|
3297
|
-
define-properties: 1.2.1
|
|
3298
|
-
es-object-atoms: 1.1.2
|
|
3299
|
-
|
|
3300
3408
|
object.fromentries@2.0.8:
|
|
3301
3409
|
dependencies:
|
|
3302
3410
|
call-bind: 1.0.9
|
|
@@ -3341,8 +3449,6 @@ snapshots:
|
|
|
3341
3449
|
|
|
3342
3450
|
path-key@3.1.1: {}
|
|
3343
3451
|
|
|
3344
|
-
path-parse@1.0.7: {}
|
|
3345
|
-
|
|
3346
3452
|
pathe@2.0.3: {}
|
|
3347
3453
|
|
|
3348
3454
|
picocolors@1.1.1: {}
|
|
@@ -3365,29 +3471,15 @@ snapshots:
|
|
|
3365
3471
|
dependencies:
|
|
3366
3472
|
fast-diff: 1.3.0
|
|
3367
3473
|
|
|
3368
|
-
prettier-plugin-ignored@1.0.0(prettier@3.9.6):
|
|
3369
|
-
dependencies:
|
|
3370
|
-
prettier: 3.9.6
|
|
3371
|
-
|
|
3372
3474
|
prettier-plugin-tailwindcss@0.8.1(prettier@3.9.6):
|
|
3373
3475
|
dependencies:
|
|
3374
3476
|
prettier: 3.9.6
|
|
3375
3477
|
|
|
3376
3478
|
prettier@3.9.6: {}
|
|
3377
3479
|
|
|
3378
|
-
prop-types@15.8.1:
|
|
3379
|
-
dependencies:
|
|
3380
|
-
loose-envify: 1.4.0
|
|
3381
|
-
object-assign: 4.1.1
|
|
3382
|
-
react-is: 16.13.1
|
|
3383
|
-
|
|
3384
3480
|
punycode@2.3.1: {}
|
|
3385
3481
|
|
|
3386
|
-
react
|
|
3387
|
-
|
|
3388
|
-
react@18.3.1:
|
|
3389
|
-
dependencies:
|
|
3390
|
-
loose-envify: 1.4.0
|
|
3482
|
+
react@19.2.8: {}
|
|
3391
3483
|
|
|
3392
3484
|
read-package-json-fast@6.0.0:
|
|
3393
3485
|
dependencies:
|
|
@@ -3418,34 +3510,25 @@ snapshots:
|
|
|
3418
3510
|
|
|
3419
3511
|
resolve-pkg-maps@1.0.0: {}
|
|
3420
3512
|
|
|
3421
|
-
|
|
3422
|
-
dependencies:
|
|
3423
|
-
es-errors: 1.3.0
|
|
3424
|
-
is-core-module: 2.16.2
|
|
3425
|
-
node-exports-info: 1.6.2
|
|
3426
|
-
object-keys: 1.1.1
|
|
3427
|
-
path-parse: 1.0.7
|
|
3428
|
-
supports-preserve-symlinks-flag: 1.0.0
|
|
3429
|
-
|
|
3430
|
-
rolldown@1.2.3:
|
|
3513
|
+
rolldown@1.2.4:
|
|
3431
3514
|
dependencies:
|
|
3432
|
-
'@oxc-project/types': 0.
|
|
3515
|
+
'@oxc-project/types': 0.144.0
|
|
3433
3516
|
'@rolldown/pluginutils': 1.0.1
|
|
3434
3517
|
optionalDependencies:
|
|
3435
|
-
'@rolldown/binding-android-arm64': 1.2.
|
|
3436
|
-
'@rolldown/binding-darwin-arm64': 1.2.
|
|
3437
|
-
'@rolldown/binding-darwin-x64': 1.2.
|
|
3438
|
-
'@rolldown/binding-freebsd-x64': 1.2.
|
|
3439
|
-
'@rolldown/binding-linux-arm-gnueabihf': 1.2.
|
|
3440
|
-
'@rolldown/binding-linux-arm64-gnu': 1.2.
|
|
3441
|
-
'@rolldown/binding-linux-arm64-musl': 1.2.
|
|
3442
|
-
'@rolldown/binding-linux-ppc64-gnu': 1.2.
|
|
3443
|
-
'@rolldown/binding-linux-s390x-gnu': 1.2.
|
|
3444
|
-
'@rolldown/binding-linux-x64-gnu': 1.2.
|
|
3445
|
-
'@rolldown/binding-linux-x64-musl': 1.2.
|
|
3446
|
-
'@rolldown/binding-openharmony-arm64': 1.2.
|
|
3447
|
-
'@rolldown/binding-win32-arm64-msvc': 1.2.
|
|
3448
|
-
'@rolldown/binding-win32-x64-msvc': 1.2.
|
|
3518
|
+
'@rolldown/binding-android-arm64': 1.2.4
|
|
3519
|
+
'@rolldown/binding-darwin-arm64': 1.2.4
|
|
3520
|
+
'@rolldown/binding-darwin-x64': 1.2.4
|
|
3521
|
+
'@rolldown/binding-freebsd-x64': 1.2.4
|
|
3522
|
+
'@rolldown/binding-linux-arm-gnueabihf': 1.2.4
|
|
3523
|
+
'@rolldown/binding-linux-arm64-gnu': 1.2.4
|
|
3524
|
+
'@rolldown/binding-linux-arm64-musl': 1.2.4
|
|
3525
|
+
'@rolldown/binding-linux-ppc64-gnu': 1.2.4
|
|
3526
|
+
'@rolldown/binding-linux-s390x-gnu': 1.2.4
|
|
3527
|
+
'@rolldown/binding-linux-x64-gnu': 1.2.4
|
|
3528
|
+
'@rolldown/binding-linux-x64-musl': 1.2.4
|
|
3529
|
+
'@rolldown/binding-openharmony-arm64': 1.2.4
|
|
3530
|
+
'@rolldown/binding-win32-arm64-msvc': 1.2.4
|
|
3531
|
+
'@rolldown/binding-win32-x64-msvc': 1.2.4
|
|
3449
3532
|
|
|
3450
3533
|
safe-array-concat@1.1.4:
|
|
3451
3534
|
dependencies:
|
|
@@ -3543,30 +3626,11 @@ snapshots:
|
|
|
3543
3626
|
es-errors: 1.3.0
|
|
3544
3627
|
internal-slot: 1.1.0
|
|
3545
3628
|
|
|
3546
|
-
string
|
|
3547
|
-
dependencies:
|
|
3548
|
-
call-bind: 1.0.9
|
|
3549
|
-
define-properties: 1.2.1
|
|
3550
|
-
es-abstract: 1.24.2
|
|
3629
|
+
string-ts@2.3.1: {}
|
|
3551
3630
|
|
|
3552
|
-
string.prototype.
|
|
3631
|
+
string.prototype.includes@2.0.1:
|
|
3553
3632
|
dependencies:
|
|
3554
3633
|
call-bind: 1.0.9
|
|
3555
|
-
call-bound: 1.0.4
|
|
3556
|
-
define-properties: 1.2.1
|
|
3557
|
-
es-abstract: 1.24.2
|
|
3558
|
-
es-errors: 1.3.0
|
|
3559
|
-
es-object-atoms: 1.1.2
|
|
3560
|
-
get-intrinsic: 1.3.0
|
|
3561
|
-
gopd: 1.2.0
|
|
3562
|
-
has-symbols: 1.1.0
|
|
3563
|
-
internal-slot: 1.1.0
|
|
3564
|
-
regexp.prototype.flags: 1.5.4
|
|
3565
|
-
set-function-name: 2.0.2
|
|
3566
|
-
side-channel: 1.1.1
|
|
3567
|
-
|
|
3568
|
-
string.prototype.repeat@1.0.0:
|
|
3569
|
-
dependencies:
|
|
3570
3634
|
define-properties: 1.2.1
|
|
3571
3635
|
es-abstract: 1.24.2
|
|
3572
3636
|
|
|
@@ -3594,8 +3658,6 @@ snapshots:
|
|
|
3594
3658
|
define-properties: 1.2.1
|
|
3595
3659
|
es-object-atoms: 1.1.2
|
|
3596
3660
|
|
|
3597
|
-
supports-preserve-symlinks-flag@1.0.0: {}
|
|
3598
|
-
|
|
3599
3661
|
synckit@0.11.13:
|
|
3600
3662
|
dependencies:
|
|
3601
3663
|
'@pkgr/core': 0.3.6
|
|
@@ -3615,6 +3677,8 @@ snapshots:
|
|
|
3615
3677
|
dependencies:
|
|
3616
3678
|
typescript: 6.0.3
|
|
3617
3679
|
|
|
3680
|
+
ts-pattern@5.9.0: {}
|
|
3681
|
+
|
|
3618
3682
|
tslib@2.8.1:
|
|
3619
3683
|
optional: true
|
|
3620
3684
|
|
|
@@ -3655,12 +3719,12 @@ snapshots:
|
|
|
3655
3719
|
possible-typed-array-names: 1.1.0
|
|
3656
3720
|
reflect.getprototypeof: 1.0.10
|
|
3657
3721
|
|
|
3658
|
-
typescript-eslint@8.
|
|
3722
|
+
typescript-eslint@8.67.0(eslint@10.8.1)(typescript@6.0.3):
|
|
3659
3723
|
dependencies:
|
|
3660
|
-
'@typescript-eslint/eslint-plugin': 8.
|
|
3661
|
-
'@typescript-eslint/parser': 8.
|
|
3662
|
-
'@typescript-eslint/typescript-estree': 8.
|
|
3663
|
-
'@typescript-eslint/utils': 8.
|
|
3724
|
+
'@typescript-eslint/eslint-plugin': 8.67.0(@typescript-eslint/parser@8.67.0(eslint@10.8.1)(typescript@6.0.3))(eslint@10.8.1)(typescript@6.0.3)
|
|
3725
|
+
'@typescript-eslint/parser': 8.67.0(eslint@10.8.1)(typescript@6.0.3)
|
|
3726
|
+
'@typescript-eslint/typescript-estree': 8.67.0(typescript@6.0.3)
|
|
3727
|
+
'@typescript-eslint/utils': 8.67.0(eslint@10.8.1)(typescript@6.0.3)
|
|
3664
3728
|
eslint: 10.8.1
|
|
3665
3729
|
typescript: 6.0.3
|
|
3666
3730
|
transitivePeerDependencies:
|
|
@@ -3717,7 +3781,7 @@ snapshots:
|
|
|
3717
3781
|
lightningcss: 1.33.0
|
|
3718
3782
|
picomatch: 4.0.5
|
|
3719
3783
|
postcss: 8.5.26
|
|
3720
|
-
rolldown: 1.2.
|
|
3784
|
+
rolldown: 1.2.4
|
|
3721
3785
|
tinyglobby: 0.2.17
|
|
3722
3786
|
optionalDependencies:
|
|
3723
3787
|
fsevents: 2.3.3
|