-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyarn.lock
More file actions
9591 lines (8621 loc) · 336 KB
/
yarn.lock
File metadata and controls
9591 lines (8621 loc) · 336 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
"@actions/core@npm:1.11.1":
version: 1.11.1
resolution: "@actions/core@npm:1.11.1"
dependencies:
"@actions/exec": "npm:^1.1.1"
"@actions/http-client": "npm:^2.0.1"
checksum: 10/94f260e33607cc16567ce4c88014f069cd7da92baaa443b72cff80fdf4f1dcd18192e135df0d51ec29e8b82cfe214218715d482f2a7804efa5095737d1245f38
languageName: node
linkType: hard
"@actions/exec@npm:^1.1.1":
version: 1.1.1
resolution: "@actions/exec@npm:1.1.1"
dependencies:
"@actions/io": "npm:^1.0.1"
checksum: 10/c04bd25191e522841c7e17862d70099de8db61278d2b4c744b69ac0197a48f85c75dba548e1c29c695c4cc5363d558846b4dcd3db9013463c18ba8cf36497c6d
languageName: node
linkType: hard
"@actions/http-client@npm:^2.0.1":
version: 2.2.3
resolution: "@actions/http-client@npm:2.2.3"
dependencies:
tunnel: "npm:^0.0.6"
undici: "npm:^5.25.4"
checksum: 10/0c0a540c79e50f795d214f696710bb9c50bdf5bb1458be288140f2aae3686adec73fdb464c43da5ef94f985ac7736273efef21cb5ba5a3b09e85b403d852c04b
languageName: node
linkType: hard
"@actions/io@npm:^1.0.1":
version: 1.1.3
resolution: "@actions/io@npm:1.1.3"
checksum: 10/4de44e8d428ba9f20049c844b37ecd486b589ed201f8cc8c5b550a9e4c72d1f594271ee2a7a6cfe8a42ebfb5dd527ef65016454656db391a353d41eab4f147e1
languageName: node
linkType: hard
"@ardatan/sync-fetch@npm:^0":
version: 0.0.1
resolution: "@ardatan/sync-fetch@npm:0.0.1"
dependencies:
node-fetch: "npm:^2.6.1"
checksum: 10/ee21741badecb18fb9a18a404275e25272f67ade914f98885de79ccecba3403b8a6357e6b033a028e24f0d902197dd541655309d7789ebacd7ad981bf1f12618
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0":
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.24.7, @babel/helper-validator-identifier@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/helper-validator-identifier@npm:7.27.1"
checksum: 10/75041904d21bdc0cd3b07a8ac90b11d64cd3c881e89cb936fa80edd734bf23c35e6bd1312611e8574c4eab1f3af0f63e8a5894f4699e9cfdf70c06fcf4252320
languageName: node
linkType: hard
"@capacitor/android@npm:5.7.8":
version: 5.7.8
resolution: "@capacitor/android@npm:5.7.8"
peerDependencies:
"@capacitor/core": ^5.7.0
checksum: 10/66e358d4ceb05604c3634a5e06800593ba0b32fce3f6cf2bdda3e4782c9bec1c68b6c6b647ca1ccda0a44cf99c62c0271d54e82b222dc48c0e65cb3b87357f1a
languageName: node
linkType: hard
"@capacitor/core@npm:5.7.8":
version: 5.7.8
resolution: "@capacitor/core@npm:5.7.8"
dependencies:
tslib: "npm:^2.1.0"
checksum: 10/e83b25646bf69ceb09e7f17586819b1098ac4f5e7b1d18dbfa146669e32d9623d9118e1124679b486f110ed65f193aadfe46488089ddfd34f5367811d76b6cec
languageName: node
linkType: hard
"@capacitor/docgen@npm:0.3.0":
version: 0.3.0
resolution: "@capacitor/docgen@npm:0.3.0"
dependencies:
"@types/node": "npm:^14.18.0"
colorette: "npm:^2.0.20"
github-slugger: "npm:^1.5.0"
minimist: "npm:^1.2.8"
typescript: "npm:~4.2.4"
bin:
docgen: bin/docgen
checksum: 10/6b0360cdcae0fb6fec49e9116d3f12bc0d07394a19ac8f415c08a7bbed53e17819b504a83eec57b98796bf9cbc980c5aef96712e8d4a2f5fb4b1aa97ab361fa3
languageName: node
linkType: hard
"@capacitor/ios@npm:5.7.8":
version: 5.7.8
resolution: "@capacitor/ios@npm:5.7.8"
peerDependencies:
"@capacitor/core": ^5.7.0
checksum: 10/ddd92d5726154e9efe27979949711fcf8cae805b9e76f0d6ed3ccec2fc2b94a596fa9b059234dc87f0cedcddd4e5f97d90640d2b57f78d3daebd6e15bb7add56
languageName: node
linkType: hard
"@captive/capacitor-facebook-analytics@workspace:packages/facebook-analytics":
version: 0.0.0-use.local
resolution: "@captive/capacitor-facebook-analytics@workspace:packages/facebook-analytics"
dependencies:
"@capacitor/android": "npm:5.7.8"
"@capacitor/core": "npm:5.7.8"
"@capacitor/docgen": "npm:0.3.0"
"@capacitor/ios": "npm:5.7.8"
rimraf: "npm:5.0.10"
rollup: "npm:3.30.0"
typescript: "npm:5.9.3"
peerDependencies:
"@capacitor/android": ^5.0.0
"@capacitor/core": ^5.0.0
"@capacitor/ios": ^5.0.0
peerDependenciesMeta:
"@capacitor/android":
optional: true
"@capacitor/ios":
optional: true
languageName: unknown
linkType: soft
"@captive/commitlint-config@npm:2.1.15":
version: 2.1.15
resolution: "@captive/commitlint-config@npm:2.1.15"
dependencies:
"@w5s/commitlint-config": "npm:^2.0.0"
peerDependencies:
"@commitlint/cli": ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
peerDependenciesMeta:
"@commitlint/cli":
optional: true
checksum: 10/c4a2707cc1b9c879a306b2b1eff5c908308c8fb1c9b02cb3b172441a288aa1d83df7f023dd449654e61018cee5c8ef228f75ce21452457daef792b4d07b4cc57
languageName: node
linkType: hard
"@captive/eslint-config@npm:2.0.28":
version: 2.0.28
resolution: "@captive/eslint-config@npm:2.0.28"
dependencies:
"@captive/prettier-config": "npm:^2.0.14"
"@w5s/dev": "npm:^2.0.0"
"@w5s/eslint-config": "npm:2.2.5"
eslint-plugin-cypress: "npm:^3.0.0"
eslint-plugin-vue: "npm:^9.9.0"
find-up: "npm:^5.0.0"
peerDependencies:
eslint: 8.x
prettier: 3.x
typescript: 4.x || 5.x
peerDependenciesMeta:
eslint:
optional: true
typescript:
optional: true
checksum: 10/d5302f68ee2f48098fbb7042d4d1ba43586aba20f35b8f6c816005a3e1d5180f4756be3f4e66090b48872a7beb7a537e190e5835fb646d013b35dec753e92c93
languageName: node
linkType: hard
"@captive/prettier-config@npm:^2.0.14":
version: 2.0.17
resolution: "@captive/prettier-config@npm:2.0.17"
dependencies:
"@w5s/prettier-config": "npm:^2.2.1"
peerDependencies:
prettier: 2.x || 3.x
peerDependenciesMeta:
prettier:
optional: true
checksum: 10/c18b104eb8828b6faeecdbfc4ca42d7f2099e07f3e2dae3e158b2ab7b99efc9ad5dd4c91b732622c624f2be0b95433c0986b97ccb675f0bf9c4d26ab1d6e2070
languageName: node
linkType: hard
"@captive/ts-config@npm:2.4.1":
version: 2.4.1
resolution: "@captive/ts-config@npm:2.4.1"
peerDependencies:
typescript: ">=5.x"
peerDependenciesMeta:
typescript:
optional: true
checksum: 10/fb3bb6583b9597850b7da5dfa438c7b5a1555903ec5c46c4bb9bc90aae7d2a19581173ba97a12c96f2ee45c13e232989874326483358546d381d6823c74778b6
languageName: node
linkType: hard
"@chevrotain/cst-dts-gen@npm:11.0.3":
version: 11.0.3
resolution: "@chevrotain/cst-dts-gen@npm:11.0.3"
dependencies:
"@chevrotain/gast": "npm:11.0.3"
"@chevrotain/types": "npm:11.0.3"
lodash-es: "npm:4.17.21"
checksum: 10/601d23fa3312bd0e32816bd3f9ca2dcba775a52192a082fd6c5e4a2e8ee068523401191babbe2c346d6d2551900a67b549f2f74d7ebb7d5b2ee1b6fa3c8857a0
languageName: node
linkType: hard
"@chevrotain/gast@npm:11.0.3":
version: 11.0.3
resolution: "@chevrotain/gast@npm:11.0.3"
dependencies:
"@chevrotain/types": "npm:11.0.3"
lodash-es: "npm:4.17.21"
checksum: 10/7169453a8fbfa994e91995523dea09eab87ab23062ad93f6e51f4a3b03f5e2958e0a8b99d5ca6fa067fccfbbbb8bcf1a4573ace2e1b5a455f6956af9eaccb35a
languageName: node
linkType: hard
"@chevrotain/regexp-to-ast@npm:11.0.3":
version: 11.0.3
resolution: "@chevrotain/regexp-to-ast@npm:11.0.3"
checksum: 10/7387a1c61c5a052de41e1172b33eaaedea166fcdb1ffe4c381b86d00051a8014855a031d28fb658768a62c833ef5f5b0689d0c40de3d7bed556f8fea24396e69
languageName: node
linkType: hard
"@chevrotain/types@npm:11.0.3":
version: 11.0.3
resolution: "@chevrotain/types@npm:11.0.3"
checksum: 10/49a82b71d2de8ceb2383ff2709fa61d245f2ab2e42790b70c57102c80846edaa318d0b3645aedc904d23ea7bd9be8a58f2397b1341760a15eb5aa95a1336e2a9
languageName: node
linkType: hard
"@chevrotain/utils@npm:11.0.3":
version: 11.0.3
resolution: "@chevrotain/utils@npm:11.0.3"
checksum: 10/29b5d84373a7761ad055c53e2f540a67b5b56550d5be1c473149f6b8923eef87ff391ce021c06ac7653843b0149f6ff0cf30b5e48c3f825d295eb06a6c517bd3
languageName: node
linkType: hard
"@commitlint/types@npm:^19.0.0":
version: 19.8.1
resolution: "@commitlint/types@npm:19.8.1"
dependencies:
"@types/conventional-commits-parser": "npm:^5.0.0"
chalk: "npm:^5.3.0"
checksum: 10/d1943a5789a02c75b0c72755673ab8d50c850b025abb7806b7eef83b373591948f5d1d9cd22022f89302a256546934d797445913c5c495d8e92711cf17b0fbf0
languageName: node
linkType: hard
"@cspell/cspell-bundled-dicts@npm:9.2.1":
version: 9.2.1
resolution: "@cspell/cspell-bundled-dicts@npm:9.2.1"
dependencies:
"@cspell/dict-ada": "npm:^4.1.1"
"@cspell/dict-al": "npm:^1.1.1"
"@cspell/dict-aws": "npm:^4.0.15"
"@cspell/dict-bash": "npm:^4.2.1"
"@cspell/dict-companies": "npm:^3.2.5"
"@cspell/dict-cpp": "npm:^6.0.12"
"@cspell/dict-cryptocurrencies": "npm:^5.0.5"
"@cspell/dict-csharp": "npm:^4.0.7"
"@cspell/dict-css": "npm:^4.0.18"
"@cspell/dict-dart": "npm:^2.3.1"
"@cspell/dict-data-science": "npm:^2.0.9"
"@cspell/dict-django": "npm:^4.1.5"
"@cspell/dict-docker": "npm:^1.1.16"
"@cspell/dict-dotnet": "npm:^5.0.10"
"@cspell/dict-elixir": "npm:^4.0.8"
"@cspell/dict-en-common-misspellings": "npm:^2.1.5"
"@cspell/dict-en-gb-mit": "npm:^3.1.8"
"@cspell/dict-en_us": "npm:^4.4.18"
"@cspell/dict-filetypes": "npm:^3.0.13"
"@cspell/dict-flutter": "npm:^1.1.1"
"@cspell/dict-fonts": "npm:^4.0.5"
"@cspell/dict-fsharp": "npm:^1.1.1"
"@cspell/dict-fullstack": "npm:^3.2.7"
"@cspell/dict-gaming-terms": "npm:^1.1.2"
"@cspell/dict-git": "npm:^3.0.7"
"@cspell/dict-golang": "npm:^6.0.23"
"@cspell/dict-google": "npm:^1.0.9"
"@cspell/dict-haskell": "npm:^4.0.6"
"@cspell/dict-html": "npm:^4.0.12"
"@cspell/dict-html-symbol-entities": "npm:^4.0.4"
"@cspell/dict-java": "npm:^5.0.12"
"@cspell/dict-julia": "npm:^1.1.1"
"@cspell/dict-k8s": "npm:^1.0.12"
"@cspell/dict-kotlin": "npm:^1.1.1"
"@cspell/dict-latex": "npm:^4.0.4"
"@cspell/dict-lorem-ipsum": "npm:^4.0.5"
"@cspell/dict-lua": "npm:^4.0.8"
"@cspell/dict-makefile": "npm:^1.0.5"
"@cspell/dict-markdown": "npm:^2.0.12"
"@cspell/dict-monkeyc": "npm:^1.0.11"
"@cspell/dict-node": "npm:^5.0.8"
"@cspell/dict-npm": "npm:^5.2.15"
"@cspell/dict-php": "npm:^4.0.15"
"@cspell/dict-powershell": "npm:^5.0.15"
"@cspell/dict-public-licenses": "npm:^2.0.15"
"@cspell/dict-python": "npm:^4.2.19"
"@cspell/dict-r": "npm:^2.1.1"
"@cspell/dict-ruby": "npm:^5.0.9"
"@cspell/dict-rust": "npm:^4.0.12"
"@cspell/dict-scala": "npm:^5.0.8"
"@cspell/dict-shell": "npm:^1.1.1"
"@cspell/dict-software-terms": "npm:^5.1.7"
"@cspell/dict-sql": "npm:^2.2.1"
"@cspell/dict-svelte": "npm:^1.0.7"
"@cspell/dict-swift": "npm:^2.0.6"
"@cspell/dict-terraform": "npm:^1.1.3"
"@cspell/dict-typescript": "npm:^3.2.3"
"@cspell/dict-vue": "npm:^3.0.5"
checksum: 10/55cb9fc0d2dca95664216b447781aaa4bd78e83d750fe5651c0d7d8db4c527ddfba74147f84ea32539558743b0e10968d2283609392b8242b82df26a8f464d99
languageName: node
linkType: hard
"@cspell/cspell-json-reporter@npm:9.2.1":
version: 9.2.1
resolution: "@cspell/cspell-json-reporter@npm:9.2.1"
dependencies:
"@cspell/cspell-types": "npm:9.2.1"
checksum: 10/ad3d64814792f7a5da791309d07ae3d6a8901a1bfa043917773736b1c07c285695727cf1dbdddd98b4a9dc7faf0335659f0250e2ca80ecb90bd2965a5f21d6c5
languageName: node
linkType: hard
"@cspell/cspell-pipe@npm:9.2.1":
version: 9.2.1
resolution: "@cspell/cspell-pipe@npm:9.2.1"
checksum: 10/8b61c9b0faf89f2038b3fd445958cf8a78f4be76b3aa35d375a57134163cb1a1b9f75a689322287dce57da4fb68f77b263231d8ff12f41bcff9b317723a6cc64
languageName: node
linkType: hard
"@cspell/cspell-resolver@npm:9.2.1":
version: 9.2.1
resolution: "@cspell/cspell-resolver@npm:9.2.1"
dependencies:
global-directory: "npm:^4.0.1"
checksum: 10/ca001660f9caac88caf9d5d738db89bf6e319c8c04ffd07b25c56c2c630de67b2476405e2def2f00cd644e60b53e1daeac3e591c3f2d0184572ccd4c059e56d6
languageName: node
linkType: hard
"@cspell/cspell-service-bus@npm:9.2.1":
version: 9.2.1
resolution: "@cspell/cspell-service-bus@npm:9.2.1"
checksum: 10/2603f14c35b234d0279b243930bb217a6b6e285a639ff17c32d856206e3337b9e09bde38fb6e0893a06a170584daf30388ab3bbe032cda6d5798be25d763a017
languageName: node
linkType: hard
"@cspell/cspell-types@npm:9.2.1":
version: 9.2.1
resolution: "@cspell/cspell-types@npm:9.2.1"
checksum: 10/1bd2a4849d6a3bcce8ac55d1803b04d088c56ae901be308d06f06f9b31c8e43cbb43806e07642c03f7eaaced29f019adb774f4603a151524b4c458a563cfa679
languageName: node
linkType: hard
"@cspell/dict-ada@npm:^4.1.1":
version: 4.1.1
resolution: "@cspell/dict-ada@npm:4.1.1"
checksum: 10/0d49c5c9db2ca27328091b0ee604b28fc381ab61ae85fd39c1fee4db77831b0e529648ba845c9bcc92d77bf16cd35ccc7dc56470fecca82d0c9cf6daceb7310c
languageName: node
linkType: hard
"@cspell/dict-al@npm:^1.1.1":
version: 1.1.1
resolution: "@cspell/dict-al@npm:1.1.1"
checksum: 10/a1363e99e07aa71cd512ae266cf88a6ea761bac728daf0a78cfe9e02dae4cc9ddf2f73c5670ae889d44a57d50b2b132bea15e839fa8273d7a0544a95118266be
languageName: node
linkType: hard
"@cspell/dict-aws@npm:^4.0.15":
version: 4.0.15
resolution: "@cspell/dict-aws@npm:4.0.15"
checksum: 10/ad6a7b36870a3d6599e8e1f7060e501959f92769c11ae788e45c9376cffee7cbbc3b4ee1d217cb889bbecf2f719e7c6399f5537bee9c77ba6b722b0474ece48e
languageName: node
linkType: hard
"@cspell/dict-bash@npm:^4.2.1":
version: 4.2.1
resolution: "@cspell/dict-bash@npm:4.2.1"
dependencies:
"@cspell/dict-shell": "npm:1.1.1"
checksum: 10/607611fcbcc0609ddfb7afec91472876301346cd7dafe13d9afed653ef714cd2ac83d6d68e5218426edc135c085217ab1e0927654aa83b170cc1685248df4b80
languageName: node
linkType: hard
"@cspell/dict-companies@npm:^3.2.5":
version: 3.2.5
resolution: "@cspell/dict-companies@npm:3.2.5"
checksum: 10/351ac8d18459dba6c1ccd6f667ae534cc7ca3f5bf09931b7009c82fcfb310bbece794dd3a5f06d1e0383f96860ff9e9b6a5f0229161de244c346f08b8f7f6a70
languageName: node
linkType: hard
"@cspell/dict-cpp@npm:^6.0.12":
version: 6.0.12
resolution: "@cspell/dict-cpp@npm:6.0.12"
checksum: 10/fc3ec26cd4df11032beb28fb049fc303c965c523ed15742d087828ff90807b83f488f36c12d6bfae39312d07608c94dcc0d1c7334c471b363768e6e822d85fe3
languageName: node
linkType: hard
"@cspell/dict-cryptocurrencies@npm:^5.0.5":
version: 5.0.5
resolution: "@cspell/dict-cryptocurrencies@npm:5.0.5"
checksum: 10/93dd23accb42b384fc3153e1423d39f14f88d141f7eabdc68231785b2b352125cbab3a5b6ae2532d2007bf48d70f45887cf22873b5b4654766aa22e1b6fd97a0
languageName: node
linkType: hard
"@cspell/dict-csharp@npm:^4.0.7":
version: 4.0.7
resolution: "@cspell/dict-csharp@npm:4.0.7"
checksum: 10/bfc429fc40585905a1b8754eaf1c70fd59911250364bc8ec5f1ce81dfb38cfb27421a8ed4052d81b40832dfb26de8d4e63656a200c5a6459ad0fa9da8e8bb6ae
languageName: node
linkType: hard
"@cspell/dict-css@npm:^4.0.18":
version: 4.0.18
resolution: "@cspell/dict-css@npm:4.0.18"
checksum: 10/1d829b7e2b3bb7bea5daca179d4de847b7aac761a68984783b226132c986e42504cf4d6410ae69b3103afa4779859c2860810b5373d6bc80709637128c7d397c
languageName: node
linkType: hard
"@cspell/dict-dart@npm:^2.3.1":
version: 2.3.1
resolution: "@cspell/dict-dart@npm:2.3.1"
checksum: 10/79764a0499a0267c34febc368ae8dfb47ebe58a79373e48070581a3a8095102a71e8cb88711b7dd431ca559d0d0554803ca2d53051e325903459a670f56c984f
languageName: node
linkType: hard
"@cspell/dict-data-science@npm:^2.0.9":
version: 2.0.9
resolution: "@cspell/dict-data-science@npm:2.0.9"
checksum: 10/15ef9dbf39e2388f7bad87c0457b2a4d39b97ce3f69fbd71ad91ccd3f643e32d58bc4c0f34df75bde5a8293c8de1baa760cdfef5c2860cf9d511877d30e9838b
languageName: node
linkType: hard
"@cspell/dict-django@npm:^4.1.5":
version: 4.1.5
resolution: "@cspell/dict-django@npm:4.1.5"
checksum: 10/cc0181e0e8e9ede5b4efc11c5a141cf54122721b204c956a7e270573adf1e8ca14e6f80e51b5c071154da17188056b5f4cc3da1f68f84ff2162b62abef3e3ebc
languageName: node
linkType: hard
"@cspell/dict-docker@npm:^1.1.16":
version: 1.1.16
resolution: "@cspell/dict-docker@npm:1.1.16"
checksum: 10/dc126d94203fa23c0a9d1466fa634b1ee4b4770d5762dbbbc868198318cf8d860de26d1632700a3e613eb81d27d0e46c72cbf74ba0cca5cca0032dbf056ae472
languageName: node
linkType: hard
"@cspell/dict-dotnet@npm:^5.0.10":
version: 5.0.10
resolution: "@cspell/dict-dotnet@npm:5.0.10"
checksum: 10/ce9d101cfd1af390e49ac114dd576172a932e95a5e4590289a246477ff6d14711efa5dd794188affed13c45050e0ecda4cf95cd26019c5c04dce33580effdc88
languageName: node
linkType: hard
"@cspell/dict-elixir@npm:^4.0.8":
version: 4.0.8
resolution: "@cspell/dict-elixir@npm:4.0.8"
checksum: 10/fad21bd31eb5826b18fbf11a4ff7d9e600cb662c1c2f70306212d8a95bf76f50af1cd74ba880fbb0c813537bfe29477b8a52bc67a6c136557fd909713f0ca664
languageName: node
linkType: hard
"@cspell/dict-en-common-misspellings@npm:^2.1.5":
version: 2.1.6
resolution: "@cspell/dict-en-common-misspellings@npm:2.1.6"
checksum: 10/2ab3a821dd6097619e9c40f1cdf91d8d025a92ad0bec48fd9b42b80013dd6e8d5a371521828ebaad6a658a93840d6468837bd85afecd55686a333ec73dcd7c53
languageName: node
linkType: hard
"@cspell/dict-en-gb-mit@npm:^3.1.8":
version: 3.1.9
resolution: "@cspell/dict-en-gb-mit@npm:3.1.9"
checksum: 10/3830a707034055153127bd25d05110d5056470ede6c392f2a005fb06231012af2e4446d625b1f1008b5f948972dcf5abc82fc2966112f59942532a6eb2fe5970
languageName: node
linkType: hard
"@cspell/dict-en_us@npm:^4.4.18":
version: 4.4.19
resolution: "@cspell/dict-en_us@npm:4.4.19"
checksum: 10/7899b68d1510bb85b3a7774dc40a314b27cf2706aa25b0a78be94843bbc6fd08a799e40a6e2284f908a12783ddc697e6c94b25825ec55fe98ae36b41f90c6b34
languageName: node
linkType: hard
"@cspell/dict-filetypes@npm:^3.0.13":
version: 3.0.13
resolution: "@cspell/dict-filetypes@npm:3.0.13"
checksum: 10/d8ffa9e72b82dc0ee8fc05440175c898d363552fa769b4b6cb5c5544f47bcbc50b4761a97c9b835e182aaade0ca86df64984058342e46f41a4225dfc45502b6c
languageName: node
linkType: hard
"@cspell/dict-flutter@npm:^1.1.1":
version: 1.1.1
resolution: "@cspell/dict-flutter@npm:1.1.1"
checksum: 10/1ba1539d740093da234606ae3110498669ef230fbbfdc3c97ca5560008619ce8a757442846b594900a5d85d0a4e68263bf7f2d4949cab930361fa1056a237d3f
languageName: node
linkType: hard
"@cspell/dict-fonts@npm:^4.0.5":
version: 4.0.5
resolution: "@cspell/dict-fonts@npm:4.0.5"
checksum: 10/6ad5c29a73d2b70ac341ea1bc5baaa3bd9b1b43d5c0d54bacb5e226fbc55072b778d2fb9d121acf66ab2d1c39e5d605af099369005004f9678f8b853e4b9d707
languageName: node
linkType: hard
"@cspell/dict-fsharp@npm:^1.1.1":
version: 1.1.1
resolution: "@cspell/dict-fsharp@npm:1.1.1"
checksum: 10/f83b49083cfa6101ebb5bef67f3128c5c14f7d5005d6981e41c4a317bebaa5672431fcb0699b3f345c69057921b2b59bc34721ce5a63b481b4f6300ca7f77868
languageName: node
linkType: hard
"@cspell/dict-fullstack@npm:^3.2.7":
version: 3.2.7
resolution: "@cspell/dict-fullstack@npm:3.2.7"
checksum: 10/cdb69a00663a34cb611c8f3e8f26651a0aa8e50d59de6ebb85724cfdd239382398ca35636bbe64f3573e1da795c15ace297dbf47cb83747439b109f16bab593d
languageName: node
linkType: hard
"@cspell/dict-gaming-terms@npm:^1.1.2":
version: 1.1.2
resolution: "@cspell/dict-gaming-terms@npm:1.1.2"
checksum: 10/023a2f819dfdeddf879e7fb4b68a1db9728da1aa1a87e14f2b08f624c28d0915d2722d2a46f7ad8cbc32c7be0e42966ad6192f6c75e0f2053a9a15fc95fa34af
languageName: node
linkType: hard
"@cspell/dict-git@npm:^3.0.7":
version: 3.0.7
resolution: "@cspell/dict-git@npm:3.0.7"
checksum: 10/bf88770be43c1bd4c2bea6737edd20939a78b7c0e9ff28e06490394f056637a27f49a6716e0f6ed845eaf2fc1afa85d4bd7cfafb56e3d4dfeb491b49669fd376
languageName: node
linkType: hard
"@cspell/dict-golang@npm:^6.0.23":
version: 6.0.23
resolution: "@cspell/dict-golang@npm:6.0.23"
checksum: 10/4105bf803f8b3377f0c8e6365e8e7b6d046f7999ccd3700a9da770839e175b17ded90373b8340cdf2e1897a698b7b21614b8de6de80a1f865d96423c87051be6
languageName: node
linkType: hard
"@cspell/dict-google@npm:^1.0.9":
version: 1.0.9
resolution: "@cspell/dict-google@npm:1.0.9"
checksum: 10/b3dbd00ae9256c5c11cf55ad8dd9cebb9c8bfad5912c2c31e28aa35237eb8797c4b08356d7f94ee6e7b1cf2491c2bd2dcde790ec911fb02159f639947d411742
languageName: node
linkType: hard
"@cspell/dict-haskell@npm:^4.0.6":
version: 4.0.6
resolution: "@cspell/dict-haskell@npm:4.0.6"
checksum: 10/510ce26a6d34dfa829278a59bedea4c4712b3a0c9430f19b7101597f0a9f26302dd6266a6ab938bfc2d67d08a04148beda68bfcd0589d1c990075a21d52816de
languageName: node
linkType: hard
"@cspell/dict-html-symbol-entities@npm:^4.0.4":
version: 4.0.4
resolution: "@cspell/dict-html-symbol-entities@npm:4.0.4"
checksum: 10/1898fc84496526e9c54e125369f3c87412839aee3e00da8aee3fee1c1165d4f2e7944833398b08f07ee58e817999af462f254e9ce06b06323fd665cbe6d01a3e
languageName: node
linkType: hard
"@cspell/dict-html@npm:^4.0.12":
version: 4.0.12
resolution: "@cspell/dict-html@npm:4.0.12"
checksum: 10/67c316617619a1e06bfff5531684a39fe02a41fa35aed14787c9195449f03b1a89da50eec8fd3e1abb71d9d3ed2169a7e57ca4207bf2796d51d4990d1617e5e6
languageName: node
linkType: hard
"@cspell/dict-java@npm:^5.0.12":
version: 5.0.12
resolution: "@cspell/dict-java@npm:5.0.12"
checksum: 10/aab329be836228a9f9fb3b5259325fbbaccc86de9bdc7e6acb4b164bba25f1b2d4cb8abc3fb274d21391e0274ca5642bd65df5b576ab40b2663a6471f20f11bb
languageName: node
linkType: hard
"@cspell/dict-julia@npm:^1.1.1":
version: 1.1.1
resolution: "@cspell/dict-julia@npm:1.1.1"
checksum: 10/ffd13dad37e306a50166a27ee8d0c7d947ccb58c98f8287ede8e3955b6fa0ebb2244484dc8dd81206b86d2240762316036ce462553c734cfbca78891bda92566
languageName: node
linkType: hard
"@cspell/dict-k8s@npm:^1.0.12":
version: 1.0.12
resolution: "@cspell/dict-k8s@npm:1.0.12"
checksum: 10/84b2eb558789f764fcad994cc71d85c9b77b1ab639db2221cdae9912b2bc649e29487112e71ea12a72d94869e87125c0ee61a3e5e7b8d45eb02489b77803a405
languageName: node
linkType: hard
"@cspell/dict-kotlin@npm:^1.1.1":
version: 1.1.1
resolution: "@cspell/dict-kotlin@npm:1.1.1"
checksum: 10/8822138c76a1f6bb54ec33e470fbd403086a20532101bd9adf4e59464772266da0e379758a490d9ab87a9e0b89ca13e968f48f71334dd0b6881b4ab05bf6cc9d
languageName: node
linkType: hard
"@cspell/dict-latex@npm:^4.0.4":
version: 4.0.4
resolution: "@cspell/dict-latex@npm:4.0.4"
checksum: 10/09a33fc41edfe2710f123e43f423a97f29d74e7e9b68651989bbb33e47e6120d62e7b33c75c464a65259d1892522c0bfbc81f9592f4f75d6bb023da51eb7f0e4
languageName: node
linkType: hard
"@cspell/dict-lorem-ipsum@npm:^4.0.5":
version: 4.0.5
resolution: "@cspell/dict-lorem-ipsum@npm:4.0.5"
checksum: 10/7f4be03a7d2bfe9128f4f7d1f04b5cf5d525db2ffa86f1c3ca9ae7b2ccd774cd56dee9ede23d0291c502e365d7de925f5bf210ab4b5b745b0459fce13fd38820
languageName: node
linkType: hard
"@cspell/dict-lua@npm:^4.0.8":
version: 4.0.8
resolution: "@cspell/dict-lua@npm:4.0.8"
checksum: 10/3e0255147637c2df83e5eea7da70e5ccddd0be873123c79da1f12b9f590b1e516a27448be3cba31529ffdea769a5de866caa5d55f9d9a49026f0ceacebd9b3ba
languageName: node
linkType: hard
"@cspell/dict-makefile@npm:^1.0.5":
version: 1.0.5
resolution: "@cspell/dict-makefile@npm:1.0.5"
checksum: 10/bde75e635750234aa4e47e6904c5c5ffd9ede4c503daa015b085830414edf40860cfdbd04b1aa81b7b433f11abaab7d244093ba667e1124e7595777cc5dccf96
languageName: node
linkType: hard
"@cspell/dict-markdown@npm:^2.0.12":
version: 2.0.12
resolution: "@cspell/dict-markdown@npm:2.0.12"
peerDependencies:
"@cspell/dict-css": ^4.0.18
"@cspell/dict-html": ^4.0.12
"@cspell/dict-html-symbol-entities": ^4.0.4
"@cspell/dict-typescript": ^3.2.3
checksum: 10/20f9510b808a2b394ebae83257569c76ce23883f3902e32ffea5ef83d645052b7fba500e2c4ab96e669c93c250158327330a34453657bf2b6162e9d303148c44
languageName: node
linkType: hard
"@cspell/dict-monkeyc@npm:^1.0.11":
version: 1.0.11
resolution: "@cspell/dict-monkeyc@npm:1.0.11"
checksum: 10/6e896fd9596261ece639cdad4d03291f4faf92ed27d9257aae1f34f075b13a865287734d170a2e9ea228ac2b7de03eaaec795284b945c8a96ac24684ad56ba7a
languageName: node
linkType: hard
"@cspell/dict-node@npm:^5.0.8":
version: 5.0.8
resolution: "@cspell/dict-node@npm:5.0.8"
checksum: 10/6a008c8b82021e24124f619efdd485683f1dfb3c37ec4fe2b645e8d8002270c221869a19a5e2d17a978acb8d60292e5c5dd056aa0dd35b3e4fedf87e7b8afae4
languageName: node
linkType: hard
"@cspell/dict-npm@npm:^5.2.15":
version: 5.2.17
resolution: "@cspell/dict-npm@npm:5.2.17"
checksum: 10/400293f27ec8900db8dd1489e0828f4be3e8cff5e464e57406ecbc4c0ae054ee4bcffb19b69ef1d168affa6b5b6acc702d4fffba86b1a4d1fb3a4606856b63b3
languageName: node
linkType: hard
"@cspell/dict-php@npm:^4.0.15":
version: 4.0.15
resolution: "@cspell/dict-php@npm:4.0.15"
checksum: 10/91ef13fa4c4aff737eaecb7564bf19cf3b5873464474e0d5137fe9948a85b3e2136eae0119808cde0b0087a419afe919ea7dc8c1b9b4d64d61774c41da0c06cc
languageName: node
linkType: hard
"@cspell/dict-powershell@npm:^5.0.15":
version: 5.0.15
resolution: "@cspell/dict-powershell@npm:5.0.15"
checksum: 10/3e46e0e98d92e42d34eb297d6e1626bea15e4ad6774b3f855f07e02aa1f458e9e77ae33602a0ed604f8009a2b842d4fffe5a2ee6b9884c2b63b45799003120b9
languageName: node
linkType: hard
"@cspell/dict-public-licenses@npm:^2.0.15":
version: 2.0.15
resolution: "@cspell/dict-public-licenses@npm:2.0.15"
checksum: 10/a8580441c964a8c3ce4c4fed74189fa5752eb98e56baeb2608753e4deefb202c8f9d9f1869e17c5f2f1fc7bb1976854525ac50750109bb377b4cfa0a4eb12fe2
languageName: node
linkType: hard
"@cspell/dict-python@npm:^4.2.19":
version: 4.2.19
resolution: "@cspell/dict-python@npm:4.2.19"
dependencies:
"@cspell/dict-data-science": "npm:^2.0.9"
checksum: 10/1989e824f4ca6bca24d55b7229dcac76bebfa2e10138df666c17240c4896c0f23ae423e686b3a95ccd2e43a70541784b05a93dc080d4a30ae9eebecd709fbaff
languageName: node
linkType: hard
"@cspell/dict-r@npm:^2.1.1":
version: 2.1.1
resolution: "@cspell/dict-r@npm:2.1.1"
checksum: 10/70ac0a26fdd753633e2e1817f3ac0c475a5a0d92641ce2032fd5745d8fe32ca9f1d87b6d1318302b87e8a699229f2593db75f9618d0bdfb7809f0b331516efbf
languageName: node
linkType: hard
"@cspell/dict-ruby@npm:^5.0.9":
version: 5.0.9
resolution: "@cspell/dict-ruby@npm:5.0.9"
checksum: 10/57a752ff19f9484a042e859254eb6d487b46266f374faeb17e257b3583d94fbd908c0bd308e2a7d3b0169839cdd5a6d9fc12563955b69f26e8667acc43fbfd53
languageName: node
linkType: hard
"@cspell/dict-rust@npm:^4.0.12":
version: 4.0.12
resolution: "@cspell/dict-rust@npm:4.0.12"
checksum: 10/ba928f5538e09887f715713a6899d09ed7b1663c85d33c766adbaf22a95e01fa71d3736d5ff17c3c0f0a387c43756702fb1529e62e714ddec0df6cde9617ad20
languageName: node
linkType: hard
"@cspell/dict-scala@npm:^5.0.8":
version: 5.0.8
resolution: "@cspell/dict-scala@npm:5.0.8"
checksum: 10/f9d8d748a66cea454fbe3d6dc51dde03d58cf2a28a4a64698ac4022a91b65503b2b6f74206421488d4396949d9b09477699734ca05e28a79a9c2e6a39f65e2c5
languageName: node
linkType: hard
"@cspell/dict-shell@npm:1.1.1, @cspell/dict-shell@npm:^1.1.1":
version: 1.1.1
resolution: "@cspell/dict-shell@npm:1.1.1"
checksum: 10/c73e0913e80bbeb7da95ec4478e6827fb15dc3b2affee8c20a69b6e0aa9da3f7be0a2df1b490882f3d610641ddc081fd8fc36009960f0ad58feda01fbecd4542
languageName: node
linkType: hard
"@cspell/dict-software-terms@npm:^5.1.7":
version: 5.1.8
resolution: "@cspell/dict-software-terms@npm:5.1.8"
checksum: 10/5c30f48c8b72322ed15f7c0a424e8a2c81b124f47993124d6c45a233c12c6bac7ccf2124c3048aa86ee9b57bb448b6ddbe9852d0ed545ebb976566461774e143
languageName: node
linkType: hard
"@cspell/dict-sql@npm:^2.2.1":
version: 2.2.1
resolution: "@cspell/dict-sql@npm:2.2.1"
checksum: 10/c898c8f23e613ad1708dd92a8fbe5dac10e048ae8584a42c570697046c8841aa0518e10435fff34b9bdc84bb0cfd6a5307c990ed16f36253a0f2c31f739d3dce
languageName: node
linkType: hard
"@cspell/dict-svelte@npm:^1.0.7":
version: 1.0.7
resolution: "@cspell/dict-svelte@npm:1.0.7"
checksum: 10/ca739512b762731f7840243e0833bd135328cbef529d07803bc7b49a2452b1592ed318b80e55bb38caf807d51dd949029c7586a80529c6b942ce6a33842ca586
languageName: node
linkType: hard
"@cspell/dict-swift@npm:^2.0.6":
version: 2.0.6
resolution: "@cspell/dict-swift@npm:2.0.6"
checksum: 10/89ba40dcc7b54cc1af07560b69a9418a8c8c275da9cf64e0cf94e1052930bf360706575db59eb3237c8210073fa0ff87511012958d355f67ff3735138782f26d
languageName: node
linkType: hard
"@cspell/dict-terraform@npm:^1.1.3":
version: 1.1.3
resolution: "@cspell/dict-terraform@npm:1.1.3"
checksum: 10/d815557fde66895e14c6e9408dbcb17f46e4d56fd6c75f74fac48d5b4425f05fd9a60b8e874e2192e908e20f01ead382352842f4326355f7adf096dc23f8eaf7
languageName: node
linkType: hard
"@cspell/dict-typescript@npm:^3.2.3":
version: 3.2.3
resolution: "@cspell/dict-typescript@npm:3.2.3"
checksum: 10/3e0f76f8ca964e36de5b022bd53fe4005993dde260fc58ea5346801cacc12483106828cfe158f94509bed0b1bf52d7f4cb2509e69e4eda2a4f032e21ec75201b
languageName: node
linkType: hard
"@cspell/dict-vue@npm:^3.0.5":
version: 3.0.5
resolution: "@cspell/dict-vue@npm:3.0.5"
checksum: 10/3288b44c0362d5a67a090ebe667fba577c32c422090ba8935cf7c994e0444495eafeb1be8cc64cc4f2e23788794f70a85b243ba924c6d73ca5a734a21f978cbc
languageName: node
linkType: hard
"@cspell/dynamic-import@npm:9.2.1":
version: 9.2.1
resolution: "@cspell/dynamic-import@npm:9.2.1"
dependencies:
"@cspell/url": "npm:9.2.1"
import-meta-resolve: "npm:^4.2.0"
checksum: 10/dde4d126b9a02c5a63e63de16a8e2075bc0786e33c29d0f9230679eba503528ada926af6e75d1ea51a1af3ac7641990af2ee3e09a233640940251a2000755afc
languageName: node
linkType: hard
"@cspell/filetypes@npm:9.2.1":
version: 9.2.1
resolution: "@cspell/filetypes@npm:9.2.1"
checksum: 10/a1b9fc5804e0ac1899cc72371af57272be12cf5358aec919d9324dafcff8cc99bb5fcfbb473b00dcaa5e3a4d0390f7a55201111db8d228df6bdb9f559727fc3a
languageName: node
linkType: hard
"@cspell/strong-weak-map@npm:9.2.1":
version: 9.2.1
resolution: "@cspell/strong-weak-map@npm:9.2.1"
checksum: 10/e7a6849fd1a62a322a2ae2ee52a681b406bc4b76d01c15ef17c8aea3623f77b5a527a62af969a9f0d133d8c3397b2e0f66d522d0523671e4489c9efe7cd2fc13
languageName: node
linkType: hard
"@cspell/url@npm:9.2.1":
version: 9.2.1
resolution: "@cspell/url@npm:9.2.1"
checksum: 10/b2ff85fa87dcdb752b048e6fcf21610ae9b8d6eb79d756330acac603ddfa390ca840fb1923274d1db5c6e0354e656c834b78a7e1bf5ce662522eabbeef1e5182
languageName: node
linkType: hard
"@emnapi/core@npm:^1.1.0":
version: 1.5.0
resolution: "@emnapi/core@npm:1.5.0"
dependencies:
"@emnapi/wasi-threads": "npm:1.1.0"
tslib: "npm:^2.4.0"
checksum: 10/b500a69df001580731b0d355298b58832d44ab176937c0db7d10073a396f7a801ebcca10581f125a1cd88af4e6ecd6fbb04b78629cc703a424218b3a36d7bf50
languageName: node
linkType: hard
"@emnapi/runtime@npm:^1.1.0":
version: 1.5.0
resolution: "@emnapi/runtime@npm:1.5.0"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10/5311ce854306babc77f4bd94c2f973722714a0fab93c126239104ad52dea16a147bfed4c4cff3ca1eb32709607221c25d2f747ae8524cbeb9088058f02ff962b
languageName: node
linkType: hard
"@emnapi/wasi-threads@npm:1.1.0":
version: 1.1.0
resolution: "@emnapi/wasi-threads@npm:1.1.0"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10/0d557e75262d2f4c95cb2a456ba0785ef61f919ce488c1d76e5e3acfd26e00c753ef928cd80068363e0c166ba8cc0141305daf0f81aad5afcd421f38f11e0f4e
languageName: node
linkType: hard
"@es-joy/jsdoccomment@npm:~0.50.2":
version: 0.50.2
resolution: "@es-joy/jsdoccomment@npm:0.50.2"
dependencies:
"@types/estree": "npm:^1.0.6"
"@typescript-eslint/types": "npm:^8.11.0"
comment-parser: "npm:1.4.1"
esquery: "npm:^1.6.0"
jsdoc-type-pratt-parser: "npm:~4.1.0"
checksum: 10/a309f01bd1691c6991e5efb78057ec9122ef33208fec2464d7b9e5838964b948fa46c9c944a09218a752b49267f05ac15b557018c8a1897fd8df47b944b4537f
languageName: node
linkType: hard
"@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0, @eslint-community/eslint-utils@npm:^4.5.1, @eslint-community/eslint-utils@npm:^4.7.0":
version: 4.9.0
resolution: "@eslint-community/eslint-utils@npm:4.9.0"
dependencies:
eslint-visitor-keys: "npm:^3.4.3"
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
checksum: 10/89b1eb3137e14c379865e60573f524fcc0ee5c4b0c7cd21090673e75e5a720f14b92f05ab2d02704c2314b67e67b6f96f3bb209ded6b890ced7b667aa4bf1fa2
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.10.0, @eslint-community/regexpp@npm:^4.6.1":
version: 4.12.1
resolution: "@eslint-community/regexpp@npm:4.12.1"
checksum: 10/c08f1dd7dd18fbb60bdd0d85820656d1374dd898af9be7f82cb00451313402a22d5e30569c150315b4385907cdbca78c22389b2a72ab78883b3173be317620cc
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^2.1.4":
version: 2.1.4
resolution: "@eslint/eslintrc@npm:2.1.4"
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: 10/7a3b14f4b40fc1a22624c3f84d9f467a3d9ea1ca6e9a372116cb92507e485260359465b58e25bcb6c9981b155416b98c9973ad9b796053fd7b3f776a6946bce8
languageName: node
linkType: hard
"@eslint/js@npm:8.57.1":
version: 8.57.1
resolution: "@eslint/js@npm:8.57.1"
checksum: 10/7562b21be10c2adbfa4aa5bb2eccec2cb9ac649a3569560742202c8d1cb6c931ce634937a2f0f551e078403a1c1285d6c2c0aa345dafc986149665cd69fe8b59
languageName: node
linkType: hard
"@fastify/busboy@npm:^2.0.0":
version: 2.1.1
resolution: "@fastify/busboy@npm:2.1.1"
checksum: 10/2bb8a7eca8289ed14c9eb15239bc1019797454624e769b39a0b90ed204d032403adc0f8ed0d2aef8a18c772205fa7808cf5a1b91f21c7bfc7b6032150b1062c5
languageName: node
linkType: hard
"@gitmoji/commit-types@npm:1.1.5":
version: 1.1.5
resolution: "@gitmoji/commit-types@npm:1.1.5"
checksum: 10/132aa891aff0b23e0db3e9aa629ed758e5432465e8af9bc32e6a7a186a9708fc83dced2d6ef75eb43b725a3de0ef33908012c7d0cf2e8e7a9716d170e2814adc
languageName: node
linkType: hard
"@gitmoji/gitmoji-regex@npm:1.0.0":
version: 1.0.0
resolution: "@gitmoji/gitmoji-regex@npm:1.0.0"
dependencies:
emoji-regex: "npm:^10"
gitmojis: "npm:^3"
checksum: 10/92cb460250f9dfcb6a7f20cdd5bffc1a956079bd67066919cf9ac3248b3d8abbcd60c7d506b3ce393cc52f11eed5825254a2b9a910a09c942e0ef4454c69188a
languageName: node
linkType: hard
"@gitmoji/parser-opts@npm:1.4.0":
version: 1.4.0
resolution: "@gitmoji/parser-opts@npm:1.4.0"
dependencies:
"@gitmoji/gitmoji-regex": "npm:1.0.0"
checksum: 10/4e39d5828539c6bbe5fd18695c689a7909e0d5d41b1342acbe472fec5671f76c7e162c80baf6cc2d68481b9a67cb79f31b2a203cddc68b6138f761c1372ea74b
languageName: node
linkType: hard
"@humanwhocodes/config-array@npm:^0.13.0":
version: 0.13.0
resolution: "@humanwhocodes/config-array@npm:0.13.0"
dependencies:
"@humanwhocodes/object-schema": "npm:^2.0.3"
debug: "npm:^4.3.1"
minimatch: "npm:^3.0.5"
checksum: 10/524df31e61a85392a2433bf5d03164e03da26c03d009f27852e7dcfdafbc4a23f17f021dacf88e0a7a9fe04ca032017945d19b57a16e2676d9114c22a53a9d11
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/object-schema@npm:^2.0.3":
version: 2.0.3
resolution: "@humanwhocodes/object-schema@npm:2.0.3"
checksum: 10/05bb99ed06c16408a45a833f03a732f59bf6184795d4efadd33238ff8699190a8c871ad1121241bb6501589a9598dc83bf25b99dcbcf41e155cdf36e35e937a3
languageName: node
linkType: hard
"@hutson/parse-repository-url@npm:^3.0.0":
version: 3.0.2
resolution: "@hutson/parse-repository-url@npm:3.0.2"
checksum: 10/dae0656f2e77315a3027ab9ca438ed344bf78a5fda7b145f65a1fface20dfb17e94e1d31e146c8b76de4657c21020aabc72dc53b53941c9f5fe2c27416559283
languageName: node
linkType: hard
"@inquirer/external-editor@npm:^1.0.0":
version: 1.0.2
resolution: "@inquirer/external-editor@npm:1.0.2"
dependencies:
chardet: "npm:^2.1.0"
iconv-lite: "npm:^0.7.0"
peerDependencies:
"@types/node": ">=18"
peerDependenciesMeta:
"@types/node":
optional: true
checksum: 10/d0c5c73249b8153f4cf872c4fba01c57a7653142a4cad496f17ed03ef3769330a4b3c519b68d70af69d4bb33003d2599b66b2242be85411c0b027ff383619666
languageName: node
linkType: hard
"@ionic/swiftlint-config@npm:1.1.2":
version: 1.1.2
resolution: "@ionic/swiftlint-config@npm:1.1.2"
checksum: 10/c99c2cd47ea0899c50068c9c4ab92db645ca5df22d69b94a1cad3e01b6a179628e70161e85539240a38a5c41bc90958bee3b9519f6d0108e3287dfb6d3efeb22
languageName: node
linkType: hard
"@ionic/utils-array@npm:2.1.5":
version: 2.1.5
resolution: "@ionic/utils-array@npm:2.1.5"
dependencies:
debug: "npm:^4.0.0"
tslib: "npm:^2.0.1"
checksum: 10/eab54e5ae6c3a7d435e420986cd7a0766c00506a829e001ddfc4124542adace6dd0f0c1fc51fa8f5eaa69bd09354a0b5541ff9b39b61763cb0e415936578fd4b
languageName: node
linkType: hard
"@ionic/utils-fs@npm:3.1.6":
version: 3.1.6
resolution: "@ionic/utils-fs@npm:3.1.6"
dependencies:
"@types/fs-extra": "npm:^8.0.0"
debug: "npm:^4.0.0"
fs-extra: "npm:^9.0.0"
tslib: "npm:^2.0.1"
checksum: 10/02ec21067436ebaec7a029ed9a045e366f47b77f3149df64ce2bd3a26e46c84e5afeec8cda0da5dc6b77ee901de164f1fe61a3793da5962a1c945273454f599d
languageName: node
linkType: hard
"@ionic/utils-object@npm:2.1.5":
version: 2.1.5
resolution: "@ionic/utils-object@npm:2.1.5"
dependencies:
debug: "npm:^4.0.0"
tslib: "npm:^2.0.1"
checksum: 10/123d1fe5aabe984bd5c93f7e70b3166e47007673218fd9347747c9005be0b10b0c639a8eaf36b77e12337d1cc90171624af06620bf9e9cccb2b8414ad80bc4a5