forked from eclipse-openvsx/openvsx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyarn.lock
More file actions
4585 lines (4095 loc) · 159 KB
/
yarn.lock
File metadata and controls
4585 lines (4095 loc) · 159 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: 10
"@aashutoshrathi/word-wrap@npm:^1.2.3":
version: 1.2.6
resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
checksum: 10/6eebd12a5cd03cee38fcb915ef9f4ea557df6a06f642dfc7fe8eb4839eb5c9ca55a382f3604d52c14200b0c214c12af5e1f23d2a6d8e23ef2d016b105a9d6c0a
languageName: node
linkType: hard
"@azu/format-text@npm:^1.0.1, @azu/format-text@npm:^1.0.2":
version: 1.0.2
resolution: "@azu/format-text@npm:1.0.2"
checksum: 10/24c4b438dd19d4024c334f77acdf6b2aea44f3847134bb03024ee457b778c2c7b601d0132de5f939337fc709ab672a8c55dd98a6264c350176b7499ea23d4331
languageName: node
linkType: hard
"@azu/style-format@npm:^1.0.1":
version: 1.0.1
resolution: "@azu/style-format@npm:1.0.1"
dependencies:
"@azu/format-text": "npm:^1.0.1"
checksum: 10/8a4c2339a82117f66ddfdd425f1dae147e3ea94a023270cb220a09377b391862ce8e1a9de98cd57491b1975fb21b8e4d05b7005a42408d1662ad034c49c595ba
languageName: node
linkType: hard
"@azure/abort-controller@npm:^1.0.0":
version: 1.1.0
resolution: "@azure/abort-controller@npm:1.1.0"
dependencies:
tslib: "npm:^2.2.0"
checksum: 10/1efe8735cfe6411f42ab9dda86be627073e0e3345a89bd5d0560175523ab3939db2c82fd17965a49fc70513377866539c91a5c73c871b5a0d771329ffae87dda
languageName: node
linkType: hard
"@azure/abort-controller@npm:^2.0.0":
version: 2.1.2
resolution: "@azure/abort-controller@npm:2.1.2"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10/484e34a8121e5815f764af4da1c8b51d4713106e43f1c44e59671773ffff52da066780821c7633cf601668daa1181a57a1c88f57854d60b62ecc5560f9c52932
languageName: node
linkType: hard
"@azure/core-auth@npm:^1.4.0, @azure/core-auth@npm:^1.5.0, @azure/core-auth@npm:^1.8.0":
version: 1.8.0
resolution: "@azure/core-auth@npm:1.8.0"
dependencies:
"@azure/abort-controller": "npm:^2.0.0"
"@azure/core-util": "npm:^1.1.0"
tslib: "npm:^2.6.2"
checksum: 10/96bd99511131ae30383997e6b30d3cebbd3ee2d483e2553c528c323cd6e6043e5be1d2f5cf32c61f039f017c7003b4aef048fc6cbf3ce0bdb3359fd2b50c5c53
languageName: node
linkType: hard
"@azure/core-client@npm:^1.9.2":
version: 1.9.2
resolution: "@azure/core-client@npm:1.9.2"
dependencies:
"@azure/abort-controller": "npm:^2.0.0"
"@azure/core-auth": "npm:^1.4.0"
"@azure/core-rest-pipeline": "npm:^1.9.1"
"@azure/core-tracing": "npm:^1.0.0"
"@azure/core-util": "npm:^1.6.1"
"@azure/logger": "npm:^1.0.0"
tslib: "npm:^2.6.2"
checksum: 10/0358b8245bf23943914eb77384955c994bf3ef84f862234cb3e261f9c602a9f4717beedafd48d1da902b15f3464a4211540976fabb4569039fac8e0d41e59ef1
languageName: node
linkType: hard
"@azure/core-rest-pipeline@npm:^1.1.0, @azure/core-rest-pipeline@npm:^1.9.1":
version: 1.17.0
resolution: "@azure/core-rest-pipeline@npm:1.17.0"
dependencies:
"@azure/abort-controller": "npm:^2.0.0"
"@azure/core-auth": "npm:^1.8.0"
"@azure/core-tracing": "npm:^1.0.1"
"@azure/core-util": "npm:^1.9.0"
"@azure/logger": "npm:^1.0.0"
http-proxy-agent: "npm:^7.0.0"
https-proxy-agent: "npm:^7.0.0"
tslib: "npm:^2.6.2"
checksum: 10/88b79c37e0bf822002745013084d01eb104809186fb56633b046fad35eec64fcccceaa3b2e5bc10a5c15425d723101ee73f885c5a57f074ca993d15f9df25b9c
languageName: node
linkType: hard
"@azure/core-tracing@npm:^1.0.0, @azure/core-tracing@npm:^1.0.1":
version: 1.1.2
resolution: "@azure/core-tracing@npm:1.1.2"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10/027ab8f6ed0ed859a3999dd192faf7286b6e1da8887852a61150c1cf9fc29dbde95bcaa510ee5138e416e9c026cd177b69b7e2c83a8ec0a9758caba412f5368d
languageName: node
linkType: hard
"@azure/core-util@npm:^1.1.0, @azure/core-util@npm:^1.3.0, @azure/core-util@npm:^1.6.1, @azure/core-util@npm:^1.9.0":
version: 1.10.0
resolution: "@azure/core-util@npm:1.10.0"
dependencies:
"@azure/abort-controller": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 10/8397be076b0b4378bcaa5b0392f79eea86d5ed0032e0d9b6863e852ee2b754aa7d2b60fb3abc63e165a151bf9410baffcc7c6e3625abe72092af84fc1dffc549
languageName: node
linkType: hard
"@azure/identity@npm:^4.1.0":
version: 4.4.1
resolution: "@azure/identity@npm:4.4.1"
dependencies:
"@azure/abort-controller": "npm:^1.0.0"
"@azure/core-auth": "npm:^1.5.0"
"@azure/core-client": "npm:^1.9.2"
"@azure/core-rest-pipeline": "npm:^1.1.0"
"@azure/core-tracing": "npm:^1.0.0"
"@azure/core-util": "npm:^1.3.0"
"@azure/logger": "npm:^1.0.0"
"@azure/msal-browser": "npm:^3.14.0"
"@azure/msal-node": "npm:^2.9.2"
events: "npm:^3.0.0"
jws: "npm:^4.0.0"
open: "npm:^8.0.0"
stoppable: "npm:^1.1.0"
tslib: "npm:^2.2.0"
checksum: 10/93891329e115ed675e1cda3dca22031f37a75d0779fd145790c21990bc440ab2ffc9f1fbacec3b33dc7a0ac87661bdd9e8e763ae12d494a5daf3f1baa8915a5b
languageName: node
linkType: hard
"@azure/logger@npm:^1.0.0":
version: 1.1.4
resolution: "@azure/logger@npm:1.1.4"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10/18bae2dcb0e6812a968282b87a6f9d6423533eeadea036b3e77856ce133d8286f4bb866a376d9f2882a88c55b25ff56a96f1a51fb1f1dd57856b937b42bcf46d
languageName: node
linkType: hard
"@azure/msal-browser@npm:^3.14.0":
version: 3.24.0
resolution: "@azure/msal-browser@npm:3.24.0"
dependencies:
"@azure/msal-common": "npm:14.15.0"
checksum: 10/645f2ca1e25addb5b53780e2a055302aeabd7128153751fae460d07dc517f36e0d513ba2398cdc530278c50db4b25be887cd07e87020bbb7c36bfbb1507f2923
languageName: node
linkType: hard
"@azure/msal-common@npm:14.15.0":
version: 14.15.0
resolution: "@azure/msal-common@npm:14.15.0"
checksum: 10/b49a4e6c4524ebec8eb2a5256f2d051e1ee335b049fc56d0e773435dfe7b22480fefffd5f90ede79f28a20fe99277c1196963685204390a436e846e70459c376
languageName: node
linkType: hard
"@azure/msal-node@npm:^2.9.2":
version: 2.14.0
resolution: "@azure/msal-node@npm:2.14.0"
dependencies:
"@azure/msal-common": "npm:14.15.0"
jsonwebtoken: "npm:^9.0.0"
uuid: "npm:^8.3.0"
checksum: 10/4ce735c44c7de88ba31baf03a0852b72592ea1334d3b76ad524126956983db25a19db5d8cb583bcd49bc2ef4d5722b859079b49787defd5cf3b70a629ed0d190
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.26.2":
version: 7.27.1
resolution: "@babel/code-frame@npm:7.27.1"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.27.1"
js-tokens: "npm:^4.0.0"
picocolors: "npm:^1.1.1"
checksum: 10/721b8a6e360a1fa0f1c9fe7351ae6c874828e119183688b533c477aa378f1010f37cc9afbfc4722c686d1f5cdd00da02eab4ba7278a0c504fa0d7a321dcd4fdf
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.27.1":
version: 7.28.5
resolution: "@babel/helper-validator-identifier@npm:7.28.5"
checksum: 10/8e5d9b0133702cfacc7f368bf792f0f8ac0483794877c6dca5fcb73810ee138e27527701826fb58a40a004f3a5ec0a2f3c3dd5e326d262530b119918f3132ba7
languageName: node
linkType: hard
"@babel/runtime@npm:^7.16.7":
version: 7.27.0
resolution: "@babel/runtime@npm:7.27.0"
dependencies:
regenerator-runtime: "npm:^0.14.0"
checksum: 10/e6966e03b695feb4c0ac0856a4355231c2580bf9ebd0298f47739f85c0ea658679dd84409daf26378d42c86c1cbe7e33feab709b14e784254b6c441d91606465
languageName: node
linkType: hard
"@emnapi/core@npm:^1.4.0":
version: 1.4.3
resolution: "@emnapi/core@npm:1.4.3"
dependencies:
"@emnapi/wasi-threads": "npm:1.0.2"
tslib: "npm:^2.4.0"
checksum: 10/b511f66b897d2019835391544fdf11f4fa0ce06cc1181abfa17c7d4cf03aaaa4fc8a64fcd30bb3f901de488d0a6f370b53a8de2215a898f5a4ac98015265b3b7
languageName: node
linkType: hard
"@emnapi/runtime@npm:^1.4.0":
version: 1.4.3
resolution: "@emnapi/runtime@npm:1.4.3"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10/4f90852a1a5912982cc4e176b6420556971bcf6a85ee23e379e2455066d616219751367dcf43e6a6eaf41ea7e95ba9dc830665a52b5d979dfe074237d19578f8
languageName: node
linkType: hard
"@emnapi/wasi-threads@npm:1.0.2":
version: 1.0.2
resolution: "@emnapi/wasi-threads@npm:1.0.2"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10/e82941776665eb958c2084728191d6b15a94383449975c4621b67a1c8217e1c0ec11056a693906c76863cb96f782f8be500510ecec6874e3f5da35a8e7968cfd
languageName: node
linkType: hard
"@eslint-community/eslint-utils@npm:^4.2.0":
version: 4.4.0
resolution: "@eslint-community/eslint-utils@npm:4.4.0"
dependencies:
eslint-visitor-keys: "npm:^3.3.0"
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
checksum: 10/8d70bcdcd8cd279049183aca747d6c2ed7092a5cf0cf5916faac1ef37ffa74f0c245c2a3a3d3b9979d9dfdd4ca59257b4c5621db699d637b847a2c5e02f491c2
languageName: node
linkType: hard
"@eslint-community/eslint-utils@npm:^4.4.0":
version: 4.4.1
resolution: "@eslint-community/eslint-utils@npm:4.4.1"
dependencies:
eslint-visitor-keys: "npm:^3.4.3"
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
checksum: 10/ae92a11412674329b4bd38422518601ec9ceae28e251104d1cad83715da9d38e321f68c817c39b64e66d0af7d98df6f9a10ad2dc638911254b47fb8932df00ef
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.10.0, @eslint-community/regexpp@npm:^4.12.1":
version: 4.12.1
resolution: "@eslint-community/regexpp@npm:4.12.1"
checksum: 10/c08f1dd7dd18fbb60bdd0d85820656d1374dd898af9be7f82cb00451313402a22d5e30569c150315b4385907cdbca78c22389b2a72ab78883b3173be317620cc
languageName: node
linkType: hard
"@eslint/config-array@npm:^0.19.0":
version: 0.19.0
resolution: "@eslint/config-array@npm:0.19.0"
dependencies:
"@eslint/object-schema": "npm:^2.1.4"
debug: "npm:^4.3.1"
minimatch: "npm:^3.1.2"
checksum: 10/16e4ec468ebcb10255ab8c61234c1b3e7ac5506016e432fb489a1c5528cace7a60ddb07515516e7fc166b1dbe6c407d8a6bfbaa2e7531d445d8feb845c989913
languageName: node
linkType: hard
"@eslint/core@npm:^0.9.0":
version: 0.9.0
resolution: "@eslint/core@npm:0.9.0"
checksum: 10/2d11e9c6fac14cfa817c7a9939fd6b79f2120928e4933952d061651db93797e0fcd67c858a14980ac26e90f6e0e49051436aefa4a4b06a26f24e3028366f73d9
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^3.2.0":
version: 3.2.0
resolution: "@eslint/eslintrc@npm:3.2.0"
dependencies:
ajv: "npm:^6.12.4"
debug: "npm:^4.3.2"
espree: "npm:^10.0.1"
globals: "npm:^14.0.0"
ignore: "npm:^5.2.0"
import-fresh: "npm:^3.2.1"
js-yaml: "npm:^4.1.0"
minimatch: "npm:^3.1.2"
strip-json-comments: "npm:^3.1.1"
checksum: 10/b32dd90ce7da68e89b88cd729db46b27aac79a2e6cb1fa75d25a6b766d586b443bfbf59622489efbd3c6f696f147b51111e81ec7cd23d70f215c5d474cad0261
languageName: node
linkType: hard
"@eslint/js@npm:9.15.0, @eslint/js@npm:^9.15.0":
version: 9.15.0
resolution: "@eslint/js@npm:9.15.0"
checksum: 10/cdea71574a8be164147f426ffa5eca05a9c7fbfbae98387ed0cf772292fc9fb5ded69ce96eac110aaa633f6b7504ec551e1d33f2d6690ae95b11ec395553bae1
languageName: node
linkType: hard
"@eslint/object-schema@npm:^2.1.4":
version: 2.1.4
resolution: "@eslint/object-schema@npm:2.1.4"
checksum: 10/221e8d9f281c605948cd6e030874aacce83fe097f8f9c1964787037bccf08e82b7aa9eff1850a30fffac43f1d76555727ec22a2af479d91e268e89d1e035131e
languageName: node
linkType: hard
"@eslint/plugin-kit@npm:^0.2.3":
version: 0.2.3
resolution: "@eslint/plugin-kit@npm:0.2.3"
dependencies:
levn: "npm:^0.4.1"
checksum: 10/0d0653ef840823fd5c0354ef8f1937e7763dbe830173eb6d2d55a19374bf04a06dff0e5214330c10a9425cf38655f632bb0d7d0666249b366e506ae291d82f7e
languageName: node
linkType: hard
"@humanfs/core@npm:^0.19.1":
version: 0.19.1
resolution: "@humanfs/core@npm:0.19.1"
checksum: 10/270d936be483ab5921702623bc74ce394bf12abbf57d9145a69e8a0d1c87eb1c768bd2d93af16c5705041e257e6d9cc7529311f63a1349f3678abc776fc28523
languageName: node
linkType: hard
"@humanfs/node@npm:^0.16.6":
version: 0.16.6
resolution: "@humanfs/node@npm:0.16.6"
dependencies:
"@humanfs/core": "npm:^0.19.1"
"@humanwhocodes/retry": "npm:^0.3.0"
checksum: 10/6d43c6727463772d05610aa05c83dab2bfbe78291022ee7a92cb50999910b8c720c76cc312822e2dea2b497aa1b3fef5fe9f68803fc45c9d4ed105874a65e339
languageName: node
linkType: hard
"@humanwhocodes/module-importer@npm:^1.0.1":
version: 1.0.1
resolution: "@humanwhocodes/module-importer@npm:1.0.1"
checksum: 10/e993950e346331e5a32eefb27948ecdee2a2c4ab3f072b8f566cd213ef485dd50a3ca497050608db91006f5479e43f91a439aef68d2a313bd3ded06909c7c5b3
languageName: node
linkType: hard
"@humanwhocodes/retry@npm:^0.3.0":
version: 0.3.1
resolution: "@humanwhocodes/retry@npm:0.3.1"
checksum: 10/eb457f699529de7f07649679ec9e0353055eebe443c2efe71c6dd950258892475a038e13c6a8c5e13ed1fb538cdd0a8794faa96b24b6ffc4c87fb1fc9f70ad7f
languageName: node
linkType: hard
"@humanwhocodes/retry@npm:^0.4.1":
version: 0.4.1
resolution: "@humanwhocodes/retry@npm:0.4.1"
checksum: 10/39fafc7319e88f61befebd5e1b4f0136534ea6a9bd10d74366698187bd63544210ec5d79a87ed4d91297f1cc64c4c53d45fb0077a2abfdce212cf0d3862d5f04
languageName: node
linkType: hard
"@isaacs/balanced-match@npm:^4.0.1":
version: 4.0.1
resolution: "@isaacs/balanced-match@npm:4.0.1"
checksum: 10/102fbc6d2c0d5edf8f6dbf2b3feb21695a21bc850f11bc47c4f06aa83bd8884fde3fe9d6d797d619901d96865fdcb4569ac2a54c937992c48885c5e3d9967fe8
languageName: node
linkType: hard
"@isaacs/brace-expansion@npm:^5.0.0":
version: 5.0.1
resolution: "@isaacs/brace-expansion@npm:5.0.1"
dependencies:
"@isaacs/balanced-match": "npm:^4.0.1"
checksum: 10/aec226065bc4285436a27379e08cc35bf94ef59f5098ac1c026495c9ba4ab33d851964082d3648d56d63eb90f2642867bd15a3e1b810b98beb1a8c14efce6a94
languageName: node
linkType: hard
"@isaacs/cliui@npm:^8.0.2":
version: 8.0.2
resolution: "@isaacs/cliui@npm:8.0.2"
dependencies:
string-width: "npm:^5.1.2"
string-width-cjs: "npm:string-width@^4.2.0"
strip-ansi: "npm:^7.0.1"
strip-ansi-cjs: "npm:strip-ansi@^6.0.1"
wrap-ansi: "npm:^8.1.0"
wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0"
checksum: 10/e9ed5fd27c3aec1095e3a16e0c0cf148d1fee55a38665c35f7b3f86a9b5d00d042ddaabc98e8a1cb7463b9378c15f22a94eb35e99469c201453eb8375191f243
languageName: node
linkType: hard
"@isaacs/fs-minipass@npm:^4.0.0":
version: 4.0.1
resolution: "@isaacs/fs-minipass@npm:4.0.1"
dependencies:
minipass: "npm:^7.0.4"
checksum: 10/4412e9e6713c89c1e66d80bb0bb5a2a93192f10477623a27d08f228ba0316bb880affabc5bfe7f838f58a34d26c2c190da726e576cdfc18c49a72e89adabdcf5
languageName: node
linkType: hard
"@napi-rs/wasm-runtime@npm:^0.2.5":
version: 0.2.9
resolution: "@napi-rs/wasm-runtime@npm:0.2.9"
dependencies:
"@emnapi/core": "npm:^1.4.0"
"@emnapi/runtime": "npm:^1.4.0"
"@tybys/wasm-util": "npm:^0.9.0"
checksum: 10/8ebc7d85e11e1b8d71908d5615ff24b27ef7af8287d087fb5cff5a3e545915c7545998d976a9cd6a4315dab4ba0f609439fbe6408fec3afebd288efb0dbdc135
languageName: node
linkType: hard
"@node-rs/crc32-android-arm-eabi@npm:1.10.6":
version: 1.10.6
resolution: "@node-rs/crc32-android-arm-eabi@npm:1.10.6"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@node-rs/crc32-android-arm64@npm:1.10.6":
version: 1.10.6
resolution: "@node-rs/crc32-android-arm64@npm:1.10.6"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@node-rs/crc32-darwin-arm64@npm:1.10.6":
version: 1.10.6
resolution: "@node-rs/crc32-darwin-arm64@npm:1.10.6"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@node-rs/crc32-darwin-x64@npm:1.10.6":
version: 1.10.6
resolution: "@node-rs/crc32-darwin-x64@npm:1.10.6"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@node-rs/crc32-freebsd-x64@npm:1.10.6":
version: 1.10.6
resolution: "@node-rs/crc32-freebsd-x64@npm:1.10.6"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@node-rs/crc32-linux-arm-gnueabihf@npm:1.10.6":
version: 1.10.6
resolution: "@node-rs/crc32-linux-arm-gnueabihf@npm:1.10.6"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@node-rs/crc32-linux-arm64-gnu@npm:1.10.6":
version: 1.10.6
resolution: "@node-rs/crc32-linux-arm64-gnu@npm:1.10.6"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@node-rs/crc32-linux-arm64-musl@npm:1.10.6":
version: 1.10.6
resolution: "@node-rs/crc32-linux-arm64-musl@npm:1.10.6"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@node-rs/crc32-linux-x64-gnu@npm:1.10.6":
version: 1.10.6
resolution: "@node-rs/crc32-linux-x64-gnu@npm:1.10.6"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@node-rs/crc32-linux-x64-musl@npm:1.10.6":
version: 1.10.6
resolution: "@node-rs/crc32-linux-x64-musl@npm:1.10.6"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@node-rs/crc32-wasm32-wasi@npm:1.10.6":
version: 1.10.6
resolution: "@node-rs/crc32-wasm32-wasi@npm:1.10.6"
dependencies:
"@napi-rs/wasm-runtime": "npm:^0.2.5"
conditions: cpu=wasm32
languageName: node
linkType: hard
"@node-rs/crc32-win32-arm64-msvc@npm:1.10.6":
version: 1.10.6
resolution: "@node-rs/crc32-win32-arm64-msvc@npm:1.10.6"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@node-rs/crc32-win32-ia32-msvc@npm:1.10.6":
version: 1.10.6
resolution: "@node-rs/crc32-win32-ia32-msvc@npm:1.10.6"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@node-rs/crc32-win32-x64-msvc@npm:1.10.6":
version: 1.10.6
resolution: "@node-rs/crc32-win32-x64-msvc@npm:1.10.6"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@node-rs/crc32@npm:^1.7.0":
version: 1.10.6
resolution: "@node-rs/crc32@npm:1.10.6"
dependencies:
"@node-rs/crc32-android-arm-eabi": "npm:1.10.6"
"@node-rs/crc32-android-arm64": "npm:1.10.6"
"@node-rs/crc32-darwin-arm64": "npm:1.10.6"
"@node-rs/crc32-darwin-x64": "npm:1.10.6"
"@node-rs/crc32-freebsd-x64": "npm:1.10.6"
"@node-rs/crc32-linux-arm-gnueabihf": "npm:1.10.6"
"@node-rs/crc32-linux-arm64-gnu": "npm:1.10.6"
"@node-rs/crc32-linux-arm64-musl": "npm:1.10.6"
"@node-rs/crc32-linux-x64-gnu": "npm:1.10.6"
"@node-rs/crc32-linux-x64-musl": "npm:1.10.6"
"@node-rs/crc32-wasm32-wasi": "npm:1.10.6"
"@node-rs/crc32-win32-arm64-msvc": "npm:1.10.6"
"@node-rs/crc32-win32-ia32-msvc": "npm:1.10.6"
"@node-rs/crc32-win32-x64-msvc": "npm:1.10.6"
dependenciesMeta:
"@node-rs/crc32-android-arm-eabi":
optional: true
"@node-rs/crc32-android-arm64":
optional: true
"@node-rs/crc32-darwin-arm64":
optional: true
"@node-rs/crc32-darwin-x64":
optional: true
"@node-rs/crc32-freebsd-x64":
optional: true
"@node-rs/crc32-linux-arm-gnueabihf":
optional: true
"@node-rs/crc32-linux-arm64-gnu":
optional: true
"@node-rs/crc32-linux-arm64-musl":
optional: true
"@node-rs/crc32-linux-x64-gnu":
optional: true
"@node-rs/crc32-linux-x64-musl":
optional: true
"@node-rs/crc32-wasm32-wasi":
optional: true
"@node-rs/crc32-win32-arm64-msvc":
optional: true
"@node-rs/crc32-win32-ia32-msvc":
optional: true
"@node-rs/crc32-win32-x64-msvc":
optional: true
checksum: 10/4be21ff4aa37e4c219de3321da93ea03eac11b3a17d67f0d1ad0e164461a497a1e7ca3b39fb68f463bbde7670ff80aec7400f83279f03ceffea43be631369bf1
languageName: node
linkType: hard
"@nodelib/fs.scandir@npm:2.1.5":
version: 2.1.5
resolution: "@nodelib/fs.scandir@npm:2.1.5"
dependencies:
"@nodelib/fs.stat": "npm:2.0.5"
run-parallel: "npm:^1.1.9"
checksum: 10/6ab2a9b8a1d67b067922c36f259e3b3dfd6b97b219c540877a4944549a4d49ea5ceba5663905ab5289682f1f3c15ff441d02f0447f620a42e1cb5e1937174d4b
languageName: node
linkType: hard
"@nodelib/fs.stat@npm:2.0.5, @nodelib/fs.stat@npm:^2.0.2":
version: 2.0.5
resolution: "@nodelib/fs.stat@npm:2.0.5"
checksum: 10/012480b5ca9d97bff9261571dbbec7bbc6033f69cc92908bc1ecfad0792361a5a1994bc48674b9ef76419d056a03efadfce5a6cf6dbc0a36559571a7a483f6f0
languageName: node
linkType: hard
"@nodelib/fs.walk@npm:^1.2.3":
version: 1.2.8
resolution: "@nodelib/fs.walk@npm:1.2.8"
dependencies:
"@nodelib/fs.scandir": "npm:2.1.5"
fastq: "npm:^1.6.0"
checksum: 10/40033e33e96e97d77fba5a238e4bba4487b8284678906a9f616b5579ddaf868a18874c0054a75402c9fbaaa033a25ceae093af58c9c30278e35c23c9479e79b0
languageName: node
linkType: hard
"@npmcli/agent@npm:^4.0.0":
version: 4.0.0
resolution: "@npmcli/agent@npm:4.0.0"
dependencies:
agent-base: "npm:^7.1.0"
http-proxy-agent: "npm:^7.0.0"
https-proxy-agent: "npm:^7.0.1"
lru-cache: "npm:^11.2.1"
socks-proxy-agent: "npm:^8.0.3"
checksum: 10/1a81573becc60515031accc696e6405e9b894e65c12b98ef4aeee03b5617c41948633159dbf6caf5dde5b47367eeb749bdc7b7dfb21960930a9060a935c6f636
languageName: node
linkType: hard
"@npmcli/fs@npm:^5.0.0":
version: 5.0.0
resolution: "@npmcli/fs@npm:5.0.0"
dependencies:
semver: "npm:^7.3.5"
checksum: 10/4935c7719d17830d0f9fa46c50be17b2a3c945cec61760f6d0909bce47677c42e1810ca673305890f9e84f008ec4d8e841182f371e42100a8159d15f22249208
languageName: node
linkType: hard
"@secretlint/config-creator@npm:^10.2.2":
version: 10.2.2
resolution: "@secretlint/config-creator@npm:10.2.2"
dependencies:
"@secretlint/types": "npm:^10.2.2"
checksum: 10/678350d016bbfdf09c9911158eb739a0b80ef4244c8f791187c9dd120a7162fc50b4aa8d7a042c0c23b6259436ba59e1d9a7c68ece49d10eec0f54e42815858e
languageName: node
linkType: hard
"@secretlint/config-loader@npm:^10.2.2":
version: 10.2.2
resolution: "@secretlint/config-loader@npm:10.2.2"
dependencies:
"@secretlint/profiler": "npm:^10.2.2"
"@secretlint/resolver": "npm:^10.2.2"
"@secretlint/types": "npm:^10.2.2"
ajv: "npm:^8.17.1"
debug: "npm:^4.4.1"
rc-config-loader: "npm:^4.1.3"
checksum: 10/0a398b74c07c18f18594fbe20eb161425e34006e9b8aea9f304c18354433873d1ad99e95c76f493da7d2a378585492cfb5b281540444a04ff44b4eff8969912b
languageName: node
linkType: hard
"@secretlint/core@npm:^10.2.2":
version: 10.2.2
resolution: "@secretlint/core@npm:10.2.2"
dependencies:
"@secretlint/profiler": "npm:^10.2.2"
"@secretlint/types": "npm:^10.2.2"
debug: "npm:^4.4.1"
structured-source: "npm:^4.0.0"
checksum: 10/85b79388efba52742e8cf5579bd16f432a1c6c573ea0fd97e32d9f0f5d9b74264b55379723dc8eda09578cc66432a6461808ce91e3340226153a3a9eaf0b4ffe
languageName: node
linkType: hard
"@secretlint/formatter@npm:^10.2.2":
version: 10.2.2
resolution: "@secretlint/formatter@npm:10.2.2"
dependencies:
"@secretlint/resolver": "npm:^10.2.2"
"@secretlint/types": "npm:^10.2.2"
"@textlint/linter-formatter": "npm:^15.2.0"
"@textlint/module-interop": "npm:^15.2.0"
"@textlint/types": "npm:^15.2.0"
chalk: "npm:^5.4.1"
debug: "npm:^4.4.1"
pluralize: "npm:^8.0.0"
strip-ansi: "npm:^7.1.0"
table: "npm:^6.9.0"
terminal-link: "npm:^4.0.0"
checksum: 10/d237aad68a66c015626d9b9055dff1d522e3d1df93448c196bea6b18de8f252a84e323d285acc5199f6b9252d145f487adc27850703307b134a37c92f32be77b
languageName: node
linkType: hard
"@secretlint/node@npm:^10.1.2, @secretlint/node@npm:^10.2.2":
version: 10.2.2
resolution: "@secretlint/node@npm:10.2.2"
dependencies:
"@secretlint/config-loader": "npm:^10.2.2"
"@secretlint/core": "npm:^10.2.2"
"@secretlint/formatter": "npm:^10.2.2"
"@secretlint/profiler": "npm:^10.2.2"
"@secretlint/source-creator": "npm:^10.2.2"
"@secretlint/types": "npm:^10.2.2"
debug: "npm:^4.4.1"
p-map: "npm:^7.0.3"
checksum: 10/3c64b916b2105f983045298519a4cc7b6aa7a28bf5ae30870aeef910f74c0cc74acb3fd7480551be1c758ffaadc70cac5a2563c69edad7a561c203a6d2c08f13
languageName: node
linkType: hard
"@secretlint/profiler@npm:^10.2.2":
version: 10.2.2
resolution: "@secretlint/profiler@npm:10.2.2"
checksum: 10/7010912291a0df8bac3a2cbf8b290eafe5df5d22d18ab74412f4f074a135b97157bdbf2fa89c2da52a8f154014d69077825c25e43eb1c84bff96947efbcf0f3f
languageName: node
linkType: hard
"@secretlint/resolver@npm:^10.2.2":
version: 10.2.2
resolution: "@secretlint/resolver@npm:10.2.2"
checksum: 10/2853edac30e82833429aed92b7a2754b1f67c142a2612362231d75cc338b5be8412d863a78e6ffe3f3872077251ef2952fdb1cbb44f8140d1ed07ad650a9b006
languageName: node
linkType: hard
"@secretlint/secretlint-formatter-sarif@npm:^10.1.2":
version: 10.2.2
resolution: "@secretlint/secretlint-formatter-sarif@npm:10.2.2"
dependencies:
node-sarif-builder: "npm:^3.2.0"
checksum: 10/69abbde342eb2ad4a570cc42bde2cee0b6a869e1b55178589fb870d90d2877e5acb5404008edbce239c450c5efcfb02d19c0990daacb92dc3f8533179bf37f30
languageName: node
linkType: hard
"@secretlint/secretlint-rule-no-dotenv@npm:^10.1.2":
version: 10.2.2
resolution: "@secretlint/secretlint-rule-no-dotenv@npm:10.2.2"
dependencies:
"@secretlint/types": "npm:^10.2.2"
checksum: 10/aa5030b770c8c2d6406f636286eb4e325cef50697a3bf43aa04037809e038df7c4dd94bfb05aec3a65ccc290ead0df34583b80b240a56ff0590b894a253ea801
languageName: node
linkType: hard
"@secretlint/secretlint-rule-preset-recommend@npm:^10.1.2":
version: 10.2.2
resolution: "@secretlint/secretlint-rule-preset-recommend@npm:10.2.2"
checksum: 10/12df84235a838973553159db1d79c68cde6b30cd1fdf6aa5ef5663d42871004b0bbbe2385564f910885b684bd0cf206c7d7cf85cdbb7c718263a9f21caa45eb9
languageName: node
linkType: hard
"@secretlint/source-creator@npm:^10.2.2":
version: 10.2.2
resolution: "@secretlint/source-creator@npm:10.2.2"
dependencies:
"@secretlint/types": "npm:^10.2.2"
istextorbinary: "npm:^9.5.0"
checksum: 10/b6b9fe24a75701328dc8ea0bc37626f055041b0168cee5f0b941808ea719dcc9926355b9785f9fb6eb0bf7492d6136b47c6f8ed3806c211457baf589adccc24c
languageName: node
linkType: hard
"@secretlint/types@npm:^10.2.2":
version: 10.2.2
resolution: "@secretlint/types@npm:10.2.2"
checksum: 10/84bd717e0cbf78c5e3f8c7d3f76f78a550a083129edcbec7afa21ca0c1a2011604c14f1973e230f52c8ceb54da9c4436ac2050369a06ee372543c202b05de6a3
languageName: node
linkType: hard
"@sindresorhus/merge-streams@npm:^2.1.0":
version: 2.3.0
resolution: "@sindresorhus/merge-streams@npm:2.3.0"
checksum: 10/798bcb53cd1ace9df84fcdd1ba86afdc9e0cd84f5758d26ae9b1eefd8e8887e5fc30051132b9e74daf01bb41fa5a2faf1369361f83d76a3b3d7ee938058fd71c
languageName: node
linkType: hard
"@stylistic/eslint-plugin@npm:^2.11.0":
version: 2.11.0
resolution: "@stylistic/eslint-plugin@npm:2.11.0"
dependencies:
"@typescript-eslint/utils": "npm:^8.13.0"
eslint-visitor-keys: "npm:^4.2.0"
espree: "npm:^10.3.0"
estraverse: "npm:^5.3.0"
picomatch: "npm:^4.0.2"
peerDependencies:
eslint: ">=8.40.0"
checksum: 10/b39b22465d5d92e2e645fdd8c771617536047106343fe00af5b551698da5f569c6c8b32a7f6abf2c727b0ebd942e4667b60fea46e520392784d4976062da697d
languageName: node
linkType: hard
"@textlint/ast-node-types@npm:15.5.0":
version: 15.5.0
resolution: "@textlint/ast-node-types@npm:15.5.0"
checksum: 10/e2013f9d38100d74a71d08198a7175a90c487bdecc4074599bd22714a72a77f00c9736706e6a70ffe040d17f6533f30fd5a2a6c41e10e120566376b8028ec48b
languageName: node
linkType: hard
"@textlint/linter-formatter@npm:^15.2.0":
version: 15.5.0
resolution: "@textlint/linter-formatter@npm:15.5.0"
dependencies:
"@azu/format-text": "npm:^1.0.2"
"@azu/style-format": "npm:^1.0.1"
"@textlint/module-interop": "npm:15.5.0"
"@textlint/resolver": "npm:15.5.0"
"@textlint/types": "npm:15.5.0"
chalk: "npm:^4.1.2"
debug: "npm:^4.4.3"
js-yaml: "npm:^4.1.1"
lodash: "npm:^4.17.21"
pluralize: "npm:^2.0.0"
string-width: "npm:^4.2.3"
strip-ansi: "npm:^6.0.1"
table: "npm:^6.9.0"
text-table: "npm:^0.2.0"
checksum: 10/8604b044e4fcb84598c6b4b1d32ea255a059f063652e65ade9b2ad354531b809a0c94587c6de2271b3a6cd8516bb418a3969a748b3ec47d466a299e7677eff5f
languageName: node
linkType: hard
"@textlint/module-interop@npm:15.5.0, @textlint/module-interop@npm:^15.2.0":
version: 15.5.0
resolution: "@textlint/module-interop@npm:15.5.0"
checksum: 10/da04690e208cc973556c09f68a9e52a474e46caacb2b911a56a8447107f26896a827d891222b10127982dedc35fa0889d429c5f2171284ca41bae97c675958af
languageName: node
linkType: hard
"@textlint/resolver@npm:15.5.0":
version: 15.5.0
resolution: "@textlint/resolver@npm:15.5.0"
checksum: 10/5499863f59286eca85414daa343c491472793d183fe3862c69893cd5c8a1522751b7fe505234669603cb6363ce779b25f022509f659e16f03812e6ae80b7c0fe
languageName: node
linkType: hard
"@textlint/types@npm:15.5.0, @textlint/types@npm:^15.2.0":
version: 15.5.0
resolution: "@textlint/types@npm:15.5.0"
dependencies:
"@textlint/ast-node-types": "npm:15.5.0"
checksum: 10/f06189cca74206c276151512c6ef6f39487df797a71c2dbd41cbbd03cc06e0019663ea09150820abfaad49438ef81501c0d2577d1c1ca5589c51a5d334bdb1db
languageName: node
linkType: hard
"@tybys/wasm-util@npm:^0.9.0":
version: 0.9.0
resolution: "@tybys/wasm-util@npm:0.9.0"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10/aa58e64753a420ad1eefaf7bacef3dda61d74f9336925943d9244132d5b48d9242f734f1e707fd5ccfa6dd1d8ec8e6debc234b4dedb3a5b0d8486d1f373350b2
languageName: node
linkType: hard
"@types/ci-info@npm:*":
version: 2.0.0
resolution: "@types/ci-info@npm:2.0.0"
checksum: 10/d3de962aea7d19e138fb0fbe1d22bc784b04e04e8a530148ea0e4e9694d5d1bcc83e8fcc0864a937e669c71a217294289cc11c2b6f8e6cfb2baf0fbce530013b
languageName: node
linkType: hard
"@types/estree@npm:^1.0.6":
version: 1.0.6
resolution: "@types/estree@npm:1.0.6"
checksum: 10/9d35d475095199c23e05b431bcdd1f6fec7380612aed068b14b2a08aa70494de8a9026765a5a91b1073f636fb0368f6d8973f518a31391d519e20c59388ed88d
languageName: node
linkType: hard
"@types/follow-redirects@npm:^1.13.1":
version: 1.14.4
resolution: "@types/follow-redirects@npm:1.14.4"
dependencies:
"@types/node": "npm:*"
checksum: 10/bbf83961176957109dd92d350c2045a8550647886b78770a731b6e54cf97279c9ef21a55d6ee075243012ed3a4fab03cb5b184866cb975509f83de456a5b670a
languageName: node
linkType: hard
"@types/is-ci@npm:^2.0.0":
version: 2.0.0
resolution: "@types/is-ci@npm:2.0.0"
dependencies:
"@types/ci-info": "npm:*"
checksum: 10/bfb71fd8c0416c0106199fa9ae84f1d9586f95a8379bbc7f461a14a05d8f45cea18d7261fc78db8a041643c451a6e772dcf5c718186939a748db0abc86c36d43
languageName: node
linkType: hard
"@types/json-schema@npm:^7.0.15":
version: 7.0.15
resolution: "@types/json-schema@npm:7.0.15"
checksum: 10/1a3c3e06236e4c4aab89499c428d585527ce50c24fe8259e8b3926d3df4cfbbbcf306cfc73ddfb66cbafc973116efd15967020b0f738f63e09e64c7d260519e7
languageName: node
linkType: hard
"@types/node@npm:*":
version: 20.11.30
resolution: "@types/node@npm:20.11.30"
dependencies:
undici-types: "npm:~5.26.4"
checksum: 10/78515bc768d2b878e2e06a1c20eb4f5840072b79b8d28ff3dd0a7feaaf48fd3a2ac03cfa5bc7564da82db5906b43e9ba0e5df9f43d870b7aae2942306e208815
languageName: node
linkType: hard
"@types/node@npm:^20.14.8":
version: 20.16.7
resolution: "@types/node@npm:20.16.7"
dependencies:
undici-types: "npm:~6.19.2"
checksum: 10/931d6689af8d02b578a1490475df025063ca1f1c7c064ce891f7ac4da38f28bfda949e79569ac49cb5cf492b2caf91d31aecda6a4efc099e4af4be42ae7315e5
languageName: node
linkType: hard
"@types/normalize-package-data@npm:^2.4.3":
version: 2.4.4
resolution: "@types/normalize-package-data@npm:2.4.4"
checksum: 10/65dff72b543997b7be8b0265eca7ace0e34b75c3e5fee31de11179d08fa7124a7a5587265d53d0409532ecb7f7fba662c2012807963e1f9b059653ec2c83ee05
languageName: node
linkType: hard
"@types/sarif@npm:^2.1.7":
version: 2.1.7
resolution: "@types/sarif@npm:2.1.7"
checksum: 10/0901acef0b77b7c9eaacd6827796cda9c124cc7b871aa6f91de6ec8869fbc699c6d5c510d61f9e6b1c312ea668aa33f08d81cdd2bd55c462bbbe323a5e4c8c5e
languageName: node
linkType: hard
"@types/semver@npm:^7.5.8":
version: 7.5.8
resolution: "@types/semver@npm:7.5.8"
checksum: 10/3496808818ddb36deabfe4974fd343a78101fa242c4690044ccdc3b95dcf8785b494f5d628f2f47f38a702f8db9c53c67f47d7818f2be1b79f2efb09692e1178
languageName: node
linkType: hard
"@types/tmp@npm:^0.2.2":
version: 0.2.6
resolution: "@types/tmp@npm:0.2.6"
checksum: 10/e14a094c10569d3b56805552b21417860ef21060d969000d5d5b53604a78c2bdac216f064b03797d4b07a081e0141dd3ab22bc36923e75300eb1c023f7252cc7
languageName: node
linkType: hard
"@types/yauzl-promise@npm:^4":
version: 4.0.1
resolution: "@types/yauzl-promise@npm:4.0.1"
dependencies:
"@types/node": "npm:*"
checksum: 10/9b3b65c51878a82f2775d6b1f106b72495355af9ef28e2211dca2bab4c6a0d25f3bf91f5176b8b9e8bc6f1259c4c7f3b800d3e88df01c4cd9f94e5493ac3b27e
languageName: node
linkType: hard
"@typescript-eslint/eslint-plugin@npm:^8.15.0":
version: 8.15.0
resolution: "@typescript-eslint/eslint-plugin@npm:8.15.0"
dependencies:
"@eslint-community/regexpp": "npm:^4.10.0"
"@typescript-eslint/scope-manager": "npm:8.15.0"
"@typescript-eslint/type-utils": "npm:8.15.0"
"@typescript-eslint/utils": "npm:8.15.0"
"@typescript-eslint/visitor-keys": "npm:8.15.0"
graphemer: "npm:^1.4.0"
ignore: "npm:^5.3.1"
natural-compare: "npm:^1.4.0"
ts-api-utils: "npm:^1.3.0"
peerDependencies:
"@typescript-eslint/parser": ^8.0.0 || ^8.0.0-alpha.0
eslint: ^8.57.0 || ^9.0.0
peerDependenciesMeta:
typescript:
optional: true
checksum: 10/881a6ff3bb38e731027fa223c3cc38a29ffe32502f294b69f5e8099e7a678bab76845a2dfd4ab4d2f301c0f433e9c5e220ea5c8f13f91a508b00b997aaf3e4ed
languageName: node
linkType: hard
"@typescript-eslint/parser@npm:^8.15.0":
version: 8.15.0
resolution: "@typescript-eslint/parser@npm:8.15.0"
dependencies:
"@typescript-eslint/scope-manager": "npm:8.15.0"
"@typescript-eslint/types": "npm:8.15.0"
"@typescript-eslint/typescript-estree": "npm:8.15.0"
"@typescript-eslint/visitor-keys": "npm:8.15.0"
debug: "npm:^4.3.4"
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
peerDependenciesMeta:
typescript:
optional: true
checksum: 10/2261cb63f561db8a613edc2307e9ef3826754b3d6876de076aa768f63bbf5428fb939ce1f050fd7f8512fecca15e7a70ee4f09e0aab9030737ea38a7bc37a4be
languageName: node
linkType: hard
"@typescript-eslint/scope-manager@npm:8.15.0":
version: 8.15.0
resolution: "@typescript-eslint/scope-manager@npm:8.15.0"
dependencies:
"@typescript-eslint/types": "npm:8.15.0"
"@typescript-eslint/visitor-keys": "npm:8.15.0"
checksum: 10/70abd5f049c5568a1b33391d85b5842ffae513f5b2bb5630bd26619a50e41ea5e6b620970958f94e0129ffff9ab69997f396f782195923aa45dfbb2df0941a14
languageName: node
linkType: hard
"@typescript-eslint/type-utils@npm:8.15.0":
version: 8.15.0
resolution: "@typescript-eslint/type-utils@npm:8.15.0"
dependencies:
"@typescript-eslint/typescript-estree": "npm:8.15.0"
"@typescript-eslint/utils": "npm:8.15.0"
debug: "npm:^4.3.4"
ts-api-utils: "npm:^1.3.0"
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
peerDependenciesMeta:
typescript:
optional: true
checksum: 10/612f0499f7ee89bd8b70531daba1edd343648def2284c414684db9b7636f4beba7c995e05fe8222c5e63f4dd78fdcbb7bcd8453c2c6f376bc73731fa511a5b0f
languageName: node
linkType: hard
"@typescript-eslint/types@npm:8.15.0":
version: 8.15.0
resolution: "@typescript-eslint/types@npm:8.15.0"
checksum: 10/d31605748984794e586ed62e9052bd3794ba646ae75f60b9da5de644ad0e76aa64e47386a4e113ba2d66836927e03c836586ef586261c8ae627acc06fb7e275c
languageName: node
linkType: hard
"@typescript-eslint/typescript-estree@npm:8.15.0":
version: 8.15.0
resolution: "@typescript-eslint/typescript-estree@npm:8.15.0"
dependencies:
"@typescript-eslint/types": "npm:8.15.0"
"@typescript-eslint/visitor-keys": "npm:8.15.0"
debug: "npm:^4.3.4"
fast-glob: "npm:^3.3.2"
is-glob: "npm:^4.0.3"
minimatch: "npm:^9.0.4"
semver: "npm:^7.6.0"
ts-api-utils: "npm:^1.3.0"
peerDependenciesMeta:
typescript:
optional: true
checksum: 10/e9bf3aab855578f046e0a91ff91a7d08423a5c8bc0bedfc5f2af3c9b6eb98a9fe693a23e4bf56791930e838de16811ce91edae07702c9621c0ad7a56838c7c0c
languageName: node
linkType: hard
"@typescript-eslint/utils@npm:8.15.0, @typescript-eslint/utils@npm:^8.13.0":
version: 8.15.0
resolution: "@typescript-eslint/utils@npm:8.15.0"
dependencies:
"@eslint-community/eslint-utils": "npm:^4.4.0"
"@typescript-eslint/scope-manager": "npm:8.15.0"