-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyarn.lock
9087 lines (8144 loc) · 317 KB
/
yarn.lock
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: 6eebd12a5cd03cee38fcb915ef9f4ea557df6a06f642dfc7fe8eb4839eb5c9ca55a382f3604d52c14200b0c214c12af5e1f23d2a6d8e23ef2d016b105a9d6c0a
languageName: node
linkType: hard
"@ampproject/remapping@npm:^2.2.1":
version: 2.2.1
resolution: "@ampproject/remapping@npm:2.2.1"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.0"
"@jridgewell/trace-mapping": "npm:^0.3.9"
checksum: e15fecbf3b54c988c8b4fdea8ef514ab482537e8a080b2978cc4b47ccca7140577ca7b65ad3322dcce65bc73ee6e5b90cbfe0bbd8c766dad04d5c62ec9634c42
languageName: node
linkType: hard
"@andrewbranch/untar.js@npm:^1.0.0":
version: 1.0.2
resolution: "@andrewbranch/untar.js@npm:1.0.2"
checksum: 9a962528f5ddb3f88947fe85f2667a3f638e260d3f724bc4955f2e20db2806d84294e9091fdb8c2bfc08f6e0cc028218a737d605260b8e0678393ebc136406c4
languageName: node
linkType: hard
"@arethetypeswrong/cli@npm:0.10.1":
version: 0.10.1
resolution: "@arethetypeswrong/cli@npm:0.10.1"
dependencies:
"@arethetypeswrong/core": "npm:0.10.1"
chalk: "npm:^4.1.2"
cli-table3: "npm:^0.6.3"
commander: "npm:^10.0.1"
marked: "npm:^5.1.0"
marked-terminal: "npm:^5.2.0"
node-fetch: "npm:^2.6.4"
bin:
attw: dist/index.js
checksum: f230166172c7b839eacac8c1fdf4a60d1564586704d19da8e31253623f9ce9fd1742a9255d8150490dfec591b71e78cc5a450874ee86485105f74ca231ea3208
languageName: node
linkType: hard
"@arethetypeswrong/core@npm:0.10.1":
version: 0.10.1
resolution: "@arethetypeswrong/core@npm:0.10.1"
dependencies:
"@andrewbranch/untar.js": "npm:^1.0.0"
fetch-ponyfill: "npm:^7.1.0"
fflate: "npm:^0.7.4"
semver: "npm:^7.5.4"
typescript: "npm:^5.2.2"
validate-npm-package-name: "npm:^5.0.0"
checksum: fdcd907523c486ce58a92215885606246af0468d50bfec9cfbe6fce125094c1361d95b53b8142d277b80adf1d14228317256621ba3066ed20ed498b1cab1e0d7
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0":
version: 7.22.13
resolution: "@babel/code-frame@npm:7.22.13"
dependencies:
"@babel/highlight": "npm:^7.22.13"
chalk: "npm:^2.4.2"
checksum: bf6ae6ba3a510adfda6a211b4a89b0f1c98ca1352b745c077d113f3b568141e0d44ce750b9ac2a80143ba5c8c4080c50fcfc1aa11d86e194ea6785f62520eb5a
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.22.5":
version: 7.22.15
resolution: "@babel/helper-validator-identifier@npm:7.22.15"
checksum: 4c142549ab5a1235c638d89b52b612a32a123ae19b7da70708385b1e2522530b3c90c85e38604dc6a5fee6a7928b447edacd55176f48a70e103d232eb0da31e5
languageName: node
linkType: hard
"@babel/highlight@npm:^7.22.13":
version: 7.22.13
resolution: "@babel/highlight@npm:7.22.13"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.22.5"
chalk: "npm:^2.4.2"
js-tokens: "npm:^4.0.0"
checksum: cb6053267f6485c7e315bad437829d8e9e6df5d29d02c23318199f45b4ac8bf256ed41d70445314041e51fad446a511017b8e6a140993cd2edd748c39bf8d351
languageName: node
linkType: hard
"@bcoe/v8-coverage@npm:^0.2.3":
version: 0.2.3
resolution: "@bcoe/v8-coverage@npm:0.2.3"
checksum: 1a1f0e356a3bb30b5f1ced6f79c413e6ebacf130421f15fac5fcd8be5ddf98aedb4404d7f5624e3285b700e041f9ef938321f3ca4d359d5b716f96afa120d88d
languageName: node
linkType: hard
"@colors/colors@npm:1.5.0":
version: 1.5.0
resolution: "@colors/colors@npm:1.5.0"
checksum: 9d226461c1e91e95f067be2bdc5e6f99cfe55a721f45afb44122e23e4b8602eeac4ff7325af6b5a369f36396ee1514d3809af3f57769066d80d83790d8e53339
languageName: node
linkType: hard
"@commitlint/cli@npm:17.7.1":
version: 17.7.1
resolution: "@commitlint/cli@npm:17.7.1"
dependencies:
"@commitlint/format": "npm:^17.4.4"
"@commitlint/lint": "npm:^17.7.0"
"@commitlint/load": "npm:^17.7.1"
"@commitlint/read": "npm:^17.5.1"
"@commitlint/types": "npm:^17.4.4"
execa: "npm:^5.0.0"
lodash.isfunction: "npm:^3.0.9"
resolve-from: "npm:5.0.0"
resolve-global: "npm:1.0.0"
yargs: "npm:^17.0.0"
bin:
commitlint: cli.js
checksum: 163e4b9f7ff3ccd7e15efac6993924a72fe660979accc04c86ba5de813a6725095a087c172306d957d1f3fa21718499ab9caae9342f0bdfd854bf8bd47135dd7
languageName: node
linkType: hard
"@commitlint/config-validator@npm:^17.6.7":
version: 17.6.7
resolution: "@commitlint/config-validator@npm:17.6.7"
dependencies:
"@commitlint/types": "npm:^17.4.4"
ajv: "npm:^8.11.0"
checksum: e13e512ce9dc788f7ce1c84faf4d2e2d4d3b7c4dc18a7982ecbfc33faa5fe977793efdb868e228061d34ea8825cbbed5fc9e8e69fd5e4f0c0c08f60e21a9214e
languageName: node
linkType: hard
"@commitlint/ensure@npm:^17.6.7":
version: 17.6.7
resolution: "@commitlint/ensure@npm:17.6.7"
dependencies:
"@commitlint/types": "npm:^17.4.4"
lodash.camelcase: "npm:^4.3.0"
lodash.kebabcase: "npm:^4.1.1"
lodash.snakecase: "npm:^4.1.1"
lodash.startcase: "npm:^4.4.0"
lodash.upperfirst: "npm:^4.3.1"
checksum: 1ffdce807dbb303e8fa215511a965375abeea2702f64b4f1c4d7823f1e231cb343e82c97633d12d3c89b4f71d2eaf28169db08b4f1d3b052c26c942f4b9d9380
languageName: node
linkType: hard
"@commitlint/execute-rule@npm:^17.4.0":
version: 17.4.0
resolution: "@commitlint/execute-rule@npm:17.4.0"
checksum: 17d8e56ab00bd45fdecb0ed33186d2020ce261250d6a516204b6509610b75af8c930e7226b1111af3de298db32a7e4d0ba2c9cc7ed67db5ba5159eeed634f067
languageName: node
linkType: hard
"@commitlint/format@npm:^17.4.4":
version: 17.4.4
resolution: "@commitlint/format@npm:17.4.4"
dependencies:
"@commitlint/types": "npm:^17.4.4"
chalk: "npm:^4.1.0"
checksum: 832d9641129f2da8d32389b4a47db59d41eb1adfab742723972cad64b833c4af9e253f96757b27664fedae61644dd4c01d21f775773b45b604bd7f93b23a27d2
languageName: node
linkType: hard
"@commitlint/is-ignored@npm:^17.7.0":
version: 17.7.0
resolution: "@commitlint/is-ignored@npm:17.7.0"
dependencies:
"@commitlint/types": "npm:^17.4.4"
semver: "npm:7.5.4"
checksum: aa0b695d6e7bee5e732f96a2ff383347ff476eb48f9d3b4ed75b098cafa27e56da15563833d3cf4e1268fc26819180cd8b5bdc322b087073a63bc94f699944b2
languageName: node
linkType: hard
"@commitlint/lint@npm:^17.7.0":
version: 17.7.0
resolution: "@commitlint/lint@npm:17.7.0"
dependencies:
"@commitlint/is-ignored": "npm:^17.7.0"
"@commitlint/parse": "npm:^17.7.0"
"@commitlint/rules": "npm:^17.7.0"
"@commitlint/types": "npm:^17.4.4"
checksum: 922b644584a0e69e4d8fdde863b4d11d068d42cacaf7121f748041928aba5200154f16986ff512f83bef6f65855b0aff7c8e3e83457898614cc3ac5596e2a487
languageName: node
linkType: hard
"@commitlint/load@npm:^17.7.1":
version: 17.7.1
resolution: "@commitlint/load@npm:17.7.1"
dependencies:
"@commitlint/config-validator": "npm:^17.6.7"
"@commitlint/execute-rule": "npm:^17.4.0"
"@commitlint/resolve-extends": "npm:^17.6.7"
"@commitlint/types": "npm:^17.4.4"
"@types/node": "npm:20.4.7"
chalk: "npm:^4.1.0"
cosmiconfig: "npm:^8.0.0"
cosmiconfig-typescript-loader: "npm:^4.0.0"
lodash.isplainobject: "npm:^4.0.6"
lodash.merge: "npm:^4.6.2"
lodash.uniq: "npm:^4.5.0"
resolve-from: "npm:^5.0.0"
ts-node: "npm:^10.8.1"
typescript: "npm:^4.6.4 || ^5.0.0"
checksum: 8d0e56b49a0e4dec7e8e28a2c6bc7ce985e6b8e10274aa20d0e3f6c2465fc9082d18f91bbe5c336594ebabcc4dc9668fdeaa039ef5bbfaf26ca0be423461ef61
languageName: node
linkType: hard
"@commitlint/message@npm:^17.4.2":
version: 17.4.2
resolution: "@commitlint/message@npm:17.4.2"
checksum: 55b6cfeb57f7c9f913e18821aa4d972a6b6faa78c62741390996151f99554396f6df68ccfee86c163d24d8c27a4dbbcb50ef03c2972ab0a7a21d89daa2f9a519
languageName: node
linkType: hard
"@commitlint/parse@npm:^17.7.0":
version: 17.7.0
resolution: "@commitlint/parse@npm:17.7.0"
dependencies:
"@commitlint/types": "npm:^17.4.4"
conventional-changelog-angular: "npm:^6.0.0"
conventional-commits-parser: "npm:^4.0.0"
checksum: d70d53932576fa30c078099fe9ab00190298ed6aec696648633ab16eb80386e0c1b407c44eb7c548b598573c260ed1bfa890dd8134166d28811f66ed436efbea
languageName: node
linkType: hard
"@commitlint/read@npm:^17.5.1":
version: 17.5.1
resolution: "@commitlint/read@npm:17.5.1"
dependencies:
"@commitlint/top-level": "npm:^17.4.0"
"@commitlint/types": "npm:^17.4.4"
fs-extra: "npm:^11.0.0"
git-raw-commits: "npm:^2.0.11"
minimist: "npm:^1.2.6"
checksum: 62ee4f7a47b22a8571ae313bca36b418805a248f4986557f38f06317c44b6d18072889f95e7bc22bbb33a2f2b08236f74596ff28e3dbd0894249477a9df367c3
languageName: node
linkType: hard
"@commitlint/resolve-extends@npm:^17.6.7":
version: 17.6.7
resolution: "@commitlint/resolve-extends@npm:17.6.7"
dependencies:
"@commitlint/config-validator": "npm:^17.6.7"
"@commitlint/types": "npm:^17.4.4"
import-fresh: "npm:^3.0.0"
lodash.mergewith: "npm:^4.6.2"
resolve-from: "npm:^5.0.0"
resolve-global: "npm:^1.0.0"
checksum: 3717b4ccef6e46136f8d4a4b8d78d57184b4331401db07e27f89acb049a3903035bb2b0dbd4c07e3cdcc402cbe693b365c244a0da3df47e0f74cbf3ba76be9ec
languageName: node
linkType: hard
"@commitlint/rules@npm:^17.7.0":
version: 17.7.0
resolution: "@commitlint/rules@npm:17.7.0"
dependencies:
"@commitlint/ensure": "npm:^17.6.7"
"@commitlint/message": "npm:^17.4.2"
"@commitlint/to-lines": "npm:^17.4.0"
"@commitlint/types": "npm:^17.4.4"
execa: "npm:^5.0.0"
checksum: bc6af55cb8fab82baac450f87e02fa51d91f44855aadced92d74d05f9af99ccfd90b08c67355b53ca6b4b45f386854bcf52e1a4e5bc003665f4873e785eb7c70
languageName: node
linkType: hard
"@commitlint/to-lines@npm:^17.4.0":
version: 17.4.0
resolution: "@commitlint/to-lines@npm:17.4.0"
checksum: 841f90f606238e145ab4ba02940662d511fc04fe553619900152a8542170fe664031b95d820ffaeb8864d4851344278e662ef29637d763fc19fd828e0f8d139b
languageName: node
linkType: hard
"@commitlint/top-level@npm:^17.4.0":
version: 17.4.0
resolution: "@commitlint/top-level@npm:17.4.0"
dependencies:
find-up: "npm:^5.0.0"
checksum: 14cd77e982d2dd7989718dafdbf7a2168a5fb387005e0686c2dfa9ffc36bb9a749e5d80a151884459e4d8c88564339688dca26e9c711abe043beeb3f30c3dfd6
languageName: node
linkType: hard
"@commitlint/types@npm:17.4.4, @commitlint/types@npm:^17.4.4":
version: 17.4.4
resolution: "@commitlint/types@npm:17.4.4"
dependencies:
chalk: "npm:^4.1.0"
checksum: 03c52429052d161710896d198000196bd2e60be0fd71459b22133dd83dee43e8d05ea8ee703c8369823bc40f77a54881b80d8aa4368ac52aea7f30fb234b73d2
languageName: node
linkType: hard
"@cspell/cspell-bundled-dicts@npm:7.0.1":
version: 7.0.1
resolution: "@cspell/cspell-bundled-dicts@npm:7.0.1"
dependencies:
"@cspell/dict-ada": "npm:^4.0.2"
"@cspell/dict-aws": "npm:^4.0.0"
"@cspell/dict-bash": "npm:^4.1.1"
"@cspell/dict-companies": "npm:^3.0.20"
"@cspell/dict-cpp": "npm:^5.0.4"
"@cspell/dict-cryptocurrencies": "npm:^3.0.1"
"@cspell/dict-csharp": "npm:^4.0.2"
"@cspell/dict-css": "npm:^4.0.6"
"@cspell/dict-dart": "npm:^2.0.3"
"@cspell/dict-django": "npm:^4.1.0"
"@cspell/dict-docker": "npm:^1.1.7"
"@cspell/dict-dotnet": "npm:^5.0.0"
"@cspell/dict-elixir": "npm:^4.0.3"
"@cspell/dict-en-common-misspellings": "npm:^1.0.2"
"@cspell/dict-en-gb": "npm:1.1.33"
"@cspell/dict-en_us": "npm:^4.3.6"
"@cspell/dict-filetypes": "npm:^3.0.1"
"@cspell/dict-fonts": "npm:^4.0.0"
"@cspell/dict-fsharp": "npm:^1.0.0"
"@cspell/dict-fullstack": "npm:^3.1.5"
"@cspell/dict-gaming-terms": "npm:^1.0.4"
"@cspell/dict-git": "npm:^2.0.0"
"@cspell/dict-golang": "npm:^6.0.2"
"@cspell/dict-haskell": "npm:^4.0.1"
"@cspell/dict-html": "npm:^4.0.3"
"@cspell/dict-html-symbol-entities": "npm:^4.0.0"
"@cspell/dict-java": "npm:^5.0.5"
"@cspell/dict-k8s": "npm:^1.0.1"
"@cspell/dict-latex": "npm:^4.0.0"
"@cspell/dict-lorem-ipsum": "npm:^4.0.0"
"@cspell/dict-lua": "npm:^4.0.1"
"@cspell/dict-node": "npm:^4.0.2"
"@cspell/dict-npm": "npm:^5.0.8"
"@cspell/dict-php": "npm:^4.0.2"
"@cspell/dict-powershell": "npm:^5.0.2"
"@cspell/dict-public-licenses": "npm:^2.0.3"
"@cspell/dict-python": "npm:^4.1.6"
"@cspell/dict-r": "npm:^2.0.1"
"@cspell/dict-ruby": "npm:^5.0.0"
"@cspell/dict-rust": "npm:^4.0.1"
"@cspell/dict-scala": "npm:^5.0.0"
"@cspell/dict-software-terms": "npm:^3.2.1"
"@cspell/dict-sql": "npm:^2.1.1"
"@cspell/dict-svelte": "npm:^1.0.2"
"@cspell/dict-swift": "npm:^2.0.1"
"@cspell/dict-typescript": "npm:^3.1.1"
"@cspell/dict-vue": "npm:^3.0.0"
checksum: a8de3cd6d282f78e5be3683755ccd711121713bfbc6ec6cbcedea4f41d88d544e78fc26599d8f1014a6236e391dcf23915bf0295988b33e7b1c13ef934e1f408
languageName: node
linkType: hard
"@cspell/cspell-json-reporter@npm:7.0.1":
version: 7.0.1
resolution: "@cspell/cspell-json-reporter@npm:7.0.1"
dependencies:
"@cspell/cspell-types": "npm:7.0.1"
checksum: 69b20f6f49dfb7513ca0cd80791418978ef04d1146a161f8f0e9791dac90fddad6d729cc0aef59ac5b8a0c413ff929c59a7952ac03f977864bb184c085183435
languageName: node
linkType: hard
"@cspell/cspell-pipe@npm:7.0.1":
version: 7.0.1
resolution: "@cspell/cspell-pipe@npm:7.0.1"
checksum: c4265f18fcd5b3afe312dae6ab2d15b811e3c83269d51fbc6a87e0d4137d4e37af0ab332de720cf9e0c7ca0272d8487b728ccbdef375c633f78834ce6d0fd572
languageName: node
linkType: hard
"@cspell/cspell-resolver@npm:7.0.1":
version: 7.0.1
resolution: "@cspell/cspell-resolver@npm:7.0.1"
dependencies:
global-dirs: "npm:^3.0.1"
checksum: c29f814808906e837ad8dfac87a38a13c76740e7fa8ed17208cd7a1f6b5c75c7a70ceccad2786ae7162358cb35433f7f59c384b966587dbbaef294dd280b27b0
languageName: node
linkType: hard
"@cspell/cspell-service-bus@npm:7.0.1":
version: 7.0.1
resolution: "@cspell/cspell-service-bus@npm:7.0.1"
checksum: 0ed5cb88cc866789a8f20792c23d9596d825dfea77d1701e809a423726bf25cae6289d49507c675c676f444b91e61ac1f1e21b673c1a2159f2c4f0ce05023a00
languageName: node
linkType: hard
"@cspell/cspell-types@npm:7.0.1":
version: 7.0.1
resolution: "@cspell/cspell-types@npm:7.0.1"
checksum: b1f3cb03dff73f36b05167540aa0e29ab79d97ac56a7cd4665a5f86d3180e9deacec55f093f611f6b13e70b9d64c675e35a06e22825b8f2ad488de7a570a2fec
languageName: node
linkType: hard
"@cspell/dict-ada@npm:^4.0.2":
version: 4.0.2
resolution: "@cspell/dict-ada@npm:4.0.2"
checksum: 31b0f0f6b9b324e8d3be4074302ddc9a7e968833d79c0a9f7899de9138b386bd6dcad3f63afdb1d42e87838bba5881c7b7f2b0916621fb1e64c7fdb6a572afe5
languageName: node
linkType: hard
"@cspell/dict-aws@npm:^4.0.0":
version: 4.0.0
resolution: "@cspell/dict-aws@npm:4.0.0"
checksum: d1df39eb1a434c2639a941962894a822173c30d102dc27498b08c09cb3f71fc01375f798d3fcb15678768b4344255281cbc9a1697d55fccf12b01ff694e5f4c2
languageName: node
linkType: hard
"@cspell/dict-bash@npm:^4.1.1":
version: 4.1.1
resolution: "@cspell/dict-bash@npm:4.1.1"
checksum: 5b6fbb597c53fa6b9957213aa77688c6e0231f8d59eed02f0eecda456f3606855fc0f4c0c5121a909e9055c164de83e3f151b32a9abd1ccd4a161634ffee6691
languageName: node
linkType: hard
"@cspell/dict-companies@npm:^3.0.20":
version: 3.0.20
resolution: "@cspell/dict-companies@npm:3.0.20"
checksum: 3996b2d4bc9b11f58334ad7a496f78b2cba5413a0089894801ed7cebed96c3717938c430bdfbe118e08903d0eb6d362cf95f269dcadd2514594945461e56d901
languageName: node
linkType: hard
"@cspell/dict-cpp@npm:^5.0.4":
version: 5.0.4
resolution: "@cspell/dict-cpp@npm:5.0.4"
checksum: 11e69ca6d67c5f8bef863b9f86445c67a635501bb4d648bfb9963ec8d552ffeefd1e46d591132526d2bf270765ccae61c0f147c3a47297cc3662c196d7f44006
languageName: node
linkType: hard
"@cspell/dict-cryptocurrencies@npm:^3.0.1":
version: 3.0.1
resolution: "@cspell/dict-cryptocurrencies@npm:3.0.1"
checksum: 5d646f569e8dc5998de8a508ff3de39db5f5a5db0a846ee4fc750ea3880080d922d5c28fdce38f93910eaacde2723e2fe4c305d50b3f9d53b817ce33a3bed66a
languageName: node
linkType: hard
"@cspell/dict-csharp@npm:^4.0.2":
version: 4.0.2
resolution: "@cspell/dict-csharp@npm:4.0.2"
checksum: d2ecb2aada51c5f0d6d557fd4f0c6eddb5b299e0955e066c49cd2afe96a1c6fe0afde699fdb885dd3183603a1efbd1d793b6a490b8d039256445b4b154b7375b
languageName: node
linkType: hard
"@cspell/dict-css@npm:^4.0.6":
version: 4.0.7
resolution: "@cspell/dict-css@npm:4.0.7"
checksum: c6b07bbaec3a61d4c05ee933bc6b80822d938dd31194c5bd55b76112b9ee257e41edc75a86e5e9926e9ccc463b9dbf17bc23915f3419de1389ac4744d2208773
languageName: node
linkType: hard
"@cspell/dict-dart@npm:^2.0.3":
version: 2.0.3
resolution: "@cspell/dict-dart@npm:2.0.3"
checksum: 66bfcfa029baacd0b14b3ff5b6ab7597cf9459f77185d88b25123b42a4babb66df6786806843f1b6506c335326100599a2e1db6e6104e66bd021ede9ccb3cec4
languageName: node
linkType: hard
"@cspell/dict-data-science@npm:^1.0.11":
version: 1.0.11
resolution: "@cspell/dict-data-science@npm:1.0.11"
checksum: 513f8f416f584f46576d45be23a4aa354e46d244f10a3d466222ffc13afe475e676639e4a24ab3a1ba157239f9ce23f7eef59c9f4c7a877a044db3a6344b18c6
languageName: node
linkType: hard
"@cspell/dict-django@npm:^4.1.0":
version: 4.1.0
resolution: "@cspell/dict-django@npm:4.1.0"
checksum: d64b830ab761f3610ca5eb81b06447c91a64b988bc3e40bac214fc611de498fa019e1cd76f6f21254ad2d3bfaeb3d10248481f0a02711d6a3ed715df062b2ba6
languageName: node
linkType: hard
"@cspell/dict-docker@npm:^1.1.7":
version: 1.1.7
resolution: "@cspell/dict-docker@npm:1.1.7"
checksum: 307f8b5132edca7cd291ba0ab6ed88f8787df984d6a42401b12a0da1ecb935d50af3a108ede885ce5bede96c445acdc88bb9ea8396de151c565a90a3bf66853e
languageName: node
linkType: hard
"@cspell/dict-dotnet@npm:^5.0.0":
version: 5.0.0
resolution: "@cspell/dict-dotnet@npm:5.0.0"
checksum: 470e74c26821426c0136e1f05c37be8a8231565c47d31b37049ba2b3030191359bdbc683e1e7948b6b8a7c570dd82f5fb2fe218ed9b824af29fd5560cf4826c7
languageName: node
linkType: hard
"@cspell/dict-elixir@npm:^4.0.3":
version: 4.0.3
resolution: "@cspell/dict-elixir@npm:4.0.3"
checksum: f084449b2de5a2fa08076ac699c6073beaa4bb43796a662d681ea8fe5cba31f9efe718f3f98ef432ba75d4ea574316de34ab8422f79f4f2022cfddee7a7b8653
languageName: node
linkType: hard
"@cspell/dict-en-common-misspellings@npm:^1.0.2":
version: 1.0.2
resolution: "@cspell/dict-en-common-misspellings@npm:1.0.2"
checksum: 5d3a618ed06aea7bbe9d893e45b6feee9a9cefa42da16e1cfb23d2886627c0a0b0e9ae3501c8fa4a7338181ee36ba910f21d56494a37cc75fe1fc93545cec516
languageName: node
linkType: hard
"@cspell/dict-en-gb@npm:1.1.33":
version: 1.1.33
resolution: "@cspell/dict-en-gb@npm:1.1.33"
checksum: 72db891c955ce9b24ba756c1baad41e92854a85fe326699f9ab328358b02a76d57b65d26d02afa050c4f96668a51c1dab6fce7eaad51c70c113588bbc2b46756
languageName: node
linkType: hard
"@cspell/dict-en_us@npm:^4.3.6":
version: 4.3.6
resolution: "@cspell/dict-en_us@npm:4.3.6"
checksum: 40006c1cf6a9f126679cf435caef515499588e7d562323bb42a89a1519574a900dffff145165fc350d166c34d6359b31cffa1f17f0bf42b9a0d0e61076a01a8a
languageName: node
linkType: hard
"@cspell/dict-filetypes@npm:^3.0.1":
version: 3.0.1
resolution: "@cspell/dict-filetypes@npm:3.0.1"
checksum: 43ad696dac5feaee290120216153a25f454302bda5834ce5e86dbab5fca73266a35c7fc00466120ae3b696ec1fa94b4f2b36e036dd07f05d5a4a770db7eb5d0a
languageName: node
linkType: hard
"@cspell/dict-fonts@npm:^4.0.0":
version: 4.0.0
resolution: "@cspell/dict-fonts@npm:4.0.0"
checksum: 894a31f3df8e3a43a3dcf13e1706eb94cb5e83bd6d2aa26b0e9fc79c2de304eb5e9118eec4dff6a673e2a3243c842ca694c8e0f3c0ad78301004f983acf53832
languageName: node
linkType: hard
"@cspell/dict-fsharp@npm:^1.0.0":
version: 1.0.0
resolution: "@cspell/dict-fsharp@npm:1.0.0"
checksum: 79141e510c44581cfa5082ab69e9f0fb09f873743f9afb9e9b465e4b74f2e05c18fd89e796649616202527f9cc50603e5f0c8b81f482b22e80a7988d3c856411
languageName: node
linkType: hard
"@cspell/dict-fullstack@npm:^3.1.5":
version: 3.1.5
resolution: "@cspell/dict-fullstack@npm:3.1.5"
checksum: 01c98a3408d4bf4832f1f110252399e663ce869bb097d681558828bb0e22725c7fe7b43077aa57afc2c3158515eaa744074826c020825af5856a0950219785a6
languageName: node
linkType: hard
"@cspell/dict-gaming-terms@npm:^1.0.4":
version: 1.0.4
resolution: "@cspell/dict-gaming-terms@npm:1.0.4"
checksum: 3e57f5567747a8598b3e4de4f63a3b8090cccf7688f3e91f0a9e005e916645db1224ea600afd5b497b7e8c6a1f9291dfd4cb932278dfd423657107203a2ace0b
languageName: node
linkType: hard
"@cspell/dict-git@npm:^2.0.0":
version: 2.0.0
resolution: "@cspell/dict-git@npm:2.0.0"
checksum: eb3985f1f8717ad4e41e146f1b011e0476d7625ab1ebee55364575b727323300773a89a8dd5a20466c74c57b7d2678e0c92446453bd484a44203be737bc07964
languageName: node
linkType: hard
"@cspell/dict-golang@npm:^6.0.2":
version: 6.0.2
resolution: "@cspell/dict-golang@npm:6.0.2"
checksum: 3a20d9ae6be6ce893619a70e03b2c013078bd5d85b659c477f681d562df36c3ce040d70866333bdd460dcf5765f0b0c7515295b1cd424ccd5301e1562484e327
languageName: node
linkType: hard
"@cspell/dict-haskell@npm:^4.0.1":
version: 4.0.1
resolution: "@cspell/dict-haskell@npm:4.0.1"
checksum: cfb51e415b60c5eb266a5782d0a4b19a37f1389b9b018d1bbb2ff4358bd739af1f76f68f26a138d4b4bd0ab67146d6eb9032fc3d3c212695237c134e05339c79
languageName: node
linkType: hard
"@cspell/dict-html-symbol-entities@npm:^4.0.0":
version: 4.0.0
resolution: "@cspell/dict-html-symbol-entities@npm:4.0.0"
checksum: 79f05f9080f39dbde703980eb587ed6624b8fc2f5cedc297327bc1b9b7e6022a7c382e6013149b1afe00609b96003ab5c8d18d378979f76f336ab626317183f4
languageName: node
linkType: hard
"@cspell/dict-html@npm:^4.0.3":
version: 4.0.3
resolution: "@cspell/dict-html@npm:4.0.3"
checksum: d9beb5b13c7c381b1e5e3ff18f818b209209f81ecdfe2568c7666453c59140438687936b6b2e733b05bc8a129b4065e9a93f741c646e6aca1a35d576f7fac199
languageName: node
linkType: hard
"@cspell/dict-java@npm:^5.0.5":
version: 5.0.5
resolution: "@cspell/dict-java@npm:5.0.5"
checksum: 67da4c2722532247b6964969e1e6b6bcc0d8e32c491c01e96e19aa9e7c3a0901af331fd653347d5efdb19cc4ad0c4135f855c5416692e08564e5e05f4511dcf2
languageName: node
linkType: hard
"@cspell/dict-k8s@npm:^1.0.1":
version: 1.0.1
resolution: "@cspell/dict-k8s@npm:1.0.1"
checksum: 6f42aaa1571bedeed6dda7f08a4f34b54a2b18f7ba21231290300c339f4a684b8470c04b88f48dc141516038dd2419d74fd086a025bc4a816516a6bb9e170ab2
languageName: node
linkType: hard
"@cspell/dict-latex@npm:^4.0.0":
version: 4.0.0
resolution: "@cspell/dict-latex@npm:4.0.0"
checksum: 7e7a520196d143d0a3185689d09d84bf1e23b5328dfc78187c4e4ab264bd49c3dd695eb92f8d582583e5bc26bcab4ed0976b310b56a000af81d88a7acdea7f8c
languageName: node
linkType: hard
"@cspell/dict-lorem-ipsum@npm:^4.0.0":
version: 4.0.0
resolution: "@cspell/dict-lorem-ipsum@npm:4.0.0"
checksum: d3575fb7b9684480192d2cd647484312c555f3d1215d6b35371b70de3ecde4273010e5916cc2d130ff1e1223a1a49f75825651671a76d3dabdec98acf67a3902
languageName: node
linkType: hard
"@cspell/dict-lua@npm:^4.0.1":
version: 4.0.1
resolution: "@cspell/dict-lua@npm:4.0.1"
checksum: a85da787f1f347a46cfa44fdc26dea39c0665f636936f4ae7ee656b0e3395a2b3d8787a5f4af35e7d777efde15397ed57ba21d2de9b01e27df4239b3d86e27bd
languageName: node
linkType: hard
"@cspell/dict-node@npm:^4.0.2":
version: 4.0.2
resolution: "@cspell/dict-node@npm:4.0.2"
checksum: 9783f4158425ce4b50bc57f8a447b9622a2f1797b15f0ab1cc5e8403713a71b3544e37e39bc445bccb0146d8bf9b12dae7ea2056cdec2331d7b0a02578a67db4
languageName: node
linkType: hard
"@cspell/dict-npm@npm:^5.0.8":
version: 5.0.8
resolution: "@cspell/dict-npm@npm:5.0.8"
checksum: bc2bf519ac1c4bbd659ac051d75a7c674728a998c1f2699f950e81686dfd794625c7a4bf758230843c47c922acc4c4e10eb49bd9eb13208d06eb4bbc1b8fc5d4
languageName: node
linkType: hard
"@cspell/dict-php@npm:^4.0.2":
version: 4.0.2
resolution: "@cspell/dict-php@npm:4.0.2"
checksum: ada7963cfe15daba6419ff593b11dfc11fa7c6de0ea6d1c394c1ed19a9eee93a80d2ea1fa68468473101d0846d4c69afc9a5dac978585cf3dbf1216cbe020f38
languageName: node
linkType: hard
"@cspell/dict-powershell@npm:^5.0.2":
version: 5.0.2
resolution: "@cspell/dict-powershell@npm:5.0.2"
checksum: 0591920546caa6965fe1238fe43aa9a9d714594d7149225bebfb0157a337d741603f52f39b2265131d20612617cfccf5da92e04491824d4c395ec664eca98076
languageName: node
linkType: hard
"@cspell/dict-public-licenses@npm:^2.0.3":
version: 2.0.3
resolution: "@cspell/dict-public-licenses@npm:2.0.3"
checksum: f6a9334b528faf0d090554030519c9f498dcfac080c7893e560892dd66f061a4f22d4e3a0353c3737bdf8ed5cc8840da28ab4098e1658863089e202b8c3ba76b
languageName: node
linkType: hard
"@cspell/dict-python@npm:^4.1.6":
version: 4.1.7
resolution: "@cspell/dict-python@npm:4.1.7"
dependencies:
"@cspell/dict-data-science": "npm:^1.0.11"
checksum: 740ea021c46bf511a5508796a89ec54bfd7380884aaa8017e4a2ce242392e5c7dff3cb2073a0baa0cce5dada7dcbd62bdfd7d3292e45e2a22cb18bffca173895
languageName: node
linkType: hard
"@cspell/dict-r@npm:^2.0.1":
version: 2.0.1
resolution: "@cspell/dict-r@npm:2.0.1"
checksum: fe85939ad4c8ada34284a673918be711cca60b6d6f1c48ee98602c27905228dfbaea3462a350094633032c1d6b6bba9548df7019e0b21673cf1cf887c57ca228
languageName: node
linkType: hard
"@cspell/dict-ruby@npm:^5.0.0":
version: 5.0.0
resolution: "@cspell/dict-ruby@npm:5.0.0"
checksum: e1f99f97fa3459a19f8f25dbae7d879e77bd503e9435aaf640d99ad4212223548fb9e5544d076f9a766f74829958178e814ebfe6f941738fb5e5452969bbdfb2
languageName: node
linkType: hard
"@cspell/dict-rust@npm:^4.0.1":
version: 4.0.1
resolution: "@cspell/dict-rust@npm:4.0.1"
checksum: 146d3af5d0b1b84ec62059353416cd5d4b53995ed0a0edb47b96ed89f1b8b82881e76c1bac46311318f41d1619eab87d81e0cdc94855f50b79cfa0719333cbb1
languageName: node
linkType: hard
"@cspell/dict-scala@npm:^5.0.0":
version: 5.0.0
resolution: "@cspell/dict-scala@npm:5.0.0"
checksum: 874312cd63de246f95ca3ab0ae92649c3fd0b5ca4e28f7586b159759deccdc87d78e85a91b962cd9abc2ea0e855763ff00dfae776840980f69ac2d1da169777c
languageName: node
linkType: hard
"@cspell/dict-software-terms@npm:^3.2.1":
version: 3.2.1
resolution: "@cspell/dict-software-terms@npm:3.2.1"
checksum: 763362960a8408a6bf944f8774a78f746d928fa04ff2bec70a085b1d4e37d3f45b1463b0756027dc3591483af571881cf6fc188e951df0cad45527da9f44bc62
languageName: node
linkType: hard
"@cspell/dict-sql@npm:^2.1.1":
version: 2.1.1
resolution: "@cspell/dict-sql@npm:2.1.1"
checksum: 12f86a7fae8e26e8032b51c3418200afc53de9159b30fac98d5529fd5002c057597e53a957823c1d17df1d088be731ac6aab8cebccd930b121b4bdb2b30faa58
languageName: node
linkType: hard
"@cspell/dict-svelte@npm:^1.0.2":
version: 1.0.2
resolution: "@cspell/dict-svelte@npm:1.0.2"
checksum: 5b42989bc6743a26ca5172cc23ebc1449d930695b10c908376048ce1835bf57fef7a0004f02ec5e43219f24a97f154e125041df470441199a045ed0be9e654fc
languageName: node
linkType: hard
"@cspell/dict-swift@npm:^2.0.1":
version: 2.0.1
resolution: "@cspell/dict-swift@npm:2.0.1"
checksum: 0bbb106266205c5f5e12886a73ebf0db2078bab1bdd2e1f304fe28445cd72d847a4c5072bf4fe8f9e8cdb4bc69d52fffec0806aea19ea9b64b7a87c67ee01175
languageName: node
linkType: hard
"@cspell/dict-typescript@npm:^3.1.1":
version: 3.1.1
resolution: "@cspell/dict-typescript@npm:3.1.1"
checksum: d88e6c92454bff7140f889983bdb09542826e1582fa463e3df9d2470569d0572f5500e3262b1b34bdb560e7972e8c0f422f5f780170d12ad443577e005097850
languageName: node
linkType: hard
"@cspell/dict-vue@npm:^3.0.0":
version: 3.0.0
resolution: "@cspell/dict-vue@npm:3.0.0"
checksum: 4db58b1d6f9be1a523a35678877f2cca2bb04548b136ec5ec4e7186500978dbc32cc8747ced80ade3cad3acc3c80eb23afe980679165810f8f8f26802e952e2f
languageName: node
linkType: hard
"@cspell/dynamic-import@npm:7.0.1":
version: 7.0.1
resolution: "@cspell/dynamic-import@npm:7.0.1"
dependencies:
import-meta-resolve: "npm:^3.0.0"
checksum: 9cc08edf0c5e7e3d73b8c3a3eee3bff7364000e27b247e484ec60b1eae1528048e0b36bd999383b55d7a3e8589937bd4f37b83c223430c6f564c5c510f955639
languageName: node
linkType: hard
"@cspell/strong-weak-map@npm:7.0.1":
version: 7.0.1
resolution: "@cspell/strong-weak-map@npm:7.0.1"
checksum: d3b2f4ac640f104fafb5681ae493926579312347868c65d3bbd30e2a3c86ecdd51464a82a8ef05ec577845f31c6b944108f2fc031a65a2f5767841363e09b6e8
languageName: node
linkType: hard
"@cspotcode/source-map-support@npm:^0.8.0":
version: 0.8.1
resolution: "@cspotcode/source-map-support@npm:0.8.1"
dependencies:
"@jridgewell/trace-mapping": "npm:0.3.9"
checksum: b6e38a1712fab242c86a241c229cf562195aad985d0564bd352ac404be583029e89e93028ffd2c251d2c407ecac5fb0cbdca94a2d5c10f29ac806ede0508b3ff
languageName: node
linkType: hard
"@dprint/darwin-arm64@npm:0.40.2":
version: 0.40.2
resolution: "@dprint/darwin-arm64@npm:0.40.2"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@dprint/darwin-x64@npm:0.40.2":
version: 0.40.2
resolution: "@dprint/darwin-x64@npm:0.40.2"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@dprint/linux-arm64-glibc@npm:0.40.2":
version: 0.40.2
resolution: "@dprint/linux-arm64-glibc@npm:0.40.2"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@dprint/linux-x64-glibc@npm:0.40.2":
version: 0.40.2
resolution: "@dprint/linux-x64-glibc@npm:0.40.2"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@dprint/linux-x64-musl@npm:0.40.2":
version: 0.40.2
resolution: "@dprint/linux-x64-musl@npm:0.40.2"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@dprint/win32-x64@npm:0.40.2":
version: 0.40.2
resolution: "@dprint/win32-x64@npm:0.40.2"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@es-joy/jsdoccomment@npm:~0.38.0":
version: 0.38.0
resolution: "@es-joy/jsdoccomment@npm:0.38.0"
dependencies:
comment-parser: "npm:1.3.1"
esquery: "npm:^1.5.0"
jsdoc-type-pratt-parser: "npm:~4.0.0"
checksum: 1f31cde49c6573b3cd70d4e9111c815084e1fdc6c1351db4bb3c82d91de5930e2e1ad1f38e3078613e74b1b17edffcc1146747f029c56f0387c725e76983c79b
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.19.2":
version: 0.19.2
resolution: "@esbuild/android-arm64@npm:0.19.2"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.19.2":
version: 0.19.2
resolution: "@esbuild/android-arm@npm:0.19.2"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.19.2":
version: 0.19.2
resolution: "@esbuild/android-x64@npm:0.19.2"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.19.2":
version: 0.19.2
resolution: "@esbuild/darwin-arm64@npm:0.19.2"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.19.2":
version: 0.19.2
resolution: "@esbuild/darwin-x64@npm:0.19.2"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.19.2":
version: 0.19.2
resolution: "@esbuild/freebsd-arm64@npm:0.19.2"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.19.2":
version: 0.19.2
resolution: "@esbuild/freebsd-x64@npm:0.19.2"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.19.2":
version: 0.19.2
resolution: "@esbuild/linux-arm64@npm:0.19.2"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.19.2":
version: 0.19.2
resolution: "@esbuild/linux-arm@npm:0.19.2"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.19.2":
version: 0.19.2
resolution: "@esbuild/linux-ia32@npm:0.19.2"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.19.2":
version: 0.19.2
resolution: "@esbuild/linux-loong64@npm:0.19.2"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.19.2":
version: 0.19.2
resolution: "@esbuild/linux-mips64el@npm:0.19.2"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.19.2":
version: 0.19.2
resolution: "@esbuild/linux-ppc64@npm:0.19.2"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.19.2":
version: 0.19.2
resolution: "@esbuild/linux-riscv64@npm:0.19.2"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.19.2":
version: 0.19.2
resolution: "@esbuild/linux-s390x@npm:0.19.2"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.19.2":
version: 0.19.2
resolution: "@esbuild/linux-x64@npm:0.19.2"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.19.2":
version: 0.19.2
resolution: "@esbuild/netbsd-x64@npm:0.19.2"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.19.2":
version: 0.19.2
resolution: "@esbuild/openbsd-x64@npm:0.19.2"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.19.2":
version: 0.19.2
resolution: "@esbuild/sunos-x64@npm:0.19.2"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.19.2":
version: 0.19.2
resolution: "@esbuild/win32-arm64@npm:0.19.2"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@esbuild/win32-ia32@npm:0.19.2":
version: 0.19.2
resolution: "@esbuild/win32-ia32@npm:0.19.2"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@esbuild/win32-x64@npm:0.19.2":
version: 0.19.2
resolution: "@esbuild/win32-x64@npm:0.19.2"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.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: 8d70bcdcd8cd279049183aca747d6c2ed7092a5cf0cf5916faac1ef37ffa74f0c245c2a3a3d3b9979d9dfdd4ca59257b4c5621db699d637b847a2c5e02f491c2
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.5.1, @eslint-community/regexpp@npm:^4.6.1":
version: 4.8.0
resolution: "@eslint-community/regexpp@npm:4.8.0"
checksum: bca98aff5fd4236ef6030e91bd323e57b8d42705d4ddcdd56041e3c1ff7f4d9eb4a3f1fffcbf0e0400cba0703ea9e496f521ae0ad65f269024d07c56edfa5e08
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^2.1.2":
version: 2.1.2
resolution: "@eslint/eslintrc@npm:2.1.2"
dependencies:
ajv: "npm:^6.12.4"
debug: "npm:^4.3.2"
espree: "npm:^9.6.0"
globals: "npm:^13.19.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: fa25638f2666cac6810f98ee7d0f4b912f191806467c1b40d72bac759fffef0b3357f12a1869817286837b258e4de3517e0c7408520e156ca860fc53a1fbaed9
languageName: node
linkType: hard
"@eslint/js@npm:8.49.0":
version: 8.49.0
resolution: "@eslint/js@npm:8.49.0"
checksum: 544acf1150629596eda78f1340220299151e59325a0af5bb38cdedf983d07f0ad0ec57a1e9d2c5e19d374f9bb37720ae8537856ad8199818aea55958b1ae7854
languageName: node
linkType: hard
"@faker-js/faker@npm:8.0.2":
version: 8.0.2