-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathyarn.lock
More file actions
3176 lines (2847 loc) · 107 KB
/
yarn.lock
File metadata and controls
3176 lines (2847 loc) · 107 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 8
cacheKey: 10c0
"@babel/helper-string-parser@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/helper-string-parser@npm:7.27.1"
checksum: 10c0/8bda3448e07b5583727c103560bcf9c4c24b3c1051a4c516d4050ef69df37bb9a4734a585fe12725b8c2763de0a265aa1e909b485a4e3270b7cfd3e4dbe4b602
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.28.5":
version: 7.28.5
resolution: "@babel/helper-validator-identifier@npm:7.28.5"
checksum: 10c0/42aaebed91f739a41f3d80b72752d1f95fd7c72394e8e4bd7cdd88817e0774d80a432451bcba17c2c642c257c483bf1d409dd4548883429ea9493a3bc4ab0847
languageName: node
linkType: hard
"@babel/parser@npm:^7.29.0":
version: 7.29.2
resolution: "@babel/parser@npm:7.29.2"
dependencies:
"@babel/types": "npm:^7.29.0"
bin:
parser: ./bin/babel-parser.js
checksum: 10c0/e5a4e69e3ac7acdde995f37cf299a68458cfe7009dff66bd0962fd04920bef287201169006af365af479c08ff216bfefbb595e331f87f6ae7283858aebbc3317
languageName: node
linkType: hard
"@babel/types@npm:^7.29.0":
version: 7.29.0
resolution: "@babel/types@npm:7.29.0"
dependencies:
"@babel/helper-string-parser": "npm:^7.27.1"
"@babel/helper-validator-identifier": "npm:^7.28.5"
checksum: 10c0/23cc3466e83bcbfab8b9bd0edaafdb5d4efdb88b82b3be6728bbade5ba2f0996f84f63b1c5f7a8c0d67efded28300898a5f930b171bb40b311bca2029c4e9b4f
languageName: node
linkType: hard
"@bcoe/v8-coverage@npm:^1.0.2":
version: 1.0.2
resolution: "@bcoe/v8-coverage@npm:1.0.2"
checksum: 10c0/1eb1dc93cc17fb7abdcef21a6e7b867d6aa99a7ec88ec8207402b23d9083ab22a8011213f04b2cf26d535f1d22dc26139b7929e6c2134c254bd1e14ba5e678c3
languageName: node
linkType: hard
"@electron/asar@npm:^4.0.0":
version: 4.0.0
resolution: "@electron/asar@npm:4.0.0"
dependencies:
commander: "npm:^13.1.0"
glob: "npm:^11.0.1"
minimatch: "npm:^10.0.1"
bin:
asar: bin/asar.mjs
checksum: 10c0/0a340d18f26aa5c7f73bb804a796715ecce3ad4754e2e1b8bdb6ff13045f1db181de814aeb1fe953ec8339a287210d4a2faad88321ff8a50729698572603923f
languageName: node
linkType: hard
"@electron/fiddle-core@workspace:.":
version: 0.0.0-use.local
resolution: "@electron/fiddle-core@workspace:."
dependencies:
"@electron/asar": "npm:^4.0.0"
"@electron/get": "npm:^4.0.0"
"@microsoft/api-extractor": "npm:^7.58.2"
"@tsconfig/node22": "npm:^22.0.0"
"@types/debug": "npm:^4.1.12"
"@types/getos": "npm:^3.0.4"
"@types/graceful-fs": "npm:^4.1.9"
"@types/node": "npm:~22.10.7"
"@types/semver": "npm:^7.5.6"
"@vitest/coverage-v8": "npm:^4.1.2"
debug: "npm:^4.3.3"
env-paths: "npm:^3.0.0"
extract-zip: "npm:^2.0.1"
getos: "npm:^3.2.1"
graceful-fs: "npm:^4.2.11"
husky: "npm:^9.0.0"
lint-staged: "npm:^16.0.0"
nock: "npm:^14.0.1"
oxfmt: "npm:^0.44.0"
oxlint: "npm:^1.59.0"
oxlint-tsgolint: "npm:^0.20.0"
semver: "npm:^7.3.5"
simple-git: "npm:^3.5.0"
typescript: "npm:^6.0.2"
vitest: "npm:^4.1.2"
bin:
fiddle-core: dist/cli.js
languageName: unknown
linkType: soft
"@electron/get@npm:^4.0.0":
version: 4.0.0
resolution: "@electron/get@npm:4.0.0"
dependencies:
debug: "npm:^4.1.1"
env-paths: "npm:^3.0.0"
global-agent: "npm:^3.0.0"
got: "npm:^14.4.5"
graceful-fs: "npm:^4.2.11"
progress: "npm:^2.0.3"
semver: "npm:^7.6.3"
sumchecker: "npm:^3.0.1"
dependenciesMeta:
global-agent:
optional: true
checksum: 10c0/bbe1582b5f9828b4e9b53f0994638d4dc64364b60f06429f0a41353c81d2473464fe406e3ed8f9f2cbe78309ea3af01ed268c8bfd43003273540eca2f086ed5d
languageName: node
linkType: hard
"@isaacs/cliui@npm:^9.0.0":
version: 9.0.0
resolution: "@isaacs/cliui@npm:9.0.0"
checksum: 10c0/971063b7296419f85053dacd0a0285dcadaa3dfc139228b23e016c1a9848121ad4aa5e7fcca7522062014e1eb6239a7424188b9f2cba893a79c90aae5710319c
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:^3.1.0":
version: 3.1.1
resolution: "@jridgewell/resolve-uri@npm:3.1.1"
checksum: 10c0/0dbc9e29bc640bbbdc5b9876d2859c69042bfcf1423c1e6421bcca53e826660bff4e41c7d4bcb8dbea696404231a6f902f76ba41835d049e20f2dd6cffb713bf
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.4.14":
version: 1.4.15
resolution: "@jridgewell/sourcemap-codec@npm:1.4.15"
checksum: 10c0/0c6b5ae663087558039052a626d2d7ed5208da36cfd707dcc5cea4a07cfc918248403dcb5989a8f7afaf245ce0573b7cc6fd94c4a30453bd10e44d9363940ba5
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.5.5":
version: 1.5.5
resolution: "@jridgewell/sourcemap-codec@npm:1.5.5"
checksum: 10c0/f9e538f302b63c0ebc06eecb1dd9918dd4289ed36147a0ddce35d6ea4d7ebbda243cda7b2213b6a5e1d8087a298d5cf630fb2bd39329cdecb82017023f6081a0
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:^0.3.31":
version: 0.3.31
resolution: "@jridgewell/trace-mapping@npm:0.3.31"
dependencies:
"@jridgewell/resolve-uri": "npm:^3.1.0"
"@jridgewell/sourcemap-codec": "npm:^1.4.14"
checksum: 10c0/4b30ec8cd56c5fd9a661f088230af01e0c1a3888d11ffb6b47639700f71225be21d1f7e168048d6d4f9449207b978a235c07c8f15c07705685d16dc06280e9d9
languageName: node
linkType: hard
"@kwsites/file-exists@npm:^1.1.1":
version: 1.1.1
resolution: "@kwsites/file-exists@npm:1.1.1"
dependencies:
debug: "npm:^4.1.1"
checksum: 10c0/39e693239a72ccd8408bb618a0200e4a8d61682057ca7ae2c87668d7e69196e8d7e2c9cde73db6b23b3b0230169a15e5f1bfe086539f4be43e767b2db68e8ee4
languageName: node
linkType: hard
"@kwsites/promise-deferred@npm:^1.1.1":
version: 1.1.1
resolution: "@kwsites/promise-deferred@npm:1.1.1"
checksum: 10c0/ef1ad3f1f50991e3bed352b175986d8b4bc684521698514a2ed63c1d1fc9848843da4f2bc2df961c9b148c94e1c34bf33f0da8a90ba2234e452481f2cc9937b1
languageName: node
linkType: hard
"@microsoft/api-extractor-model@npm:7.33.6":
version: 7.33.6
resolution: "@microsoft/api-extractor-model@npm:7.33.6"
dependencies:
"@microsoft/tsdoc": "npm:~0.16.0"
"@microsoft/tsdoc-config": "npm:~0.18.1"
"@rushstack/node-core-library": "npm:5.22.0"
checksum: 10c0/3d2a615ed10f28c6ca64a69eb57611f7081c489905dd62a8ccdc49652431a7252a2cef3d15a28e6359834a320ea25aae227305b8185687995553903552544284
languageName: node
linkType: hard
"@microsoft/api-extractor@npm:^7.58.2":
version: 7.58.2
resolution: "@microsoft/api-extractor@npm:7.58.2"
dependencies:
"@microsoft/api-extractor-model": "npm:7.33.6"
"@microsoft/tsdoc": "npm:~0.16.0"
"@microsoft/tsdoc-config": "npm:~0.18.1"
"@rushstack/node-core-library": "npm:5.22.0"
"@rushstack/rig-package": "npm:0.7.2"
"@rushstack/terminal": "npm:0.22.5"
"@rushstack/ts-command-line": "npm:5.3.5"
diff: "npm:~8.0.2"
lodash: "npm:~4.18.1"
minimatch: "npm:10.2.3"
resolve: "npm:~1.22.1"
semver: "npm:~7.5.4"
source-map: "npm:~0.6.1"
typescript: "npm:5.9.3"
bin:
api-extractor: bin/api-extractor
checksum: 10c0/b5b367719ff146a51dd11d7f2ca2ca8cba9983e5f8618c9e9ee317ee0b43ce04c32b83015c94c0c2b9f0a6c24d1926d251333f485b0e59569081b793d09e0d4f
languageName: node
linkType: hard
"@microsoft/tsdoc-config@npm:~0.18.1":
version: 0.18.1
resolution: "@microsoft/tsdoc-config@npm:0.18.1"
dependencies:
"@microsoft/tsdoc": "npm:0.16.0"
ajv: "npm:~8.18.0"
jju: "npm:~1.4.0"
resolve: "npm:~1.22.2"
checksum: 10c0/06507f7ced4fadf3e68368c60810c1e057403581f720e6cf96b4d6b6bc7a927232510da40425ffd67d5d918ec7cfba8baec56406687330f233f67eb11b9d8d65
languageName: node
linkType: hard
"@microsoft/tsdoc@npm:0.16.0, @microsoft/tsdoc@npm:~0.16.0":
version: 0.16.0
resolution: "@microsoft/tsdoc@npm:0.16.0"
checksum: 10c0/8883bb0ed22753af7360e9222687fda4eb448f0a574ea34b4596c11e320148b3ae0d24e00f8923df8ba7bc62a46a6f53b9343243a348640d923dfd55d52cd6bb
languageName: node
linkType: hard
"@mswjs/interceptors@npm:^0.38.5":
version: 0.38.6
resolution: "@mswjs/interceptors@npm:0.38.6"
dependencies:
"@open-draft/deferred-promise": "npm:^2.2.0"
"@open-draft/logger": "npm:^0.3.0"
"@open-draft/until": "npm:^2.0.0"
is-node-process: "npm:^1.2.0"
outvariant: "npm:^1.4.3"
strict-event-emitter: "npm:^0.5.1"
checksum: 10c0/86aada6b0fb1ca2d7359cac89e5962db2be5978b9cd3e6fa48d428fad5c4c962eff1ed9edfa5cb4881e929369eeaf6a09c337e8880a9324c9703283cf9b1a137
languageName: node
linkType: hard
"@napi-rs/wasm-runtime@npm:^1.1.1":
version: 1.1.2
resolution: "@napi-rs/wasm-runtime@npm:1.1.2"
dependencies:
"@tybys/wasm-util": "npm:^0.10.1"
peerDependencies:
"@emnapi/core": ^1.7.1
"@emnapi/runtime": ^1.7.1
checksum: 10c0/725c30ec9c480a8d0c1a6a4ce31dc6c830365d485e23ad560e143d1cb9db89a0c95fbb5b9d53c07121729817a3683db6f1ab65d7e4f38fa7482a11b15ef6c6fd
languageName: node
linkType: hard
"@open-draft/deferred-promise@npm:^2.2.0":
version: 2.2.0
resolution: "@open-draft/deferred-promise@npm:2.2.0"
checksum: 10c0/eafc1b1d0fc8edb5e1c753c5e0f3293410b40dde2f92688211a54806d4136887051f39b98c1950370be258483deac9dfd17cf8b96557553765198ef2547e4549
languageName: node
linkType: hard
"@open-draft/logger@npm:^0.3.0":
version: 0.3.0
resolution: "@open-draft/logger@npm:0.3.0"
dependencies:
is-node-process: "npm:^1.2.0"
outvariant: "npm:^1.4.0"
checksum: 10c0/90010647b22e9693c16258f4f9adb034824d1771d3baa313057b9a37797f571181005bc50415a934eaf7c891d90ff71dcd7a9d5048b0b6bb438f31bef2c7c5c1
languageName: node
linkType: hard
"@open-draft/until@npm:^2.0.0":
version: 2.1.0
resolution: "@open-draft/until@npm:2.1.0"
checksum: 10c0/61d3f99718dd86bb393fee2d7a785f961dcaf12f2055f0c693b27f4d0cd5f7a03d498a6d9289773b117590d794a43cd129366fd8e99222e4832f67b1653d54cf
languageName: node
linkType: hard
"@oxc-project/types@npm:=0.122.0":
version: 0.122.0
resolution: "@oxc-project/types@npm:0.122.0"
checksum: 10c0/2c64dd0db949426fd0c86d4f61eded5902e7b7b166356a825bd3a248aeaa29a495f78918f66ab78e99644b67bd7556096e2a8123cec74ca4141c604f424f4f74
languageName: node
linkType: hard
"@oxfmt/binding-android-arm-eabi@npm:0.44.0":
version: 0.44.0
resolution: "@oxfmt/binding-android-arm-eabi@npm:0.44.0"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@oxfmt/binding-android-arm64@npm:0.44.0":
version: 0.44.0
resolution: "@oxfmt/binding-android-arm64@npm:0.44.0"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@oxfmt/binding-darwin-arm64@npm:0.44.0":
version: 0.44.0
resolution: "@oxfmt/binding-darwin-arm64@npm:0.44.0"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@oxfmt/binding-darwin-x64@npm:0.44.0":
version: 0.44.0
resolution: "@oxfmt/binding-darwin-x64@npm:0.44.0"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@oxfmt/binding-freebsd-x64@npm:0.44.0":
version: 0.44.0
resolution: "@oxfmt/binding-freebsd-x64@npm:0.44.0"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@oxfmt/binding-linux-arm-gnueabihf@npm:0.44.0":
version: 0.44.0
resolution: "@oxfmt/binding-linux-arm-gnueabihf@npm:0.44.0"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@oxfmt/binding-linux-arm-musleabihf@npm:0.44.0":
version: 0.44.0
resolution: "@oxfmt/binding-linux-arm-musleabihf@npm:0.44.0"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@oxfmt/binding-linux-arm64-gnu@npm:0.44.0":
version: 0.44.0
resolution: "@oxfmt/binding-linux-arm64-gnu@npm:0.44.0"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@oxfmt/binding-linux-arm64-musl@npm:0.44.0":
version: 0.44.0
resolution: "@oxfmt/binding-linux-arm64-musl@npm:0.44.0"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@oxfmt/binding-linux-ppc64-gnu@npm:0.44.0":
version: 0.44.0
resolution: "@oxfmt/binding-linux-ppc64-gnu@npm:0.44.0"
conditions: os=linux & cpu=ppc64 & libc=glibc
languageName: node
linkType: hard
"@oxfmt/binding-linux-riscv64-gnu@npm:0.44.0":
version: 0.44.0
resolution: "@oxfmt/binding-linux-riscv64-gnu@npm:0.44.0"
conditions: os=linux & cpu=riscv64 & libc=glibc
languageName: node
linkType: hard
"@oxfmt/binding-linux-riscv64-musl@npm:0.44.0":
version: 0.44.0
resolution: "@oxfmt/binding-linux-riscv64-musl@npm:0.44.0"
conditions: os=linux & cpu=riscv64 & libc=musl
languageName: node
linkType: hard
"@oxfmt/binding-linux-s390x-gnu@npm:0.44.0":
version: 0.44.0
resolution: "@oxfmt/binding-linux-s390x-gnu@npm:0.44.0"
conditions: os=linux & cpu=s390x & libc=glibc
languageName: node
linkType: hard
"@oxfmt/binding-linux-x64-gnu@npm:0.44.0":
version: 0.44.0
resolution: "@oxfmt/binding-linux-x64-gnu@npm:0.44.0"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@oxfmt/binding-linux-x64-musl@npm:0.44.0":
version: 0.44.0
resolution: "@oxfmt/binding-linux-x64-musl@npm:0.44.0"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@oxfmt/binding-openharmony-arm64@npm:0.44.0":
version: 0.44.0
resolution: "@oxfmt/binding-openharmony-arm64@npm:0.44.0"
conditions: os=openharmony & cpu=arm64
languageName: node
linkType: hard
"@oxfmt/binding-win32-arm64-msvc@npm:0.44.0":
version: 0.44.0
resolution: "@oxfmt/binding-win32-arm64-msvc@npm:0.44.0"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@oxfmt/binding-win32-ia32-msvc@npm:0.44.0":
version: 0.44.0
resolution: "@oxfmt/binding-win32-ia32-msvc@npm:0.44.0"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@oxfmt/binding-win32-x64-msvc@npm:0.44.0":
version: 0.44.0
resolution: "@oxfmt/binding-win32-x64-msvc@npm:0.44.0"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@oxlint-tsgolint/darwin-arm64@npm:0.20.0":
version: 0.20.0
resolution: "@oxlint-tsgolint/darwin-arm64@npm:0.20.0"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@oxlint-tsgolint/darwin-x64@npm:0.20.0":
version: 0.20.0
resolution: "@oxlint-tsgolint/darwin-x64@npm:0.20.0"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@oxlint-tsgolint/linux-arm64@npm:0.20.0":
version: 0.20.0
resolution: "@oxlint-tsgolint/linux-arm64@npm:0.20.0"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@oxlint-tsgolint/linux-x64@npm:0.20.0":
version: 0.20.0
resolution: "@oxlint-tsgolint/linux-x64@npm:0.20.0"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@oxlint-tsgolint/win32-arm64@npm:0.20.0":
version: 0.20.0
resolution: "@oxlint-tsgolint/win32-arm64@npm:0.20.0"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@oxlint-tsgolint/win32-x64@npm:0.20.0":
version: 0.20.0
resolution: "@oxlint-tsgolint/win32-x64@npm:0.20.0"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@oxlint/binding-android-arm-eabi@npm:1.59.0":
version: 1.59.0
resolution: "@oxlint/binding-android-arm-eabi@npm:1.59.0"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@oxlint/binding-android-arm64@npm:1.59.0":
version: 1.59.0
resolution: "@oxlint/binding-android-arm64@npm:1.59.0"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@oxlint/binding-darwin-arm64@npm:1.59.0":
version: 1.59.0
resolution: "@oxlint/binding-darwin-arm64@npm:1.59.0"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@oxlint/binding-darwin-x64@npm:1.59.0":
version: 1.59.0
resolution: "@oxlint/binding-darwin-x64@npm:1.59.0"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@oxlint/binding-freebsd-x64@npm:1.59.0":
version: 1.59.0
resolution: "@oxlint/binding-freebsd-x64@npm:1.59.0"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@oxlint/binding-linux-arm-gnueabihf@npm:1.59.0":
version: 1.59.0
resolution: "@oxlint/binding-linux-arm-gnueabihf@npm:1.59.0"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@oxlint/binding-linux-arm-musleabihf@npm:1.59.0":
version: 1.59.0
resolution: "@oxlint/binding-linux-arm-musleabihf@npm:1.59.0"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@oxlint/binding-linux-arm64-gnu@npm:1.59.0":
version: 1.59.0
resolution: "@oxlint/binding-linux-arm64-gnu@npm:1.59.0"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@oxlint/binding-linux-arm64-musl@npm:1.59.0":
version: 1.59.0
resolution: "@oxlint/binding-linux-arm64-musl@npm:1.59.0"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@oxlint/binding-linux-ppc64-gnu@npm:1.59.0":
version: 1.59.0
resolution: "@oxlint/binding-linux-ppc64-gnu@npm:1.59.0"
conditions: os=linux & cpu=ppc64 & libc=glibc
languageName: node
linkType: hard
"@oxlint/binding-linux-riscv64-gnu@npm:1.59.0":
version: 1.59.0
resolution: "@oxlint/binding-linux-riscv64-gnu@npm:1.59.0"
conditions: os=linux & cpu=riscv64 & libc=glibc
languageName: node
linkType: hard
"@oxlint/binding-linux-riscv64-musl@npm:1.59.0":
version: 1.59.0
resolution: "@oxlint/binding-linux-riscv64-musl@npm:1.59.0"
conditions: os=linux & cpu=riscv64 & libc=musl
languageName: node
linkType: hard
"@oxlint/binding-linux-s390x-gnu@npm:1.59.0":
version: 1.59.0
resolution: "@oxlint/binding-linux-s390x-gnu@npm:1.59.0"
conditions: os=linux & cpu=s390x & libc=glibc
languageName: node
linkType: hard
"@oxlint/binding-linux-x64-gnu@npm:1.59.0":
version: 1.59.0
resolution: "@oxlint/binding-linux-x64-gnu@npm:1.59.0"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@oxlint/binding-linux-x64-musl@npm:1.59.0":
version: 1.59.0
resolution: "@oxlint/binding-linux-x64-musl@npm:1.59.0"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@oxlint/binding-openharmony-arm64@npm:1.59.0":
version: 1.59.0
resolution: "@oxlint/binding-openharmony-arm64@npm:1.59.0"
conditions: os=openharmony & cpu=arm64
languageName: node
linkType: hard
"@oxlint/binding-win32-arm64-msvc@npm:1.59.0":
version: 1.59.0
resolution: "@oxlint/binding-win32-arm64-msvc@npm:1.59.0"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@oxlint/binding-win32-ia32-msvc@npm:1.59.0":
version: 1.59.0
resolution: "@oxlint/binding-win32-ia32-msvc@npm:1.59.0"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@oxlint/binding-win32-x64-msvc@npm:1.59.0":
version: 1.59.0
resolution: "@oxlint/binding-win32-x64-msvc@npm:1.59.0"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@rolldown/binding-android-arm64@npm:1.0.0-rc.12":
version: 1.0.0-rc.12
resolution: "@rolldown/binding-android-arm64@npm:1.0.0-rc.12"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@rolldown/binding-darwin-arm64@npm:1.0.0-rc.12":
version: 1.0.0-rc.12
resolution: "@rolldown/binding-darwin-arm64@npm:1.0.0-rc.12"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@rolldown/binding-darwin-x64@npm:1.0.0-rc.12":
version: 1.0.0-rc.12
resolution: "@rolldown/binding-darwin-x64@npm:1.0.0-rc.12"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@rolldown/binding-freebsd-x64@npm:1.0.0-rc.12":
version: 1.0.0-rc.12
resolution: "@rolldown/binding-freebsd-x64@npm:1.0.0-rc.12"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@rolldown/binding-linux-arm-gnueabihf@npm:1.0.0-rc.12":
version: 1.0.0-rc.12
resolution: "@rolldown/binding-linux-arm-gnueabihf@npm:1.0.0-rc.12"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@rolldown/binding-linux-arm64-gnu@npm:1.0.0-rc.12":
version: 1.0.0-rc.12
resolution: "@rolldown/binding-linux-arm64-gnu@npm:1.0.0-rc.12"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@rolldown/binding-linux-arm64-musl@npm:1.0.0-rc.12":
version: 1.0.0-rc.12
resolution: "@rolldown/binding-linux-arm64-musl@npm:1.0.0-rc.12"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@rolldown/binding-linux-ppc64-gnu@npm:1.0.0-rc.12":
version: 1.0.0-rc.12
resolution: "@rolldown/binding-linux-ppc64-gnu@npm:1.0.0-rc.12"
conditions: os=linux & cpu=ppc64 & libc=glibc
languageName: node
linkType: hard
"@rolldown/binding-linux-s390x-gnu@npm:1.0.0-rc.12":
version: 1.0.0-rc.12
resolution: "@rolldown/binding-linux-s390x-gnu@npm:1.0.0-rc.12"
conditions: os=linux & cpu=s390x & libc=glibc
languageName: node
linkType: hard
"@rolldown/binding-linux-x64-gnu@npm:1.0.0-rc.12":
version: 1.0.0-rc.12
resolution: "@rolldown/binding-linux-x64-gnu@npm:1.0.0-rc.12"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@rolldown/binding-linux-x64-musl@npm:1.0.0-rc.12":
version: 1.0.0-rc.12
resolution: "@rolldown/binding-linux-x64-musl@npm:1.0.0-rc.12"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@rolldown/binding-openharmony-arm64@npm:1.0.0-rc.12":
version: 1.0.0-rc.12
resolution: "@rolldown/binding-openharmony-arm64@npm:1.0.0-rc.12"
conditions: os=openharmony & cpu=arm64
languageName: node
linkType: hard
"@rolldown/binding-wasm32-wasi@npm:1.0.0-rc.12":
version: 1.0.0-rc.12
resolution: "@rolldown/binding-wasm32-wasi@npm:1.0.0-rc.12"
dependencies:
"@napi-rs/wasm-runtime": "npm:^1.1.1"
conditions: cpu=wasm32
languageName: node
linkType: hard
"@rolldown/binding-win32-arm64-msvc@npm:1.0.0-rc.12":
version: 1.0.0-rc.12
resolution: "@rolldown/binding-win32-arm64-msvc@npm:1.0.0-rc.12"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@rolldown/binding-win32-x64-msvc@npm:1.0.0-rc.12":
version: 1.0.0-rc.12
resolution: "@rolldown/binding-win32-x64-msvc@npm:1.0.0-rc.12"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@rolldown/pluginutils@npm:1.0.0-rc.12":
version: 1.0.0-rc.12
resolution: "@rolldown/pluginutils@npm:1.0.0-rc.12"
checksum: 10c0/f785d1180ea4876bf6a6a67135822808d1c07f902409524ff1088779f7d5318f6e603d281fb107a5145c1ca54b7cabebd359629ec474ebbc2812f2cf53db4023
languageName: node
linkType: hard
"@rushstack/node-core-library@npm:5.22.0":
version: 5.22.0
resolution: "@rushstack/node-core-library@npm:5.22.0"
dependencies:
ajv: "npm:~8.18.0"
ajv-draft-04: "npm:~1.0.0"
ajv-formats: "npm:~3.0.1"
fs-extra: "npm:~11.3.0"
import-lazy: "npm:~4.0.0"
jju: "npm:~1.4.0"
resolve: "npm:~1.22.1"
semver: "npm:~7.5.4"
peerDependencies:
"@types/node": "*"
peerDependenciesMeta:
"@types/node":
optional: true
checksum: 10c0/59949efefbda31f2c3bbc33e19e53dbac215dffff20cbf02e72fc1765ecb08eaf9c3e250515b2cab6c90ca0d6089741680b65b1f560d3a243168c34472703698
languageName: node
linkType: hard
"@rushstack/problem-matcher@npm:0.2.1":
version: 0.2.1
resolution: "@rushstack/problem-matcher@npm:0.2.1"
peerDependencies:
"@types/node": "*"
peerDependenciesMeta:
"@types/node":
optional: true
checksum: 10c0/d6cf27f6bfcdc00763e6d51e582d4faef7109ba8906e6bb3bc375edae551c54a589ed61b7e01e9ae1dbdd4a7075fd82f2da541918b52f2233d6c86393beeaaa7
languageName: node
linkType: hard
"@rushstack/rig-package@npm:0.7.2":
version: 0.7.2
resolution: "@rushstack/rig-package@npm:0.7.2"
dependencies:
resolve: "npm:~1.22.1"
strip-json-comments: "npm:~3.1.1"
checksum: 10c0/2e2839fa9a3984d4b6433d6e5d48130ba0be88fc1d80e1d832272a1e939d3bfed532e8b7560ef70f8b4ebc62593b8684f2ae1cc8aecd5595661066f53527253c
languageName: node
linkType: hard
"@rushstack/terminal@npm:0.22.5":
version: 0.22.5
resolution: "@rushstack/terminal@npm:0.22.5"
dependencies:
"@rushstack/node-core-library": "npm:5.22.0"
"@rushstack/problem-matcher": "npm:0.2.1"
supports-color: "npm:~8.1.1"
peerDependencies:
"@types/node": "*"
peerDependenciesMeta:
"@types/node":
optional: true
checksum: 10c0/d4beb37df3b56da28359c4c7157459241d99162f43487eb52b73bf08ba328363c5a1a30d0753181f2e11ec4a96af05127767fe60ade2746cdf24ad0dbdecfea7
languageName: node
linkType: hard
"@rushstack/ts-command-line@npm:5.3.5":
version: 5.3.5
resolution: "@rushstack/ts-command-line@npm:5.3.5"
dependencies:
"@rushstack/terminal": "npm:0.22.5"
"@types/argparse": "npm:1.0.38"
argparse: "npm:~1.0.9"
string-argv: "npm:~0.3.1"
checksum: 10c0/f65cf629e64e853cc99d6dcc2ebfcdfe1c17e58d1d4de4ebf10e36c0b850712f394eb0d4d7651a5fc5936d24ad0da30cd3364ab96c1b4f5f4aadb6a5146574fb
languageName: node
linkType: hard
"@sec-ant/readable-stream@npm:^0.4.1":
version: 0.4.1
resolution: "@sec-ant/readable-stream@npm:0.4.1"
checksum: 10c0/64e9e9cf161e848067a5bf60cdc04d18495dc28bb63a8d9f8993e4dd99b91ad34e4b563c85de17d91ffb177ec17a0664991d2e115f6543e73236a906068987af
languageName: node
linkType: hard
"@sindresorhus/is@npm:^7.0.1":
version: 7.0.1
resolution: "@sindresorhus/is@npm:7.0.1"
checksum: 10c0/6d43a916d70d9b64066394c272883869b22faf21f4748aaf399c1b691ea704ea607d1668ff2eb5704e5be8809c4a7faafe16be048ce5e1a2ba6e8928b8e3461c
languageName: node
linkType: hard
"@standard-schema/spec@npm:^1.1.0":
version: 1.1.0
resolution: "@standard-schema/spec@npm:1.1.0"
checksum: 10c0/d90f55acde4b2deb983529c87e8025fa693de1a5e8b49ecc6eb84d1fd96328add0e03d7d551442156c7432fd78165b2c26ff561b970a9a881f046abb78d6a526
languageName: node
linkType: hard
"@szmarczak/http-timer@npm:^5.0.1":
version: 5.0.1
resolution: "@szmarczak/http-timer@npm:5.0.1"
dependencies:
defer-to-connect: "npm:^2.0.1"
checksum: 10c0/4629d2fbb2ea67c2e9dc03af235c0991c79ebdddcbc19aed5d5732fb29ce01c13331e9b1a491584b9069bd6ecde6581dcbf871f11b7eefdebbab34de6cf2197e
languageName: node
linkType: hard
"@tsconfig/node22@npm:^22.0.0":
version: 22.0.2
resolution: "@tsconfig/node22@npm:22.0.2"
checksum: 10c0/c75e6b9ea86ec2a384adefac0e2f16a6c08202ae5cf6c8c745944396a6931ffb38e742809491c1882d1868c2af1c33744193701779674bfb1e05f6a130045a18
languageName: node
linkType: hard
"@tybys/wasm-util@npm:^0.10.1":
version: 0.10.1
resolution: "@tybys/wasm-util@npm:0.10.1"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10c0/b255094f293794c6d2289300c5fbcafbb5532a3aed3a5ffd2f8dc1828e639b88d75f6a376dd8f94347a44813fd7a7149d8463477a9a49525c8b2dcaa38c2d1e8
languageName: node
linkType: hard
"@types/argparse@npm:1.0.38":
version: 1.0.38
resolution: "@types/argparse@npm:1.0.38"
checksum: 10c0/4fc892da5df16923f48180da2d1f4562fa8b0507cf636b24780444fa0a1d7321d4dc0c0ecbee6152968823f5a2ae0d321b4f8c705a489bf1ae1245bdeb0868fd
languageName: node
linkType: hard
"@types/chai@npm:^5.2.2":
version: 5.2.3
resolution: "@types/chai@npm:5.2.3"
dependencies:
"@types/deep-eql": "npm:*"
assertion-error: "npm:^2.0.1"
checksum: 10c0/e0ef1de3b6f8045a5e473e867c8565788c444271409d155588504840ad1a53611011f85072188c2833941189400228c1745d78323dac13fcede9c2b28bacfb2f
languageName: node
linkType: hard
"@types/debug@npm:^4.1.12":
version: 4.1.12
resolution: "@types/debug@npm:4.1.12"
dependencies:
"@types/ms": "npm:*"
checksum: 10c0/5dcd465edbb5a7f226e9a5efd1f399c6172407ef5840686b73e3608ce135eeca54ae8037dcd9f16bdb2768ac74925b820a8b9ecc588a58ca09eca6acabe33e2f
languageName: node
linkType: hard
"@types/deep-eql@npm:*":
version: 4.0.2
resolution: "@types/deep-eql@npm:4.0.2"
checksum: 10c0/bf3f811843117900d7084b9d0c852da9a044d12eb40e6de73b552598a6843c21291a8a381b0532644574beecd5e3491c5ff3a0365ab86b15d59862c025384844
languageName: node
linkType: hard
"@types/estree@npm:^1.0.0":
version: 1.0.7
resolution: "@types/estree@npm:1.0.7"
checksum: 10c0/be815254316882f7c40847336cd484c3bc1c3e34f710d197160d455dc9d6d050ffbf4c3bc76585dba86f737f020ab20bdb137ebe0e9116b0c86c7c0342221b8c
languageName: node
linkType: hard
"@types/getos@npm:^3.0.4":
version: 3.0.4
resolution: "@types/getos@npm:3.0.4"
checksum: 10c0/5eda5b8189d9f27c1f3d46c9528a23aa82b39c2b7b73a291eae7a39da48ab1801a493f77d47987859af99935e9ce8c3da0e9adac43ddfb561bcba578bd785c22
languageName: node
linkType: hard
"@types/graceful-fs@npm:^4.1.9":
version: 4.1.9
resolution: "@types/graceful-fs@npm:4.1.9"
dependencies:
"@types/node": "npm:*"
checksum: 10c0/235d2fc69741448e853333b7c3d1180a966dd2b8972c8cbcd6b2a0c6cd7f8d582ab2b8e58219dbc62cce8f1b40aa317ff78ea2201cdd8249da5025adebed6f0b
languageName: node
linkType: hard
"@types/http-cache-semantics@npm:^4.0.4":
version: 4.0.4
resolution: "@types/http-cache-semantics@npm:4.0.4"
checksum: 10c0/51b72568b4b2863e0fe8d6ce8aad72a784b7510d72dc866215642da51d84945a9459fa89f49ec48f1e9a1752e6a78e85a4cda0ded06b1c73e727610c925f9ce6
languageName: node
linkType: hard
"@types/ms@npm:*":
version: 0.7.31
resolution: "@types/ms@npm:0.7.31"
checksum: 10c0/19fae4f587651e8761c76a0c72ba8af1700d37054476878d164b758edcc926f4420ed06037a1a7fdddc1dbea25265895d743c8b2ea44f3f3f7ac06c449b9221e
languageName: node
linkType: hard
"@types/node@npm:*":
version: 16.4.2
resolution: "@types/node@npm:16.4.2"
checksum: 10c0/c50354ba59e641ce2a5ca44bdbc795fb35de0fdcbe96e9c7cd5a9056914695f92fc15c58efeaa898c1960c83530f9c802d16a0937af8720cae8e7b813a7a8fff
languageName: node
linkType: hard
"@types/node@npm:~22.10.7":
version: 22.10.10
resolution: "@types/node@npm:22.10.10"
dependencies:
undici-types: "npm:~6.20.0"
checksum: 10c0/3425772d4513cd5dbdd87c00acda088113c03a97445f84f6a89744c60a66990b56c9d3a7213d09d57b6b944ae8ff45f985565e0c1846726112588e33a22dd12b
languageName: node
linkType: hard
"@types/semver@npm:^7.5.6":
version: 7.5.6
resolution: "@types/semver@npm:7.5.6"
checksum: 10c0/196dc32db5f68cbcde2e6a42bb4aa5cbb100fa2b7bd9c8c82faaaf3e03fbe063e205dbb4f03c7cdf53da2edb70a0d34c9f2e601b54281b377eb8dc1743226acd
languageName: node
linkType: hard
"@types/yauzl@npm:^2.9.1":
version: 2.9.2
resolution: "@types/yauzl@npm:2.9.2"
dependencies:
"@types/node": "npm:*"
checksum: 10c0/0b4a5db8b7b01e94d9c5f48b5043c22553313e9f31918a9755a4bc7875be92a99bf5f11aa260016f553410be517ce64f5a99b14226d878d65d6d1696869a08b1
languageName: node
linkType: hard
"@vitest/coverage-v8@npm:^4.1.2":
version: 4.1.2
resolution: "@vitest/coverage-v8@npm:4.1.2"
dependencies:
"@bcoe/v8-coverage": "npm:^1.0.2"
"@vitest/utils": "npm:4.1.2"
ast-v8-to-istanbul: "npm:^1.0.0"
istanbul-lib-coverage: "npm:^3.2.2"
istanbul-lib-report: "npm:^3.0.1"
istanbul-reports: "npm:^3.2.0"
magicast: "npm:^0.5.2"
obug: "npm:^2.1.1"
std-env: "npm:^4.0.0-rc.1"
tinyrainbow: "npm:^3.1.0"
peerDependencies:
"@vitest/browser": 4.1.2
vitest: 4.1.2
peerDependenciesMeta:
"@vitest/browser":
optional: true
checksum: 10c0/2f4488efb34a5d9e3a70631ba263e153eecba8ec0da52cb874cdc674c88369061706572b9fc0c302376fd1de58aedc86a2f9f75e5a521084e31a1446c85f2c40
languageName: node
linkType: hard
"@vitest/expect@npm:4.1.2":
version: 4.1.2
resolution: "@vitest/expect@npm:4.1.2"
dependencies:
"@standard-schema/spec": "npm:^1.1.0"
"@types/chai": "npm:^5.2.2"
"@vitest/spy": "npm:4.1.2"
"@vitest/utils": "npm:4.1.2"
chai: "npm:^6.2.2"
tinyrainbow: "npm:^3.1.0"
checksum: 10c0/e238c833b5555d31b074545807956d5e874a1ef725525ecc99f1885b71b230b2127d40d8d142a7253666b8565d5806723853e85e0e99265520ec7506fdc5890c
languageName: node
linkType: hard
"@vitest/mocker@npm:4.1.2":
version: 4.1.2
resolution: "@vitest/mocker@npm:4.1.2"
dependencies:
"@vitest/spy": "npm:4.1.2"
estree-walker: "npm:^3.0.3"
magic-string: "npm:^0.30.21"
peerDependencies:
msw: ^2.4.9
vite: ^6.0.0 || ^7.0.0 || ^8.0.0
peerDependenciesMeta:
msw:
optional: true
vite:
optional: true
checksum: 10c0/f23094f3c7e1e5af42e6a468f0815c1ecdcab85cb3a56ab6f3f214a9808a40271467d4352cae972482b9738cc31c62c7312d8b0da227d6ea03d2b3aacb8d385f
languageName: node
linkType: hard
"@vitest/pretty-format@npm:4.1.2":
version: 4.1.2
resolution: "@vitest/pretty-format@npm:4.1.2"
dependencies:
tinyrainbow: "npm:^3.1.0"
checksum: 10c0/6f57519c707e6a3d1ff8630ca87ce78fda9bf7bb33f6e4a0c775a8b510f2a6cee109849e2cdb736b0280681c567bd03e4cff724cbf0962950c9ff81377f0b2bc
languageName: node
linkType: hard
"@vitest/runner@npm:4.1.2":
version: 4.1.2
resolution: "@vitest/runner@npm:4.1.2"
dependencies:
"@vitest/utils": "npm:4.1.2"
pathe: "npm:^2.0.3"
checksum: 10c0/35654a87bd27983443adc24d68529d624f7d70e0386176741dc5bcc4188b86a70af2c512405d7e97aa45c16d83e1c8566c1f99c8440430f95557275f18612d21
languageName: node
linkType: hard
"@vitest/snapshot@npm:4.1.2":
version: 4.1.2
resolution: "@vitest/snapshot@npm:4.1.2"