-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
8386 lines (7505 loc) · 292 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: 7
cacheKey: 9
"@actions/core@npm:1.10.0, @actions/core@npm:^1.10.0":
version: 1.10.0
resolution: "@actions/core@npm:1.10.0"
dependencies:
"@actions/http-client": "npm:^2.0.1"
uuid: "npm:^8.3.2"
checksum: 61bceec8b8f233da0b678f011e2ce6f1e46de7493d0c9eafbcbff45c46451fb714bd84be9bcc71b0813eab4bca5bc41063ba787eefccea3ed59c1c69e9841f7a
languageName: node
linkType: hard
"@actions/http-client@npm:^2.0.1":
version: 2.0.1
resolution: "@actions/http-client@npm:2.0.1"
dependencies:
tunnel: "npm:^0.0.6"
checksum: 855409b15276e888e656d9970f3662c11c0db95b5e018dbdc1be24f33144f8536b87d22ce6ec2c2d099442d27cee3b1c9d38f9d1366abe48607062beb2d2f168
languageName: node
linkType: hard
"@ardatan/sync-fetch@larsgw/sync-fetch#head=worker_threads":
version: 0.3.1
resolution: "@ardatan/sync-fetch@https://github.com/larsgw/sync-fetch.git#commit=3fb71aeed5ff6655421064c4e4b234f524896cd2"
dependencies:
buffer: "npm:^5.7.0"
node-fetch: "npm:^2.6.1"
checksum: 5fcb78da9f08a66e094d680c0f5228b13a61fa33ca33f548f740c0d237583e469b43519f12b7855df6a92ea0b71ae4a9c0639d5a0fdd1a92ff5cee698cad4510
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/code-frame@npm:7.18.6"
dependencies:
"@babel/highlight": "npm:^7.18.6"
checksum: eb27d165ea1c7c23e71a2a6f64225fe0ca0b2a39f5c0b57fda2a62dfa845799ca94886b08014f8fd4a711538cc6b1c89b9fc1dca6a5148893932bc03412ca848
languageName: node
linkType: hard
"@babel/generator@npm:^7.18.13":
version: 7.18.13
resolution: "@babel/generator@npm:7.18.13"
dependencies:
"@babel/types": "npm:^7.18.13"
"@jridgewell/gen-mapping": "npm:^0.3.2"
jsesc: "npm:^2.5.1"
checksum: 286701ffa2dc7c272e07834d429bc152c3eccfd89595c1a204ace308be668494d7cab3b103bd6e5003769497934cf872befe21dd3c0f4f68a98ada0fe35b3152
languageName: node
linkType: hard
"@babel/helper-environment-visitor@npm:^7.18.9":
version: 7.18.9
resolution: "@babel/helper-environment-visitor@npm:7.18.9"
checksum: 6a770ab046578d692f954213680f66d0764a92d608fcc121cf87c575223c44729fdebecc08550d0e18a5b22a3a72669c01de5351b6c1eff75a96b3167dbfe922
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.18.9":
version: 7.18.9
resolution: "@babel/helper-function-name@npm:7.18.9"
dependencies:
"@babel/template": "npm:^7.18.6"
"@babel/types": "npm:^7.18.9"
checksum: 79b08fba5255e362002f5ef4b0b757b9767f7d8558397a3da0b5333c6e0a2ce2828aef610ed41138d01057343a4d86809b63c453ac5c1f6b8b8e6f5665f6f4bb
languageName: node
linkType: hard
"@babel/helper-hoist-variables@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-hoist-variables@npm:7.18.6"
dependencies:
"@babel/types": "npm:^7.18.6"
checksum: 462ef0d14fbe6861cee3a2c2bee1eff76d31ec94230c147684d55fa65351784c4afffaa62a8a540caec659d47ef5641707cdb99ce049f1bf2995cfcccace537a
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-split-export-declaration@npm:7.18.6"
dependencies:
"@babel/types": "npm:^7.18.6"
checksum: a7834c5b54600542460aa278b0e988178ebe1905df856df909e4fdafffcaa05fc1688e5504a6f388ca1bc36dbdb78a56af422b4a7795876680451d86e55055b9
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.18.10":
version: 7.18.10
resolution: "@babel/helper-string-parser@npm:7.18.10"
checksum: 560311d97de8023c64551ba8525dc0117cd11f908ab61451f3f3ac679a1b0781e926249faadd147001c535d5aff5d45d72bc7eb72c1e8e756338b288ca3f6133
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.18.6, @babel/helper-validator-identifier@npm:^7.19.1":
version: 7.19.1
resolution: "@babel/helper-validator-identifier@npm:7.19.1"
checksum: 089fdf605ee8dfa3004cd84c69e655ff9ab8bdb4e7fa02bf0012db728c6247acb599ca1118d2f9124d7b417fc5793ee348f2da8bc64be230b3b13ba7cd4364cc
languageName: node
linkType: hard
"@babel/highlight@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/highlight@npm:7.18.6"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.18.6"
chalk: "npm:^2.0.0"
js-tokens: "npm:^4.0.0"
checksum: b8eeb1d38327c635004b3ae946ff334bb994334a5fdd874e216e62bbe3b8f8f10c901c3795c25db7c8e49eb5a56948b9dbe38c3800c4f977016402997dacedae
languageName: node
linkType: hard
"@babel/parser@npm:^7.16.8, @babel/parser@npm:^7.18.10, @babel/parser@npm:^7.18.13":
version: 7.18.13
resolution: "@babel/parser@npm:7.18.13"
bin:
parser: ./bin/babel-parser.js
checksum: a0ca562c6691210519906ef3c385502003cbc17a7f8837a6da13fad044a69316fa4fe285df11ca3578bbb41fe2d4d8ff9369082c5aff816d3127fe3cc4154f4d
languageName: node
linkType: hard
"@babel/template@npm:^7.18.6":
version: 7.18.10
resolution: "@babel/template@npm:7.18.10"
dependencies:
"@babel/code-frame": "npm:^7.18.6"
"@babel/parser": "npm:^7.18.10"
"@babel/types": "npm:^7.18.10"
checksum: 8d820647ae45c8fcc7d9c52bfb89f94bb96fc0d0fb71903b6619e176f6744be773a8d8ab0fcbb3e7208448ca71016580df2b1e40c685061154030f339e47e8df
languageName: node
linkType: hard
"@babel/traverse@npm:^7.16.8":
version: 7.18.13
resolution: "@babel/traverse@npm:7.18.13"
dependencies:
"@babel/code-frame": "npm:^7.18.6"
"@babel/generator": "npm:^7.18.13"
"@babel/helper-environment-visitor": "npm:^7.18.9"
"@babel/helper-function-name": "npm:^7.18.9"
"@babel/helper-hoist-variables": "npm:^7.18.6"
"@babel/helper-split-export-declaration": "npm:^7.18.6"
"@babel/parser": "npm:^7.18.13"
"@babel/types": "npm:^7.18.13"
debug: "npm:^4.1.0"
globals: "npm:^11.1.0"
checksum: 78768608a9f1a0efdb326b36ad614221dc86984df639f06160f793c28b37368de067e9a20e4979b33dcd72833f34f7b612af8c6652f4107a5ce036722290bf8f
languageName: node
linkType: hard
"@babel/types@npm:^7.16.8, @babel/types@npm:^7.18.10, @babel/types@npm:^7.18.13, @babel/types@npm:^7.18.6, @babel/types@npm:^7.18.9, @babel/types@npm:^7.8.3":
version: 7.18.13
resolution: "@babel/types@npm:7.18.13"
dependencies:
"@babel/helper-string-parser": "npm:^7.18.10"
"@babel/helper-validator-identifier": "npm:^7.18.6"
to-fast-properties: "npm:^2.0.0"
checksum: 7eaad815d59d6c108ffb2ada375d8052da4bc1670c6cdc87db9db4fe1480456f601abc54dac8b2ceccf75585350f8f2c97a13308a86a802a1f1c1d21f40d9662
languageName: node
linkType: hard
"@bcoe/v8-coverage@npm:^0.2.3":
version: 0.2.3
resolution: "@bcoe/v8-coverage@npm:0.2.3"
checksum: 86336400d6fb1a8263a3e7242ad7ed870f5efae7cd8c2b18df45fa11adc9af035bac68c0da68c0f67e78b3f09ef49efe2e84c4912ddc48e2d12f30ec474c81cc
languageName: node
linkType: hard
"@commitlint/cli@npm:17.3.0":
version: 17.3.0
resolution: "@commitlint/cli@npm:17.3.0"
dependencies:
"@commitlint/format": "npm:^17.0.0"
"@commitlint/lint": "npm:^17.3.0"
"@commitlint/load": "npm:^17.3.0"
"@commitlint/read": "npm:^17.2.0"
"@commitlint/types": "npm:^17.0.0"
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: d35477abf3c454cb4751e766f63f53f3f0bbeb6919a9066ba802a126c91f1a6da79e909a17f50904a7462ef5c960fa9543590397645854d4c798bdf3608bae6b
languageName: node
linkType: hard
"@commitlint/config-conventional@npm:17.3.0":
version: 17.3.0
resolution: "@commitlint/config-conventional@npm:17.3.0"
dependencies:
conventional-changelog-conventionalcommits: "npm:^5.0.0"
checksum: 7e6c9496eb4561d9e1d75d482ad42e16d52786b9d5c1d3cb4c1f98ebc0ba45a541ce09c167167c98d33765434311e2f37d2bfb1439418e288b96f9d3ce1c5849
languageName: node
linkType: hard
"@commitlint/config-validator@npm:^17.1.0":
version: 17.1.0
resolution: "@commitlint/config-validator@npm:17.1.0"
dependencies:
"@commitlint/types": "npm:^17.0.0"
ajv: "npm:^8.11.0"
checksum: d19037d356e06612a55ba915e66a15719429cbf9fa162247b96b851be2047d5a93684cca99ec14058a3affd001e9d91ebdea10c9874d1f03042364b2ce6313b1
languageName: node
linkType: hard
"@commitlint/ensure@npm:^17.3.0":
version: 17.3.0
resolution: "@commitlint/ensure@npm:17.3.0"
dependencies:
"@commitlint/types": "npm:^17.0.0"
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: 10d3923496f126234238c40afdccec294ea840fc42481e80dd5e22e06c1aceaf063b2d5d48fce5937462a42ecf504998af4e21456c31a5b3b14861b68e8cdaf3
languageName: node
linkType: hard
"@commitlint/execute-rule@npm:^17.0.0":
version: 17.0.0
resolution: "@commitlint/execute-rule@npm:17.0.0"
checksum: f84c8db196347ad01563ec372ca8a06076c5fd5c136f1a7022eccb76f7f1c9f7859dab8d36bff411a5ac9fdb8fe733f0bd963b9b87889d065d015ff3af4294c6
languageName: node
linkType: hard
"@commitlint/format@npm:^17.0.0":
version: 17.0.0
resolution: "@commitlint/format@npm:17.0.0"
dependencies:
"@commitlint/types": "npm:^17.0.0"
chalk: "npm:^4.1.0"
checksum: 70a19eb1d49f27188f6bd2fa3f373c0e72f993b8d2c41ba699645259c0cfb99ccaee9045c16a6b59a6a469b3d7dda644683a40a86973dd8b7511acf4c25d22ec
languageName: node
linkType: hard
"@commitlint/is-ignored@npm:^17.2.0":
version: 17.2.0
resolution: "@commitlint/is-ignored@npm:17.2.0"
dependencies:
"@commitlint/types": "npm:^17.0.0"
semver: "npm:7.3.7"
checksum: 3b9db83c03a33f005282093189a9e1dd06eaf91bbbca50bcf15ba2aad28a9efaf0da4053c75425a4aead31b1d899fca8261b79fe4d8d528751ddf4eb85bc4857
languageName: node
linkType: hard
"@commitlint/lint@npm:^17.3.0":
version: 17.3.0
resolution: "@commitlint/lint@npm:17.3.0"
dependencies:
"@commitlint/is-ignored": "npm:^17.2.0"
"@commitlint/parse": "npm:^17.2.0"
"@commitlint/rules": "npm:^17.3.0"
"@commitlint/types": "npm:^17.0.0"
checksum: 379a527c1e246d44f2853857c236dad0a85d120172574a4b645321c3a7e4ef6e951ae90c779763ce969bbdef37ae4ba401a18118edcb37d99e5027936e29b059
languageName: node
linkType: hard
"@commitlint/load@npm:^17.3.0":
version: 17.3.0
resolution: "@commitlint/load@npm:17.3.0"
dependencies:
"@commitlint/config-validator": "npm:^17.1.0"
"@commitlint/execute-rule": "npm:^17.0.0"
"@commitlint/resolve-extends": "npm:^17.3.0"
"@commitlint/types": "npm:^17.0.0"
"@types/node": "npm:^14.0.0"
chalk: "npm:^4.1.0"
cosmiconfig: "npm:^7.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"
checksum: 76f8b9a0b3a0d5e6f8ece13d5466d5bce8f97ef1e46ae800508bb2bfea67e53a90333a3a8edcc4072d4d23f7fffc18eab29fbabb072029d528ad1a25f1b56bc4
languageName: node
linkType: hard
"@commitlint/message@npm:^17.2.0":
version: 17.2.0
resolution: "@commitlint/message@npm:17.2.0"
checksum: a6d463a9a18025d39927df0c16d6fdc4422d9c7edc7ff73c546f1a4b2f1f027de5d9762e4e7d1492007dc75d0547bf4d20f94c6741430050d757288987aceb95
languageName: node
linkType: hard
"@commitlint/parse@npm:^17.2.0":
version: 17.2.0
resolution: "@commitlint/parse@npm:17.2.0"
dependencies:
"@commitlint/types": "npm:^17.0.0"
conventional-changelog-angular: "npm:^5.0.11"
conventional-commits-parser: "npm:^3.2.2"
checksum: 2ac22d4a9a3319a8d5d58f126532578f6bda491adf37efe2401c60dc795cbb3cf5fe7174de31e30eb8d2b70ff5618969cdd7f453143298a4d5942a29b1ee5ad6
languageName: node
linkType: hard
"@commitlint/read@npm:^17.2.0":
version: 17.2.0
resolution: "@commitlint/read@npm:17.2.0"
dependencies:
"@commitlint/top-level": "npm:^17.0.0"
"@commitlint/types": "npm:^17.0.0"
fs-extra: "npm:^10.0.0"
git-raw-commits: "npm:^2.0.0"
minimist: "npm:^1.2.6"
checksum: 516d9d757da37bb640962180284c6ef79db86bec33734d6e381c71a649e6223961d7dbf98ce93867300170afa7da4e7b9925f5c061cdf2d7ea7430d21e236892
languageName: node
linkType: hard
"@commitlint/resolve-extends@npm:^17.3.0":
version: 17.3.0
resolution: "@commitlint/resolve-extends@npm:17.3.0"
dependencies:
"@commitlint/config-validator": "npm:^17.1.0"
"@commitlint/types": "npm:^17.0.0"
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: eb7e33e46c3d6fcea89713091cfb31da6566d06ecce7c3db48e1895e58a0cc95ffedb6c2562cd6677b8add12d831b4a55c6acfbcc1c2a6a2a88390aa8c82f06d
languageName: node
linkType: hard
"@commitlint/rules@npm:^17.3.0":
version: 17.3.0
resolution: "@commitlint/rules@npm:17.3.0"
dependencies:
"@commitlint/ensure": "npm:^17.3.0"
"@commitlint/message": "npm:^17.2.0"
"@commitlint/to-lines": "npm:^17.0.0"
"@commitlint/types": "npm:^17.0.0"
execa: "npm:^5.0.0"
checksum: 3dcd14fe56f85adb179b819dc85d7cf2789451c9748a0fd631e7fc694f08b0c6b4c9534f11657df5b5f653adccb0bf3cc072de441cae40886b85ef24424a0739
languageName: node
linkType: hard
"@commitlint/to-lines@npm:^17.0.0":
version: 17.0.0
resolution: "@commitlint/to-lines@npm:17.0.0"
checksum: 73abd1520dd77257d1873c82a60563987f6eb8a7d850d5c21c453df2930eba2c2c477d60b3c63cc9a04cfa57b944a1b337f2988262439fbe1e8ffff1a90a4976
languageName: node
linkType: hard
"@commitlint/top-level@npm:^17.0.0":
version: 17.0.0
resolution: "@commitlint/top-level@npm:17.0.0"
dependencies:
find-up: "npm:^5.0.0"
checksum: 114844a8ba87b9bf5cea3f81f6ce821b3e5c3b4d284d7b03b934036999908148f473fc88cc5d29e821a5cf9a5c3a0071b59df52e801f4ee432ca103142815adb
languageName: node
linkType: hard
"@commitlint/types@npm:^17.0.0":
version: 17.0.0
resolution: "@commitlint/types@npm:17.0.0"
dependencies:
chalk: "npm:^4.1.0"
checksum: 4ffe839678f415425b5218128fd666de42d6ebc9a7437cc6aa959bfaf98ef3a975b6d8907d7f168303c84f2c1d7db418946c97e885dd4f273da0fae066be2daa
languageName: node
linkType: hard
"@cspell/cspell-bundled-dicts@npm:6.14.3":
version: 6.14.3
resolution: "@cspell/cspell-bundled-dicts@npm:6.14.3"
dependencies:
"@cspell/dict-ada": "npm:^4.0.0"
"@cspell/dict-aws": "npm:^3.0.0"
"@cspell/dict-bash": "npm:^4.1.0"
"@cspell/dict-companies": "npm:^3.0.3"
"@cspell/dict-cpp": "npm:^4.0.0"
"@cspell/dict-cryptocurrencies": "npm:^3.0.1"
"@cspell/dict-csharp": "npm:^4.0.1"
"@cspell/dict-css": "npm:^4.0.0"
"@cspell/dict-dart": "npm:^2.0.0"
"@cspell/dict-django": "npm:^4.0.0"
"@cspell/dict-docker": "npm:^1.1.3"
"@cspell/dict-dotnet": "npm:^4.0.0"
"@cspell/dict-elixir": "npm:^4.0.0"
"@cspell/dict-en-gb": "npm:1.1.33"
"@cspell/dict-en_us": "npm:^4.1.0"
"@cspell/dict-filetypes": "npm:^3.0.0"
"@cspell/dict-fonts": "npm:^3.0.0"
"@cspell/dict-fullstack": "npm:^3.0.0"
"@cspell/dict-git": "npm:^2.0.0"
"@cspell/dict-golang": "npm:^5.0.0"
"@cspell/dict-haskell": "npm:^4.0.0"
"@cspell/dict-html": "npm:^4.0.1"
"@cspell/dict-html-symbol-entities": "npm:^4.0.0"
"@cspell/dict-java": "npm:^5.0.2"
"@cspell/dict-latex": "npm:^3.0.0"
"@cspell/dict-lorem-ipsum": "npm:^3.0.0"
"@cspell/dict-lua": "npm:^3.0.0"
"@cspell/dict-node": "npm:^4.0.1"
"@cspell/dict-npm": "npm:^4.0.1"
"@cspell/dict-php": "npm:^3.0.3"
"@cspell/dict-powershell": "npm:^3.0.0"
"@cspell/dict-public-licenses": "npm:^2.0.0"
"@cspell/dict-python": "npm:^4.0.0"
"@cspell/dict-r": "npm:^2.0.0"
"@cspell/dict-ruby": "npm:^3.0.0"
"@cspell/dict-rust": "npm:^3.0.0"
"@cspell/dict-scala": "npm:^3.0.0"
"@cspell/dict-software-terms": "npm:^3.0.5"
"@cspell/dict-sql": "npm:^2.0.0"
"@cspell/dict-swift": "npm:^2.0.0"
"@cspell/dict-typescript": "npm:^3.0.1"
"@cspell/dict-vue": "npm:^3.0.0"
checksum: 0419fdfba8c8f5b9d5cb4241b605704ba37251c3750e2607d51f21817d11de9020035ff6f4eef1870ad2afcdf06f2e10ab71251af7677bffaeab8aeaf5c73194
languageName: node
linkType: hard
"@cspell/cspell-pipe@npm:6.14.3":
version: 6.14.3
resolution: "@cspell/cspell-pipe@npm:6.14.3"
checksum: 1da05c780000e19b2f21044527e7784a8839141c3d13629abb13a28861a558cd8f1a284bdd17aab798720c43222bfb93a8dfd3cbc9cbbe721f1f14c88cba6603
languageName: node
linkType: hard
"@cspell/cspell-service-bus@npm:6.14.3":
version: 6.14.3
resolution: "@cspell/cspell-service-bus@npm:6.14.3"
checksum: 53cd81d9691d790419027aa0657871603234981f5010f00accfb6937e2274db8b8f1b6975689d3347dbcbd8fcc3b557cb11fbcea52fd3157a1cc8c8a1225bf3e
languageName: node
linkType: hard
"@cspell/cspell-types@npm:6.14.3":
version: 6.14.3
resolution: "@cspell/cspell-types@npm:6.14.3"
checksum: 4edc9f0ff609f8aa93ef6b5569713e001a45da68bbbde7035702ca35a4222a38ffce7ebac83fbc44c3cd6ee73acb630dc94603d834b27d143ee52461cbfc857d
languageName: node
linkType: hard
"@cspell/dict-ada@npm:^4.0.0":
version: 4.0.0
resolution: "@cspell/dict-ada@npm:4.0.0"
checksum: a6c0744ecfc4496206c4b7f1134b11afc13ad5d621565e0f491279feb934c98266e37af7587bd331349b05ad299aa9cf3ba851803bac53a4b2971b4077930461
languageName: node
linkType: hard
"@cspell/dict-aws@npm:^3.0.0":
version: 3.0.0
resolution: "@cspell/dict-aws@npm:3.0.0"
checksum: 3b9db5a181f16b388b48fe70a84a1230f9f45a76c2089e9d2b38966284c4b31aa916d2db8ba6205d4036200b5d3915743a4329d242dc6f90280d2db5688d53f7
languageName: node
linkType: hard
"@cspell/dict-bash@npm:^4.1.0":
version: 4.1.0
resolution: "@cspell/dict-bash@npm:4.1.0"
checksum: 7952c6cbd259dfb2217d0b4a3dc34ba7dd8ad88fdca21e98baac49f5f06304165552b2b42dc76a43d13918729dc058cd7c28f952d54595b7bd7d3c7e68c6e798
languageName: node
linkType: hard
"@cspell/dict-companies@npm:^3.0.3":
version: 3.0.3
resolution: "@cspell/dict-companies@npm:3.0.3"
checksum: bfeed087fd7d0c566db9a5f7cc6fb6709613259b1a8b9799a46897a619a7f8b975a5b1e6b786a29376bd31694607ff823a3b991f5afbfd5adc8abdee0ee8b718
languageName: node
linkType: hard
"@cspell/dict-cpp@npm:^4.0.0":
version: 4.0.0
resolution: "@cspell/dict-cpp@npm:4.0.0"
checksum: 1a3796d4cc9a733487b8ee368ecdaac000c52bdd4562d844b3501de21f3d21ad128f0d8b402b2b56f1f7656fdacd5c39dbe9dc65ff360805358f6aa77bb3d381
languageName: node
linkType: hard
"@cspell/dict-cryptocurrencies@npm:^3.0.1":
version: 3.0.1
resolution: "@cspell/dict-cryptocurrencies@npm:3.0.1"
checksum: dbffe55003016069ad68f11853644e04d9f48933df35e8595612abd06cce3784fb6285612ea03818238f340626ab5b5c668582f8c04245029cd13cffba44be1a
languageName: node
linkType: hard
"@cspell/dict-csharp@npm:^4.0.1":
version: 4.0.1
resolution: "@cspell/dict-csharp@npm:4.0.1"
checksum: 29a8c08ddd31a74c2a6917d7d6f3f95adf527b670fc337d20ceaba78353730657afdb2991e10e3753ba3859a3b12527cfd44664903f956dd68011389c9d4c287
languageName: node
linkType: hard
"@cspell/dict-css@npm:^4.0.0":
version: 4.0.0
resolution: "@cspell/dict-css@npm:4.0.0"
checksum: 3a193c7c48a352dd746188aac4cd6525fd26190f4010dbe0f3bf93e1001ed115520f2a0ccd9c8246bc862c30b6c735609a278da8b2b3c5bb938f1c25a9d5e25b
languageName: node
linkType: hard
"@cspell/dict-dart@npm:^2.0.0":
version: 2.0.0
resolution: "@cspell/dict-dart@npm:2.0.0"
checksum: 24ae83fdd038ce9e2f58dfe9a433441deb2e02348308a426c277c44d182bccd7ea30f03d5631f6bf4a3df7cb25303813450c59c7bbe52a3e2557255e0378aa39
languageName: node
linkType: hard
"@cspell/dict-django@npm:^4.0.0":
version: 4.0.0
resolution: "@cspell/dict-django@npm:4.0.0"
checksum: ddc831f713449733dacce5fcfb7c4fa2e503e1babbceeff71c32cef491af90cb35fcf895b3e58660ced595fd0acc0f04270fe755fce9fe3a797ae4c2b01a56ac
languageName: node
linkType: hard
"@cspell/dict-docker@npm:^1.1.3":
version: 1.1.3
resolution: "@cspell/dict-docker@npm:1.1.3"
checksum: 1c9df4dd9f80633d73020f84176f87a91140d4265d854cbb81250f2bfe01f0bdd44b4ae14de246c4668c83e125146d75e2beeff8d1a25c4111eeb0cb640f9ad6
languageName: node
linkType: hard
"@cspell/dict-dotnet@npm:^4.0.0":
version: 4.0.0
resolution: "@cspell/dict-dotnet@npm:4.0.0"
checksum: 42c7ef376b5e748aaf23d1a3e468102675d17c406a9fe6bed32289305a5d45e9a4ca52c27e9715e647a1451ffc7254fe7a0a2cd77391a9a9a02c7707a514c228
languageName: node
linkType: hard
"@cspell/dict-elixir@npm:^4.0.0":
version: 4.0.0
resolution: "@cspell/dict-elixir@npm:4.0.0"
checksum: 3ae86eef5480ecbdd762106fbd13202a0adc75eea204bfa358cc4c20a9f296cbc899ec327e55111e96492448b8a5390f1eed5ea5e7dc04bcaefe23febeb88753
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: 8d250e3c7cdcfcef022fddfba4f12e697d9c08748a136719976e73fc74d439ceb7e630bed1d93d71995deb47a410ca66532aceb90e88c6e5e98c2c92ace738b2
languageName: node
linkType: hard
"@cspell/dict-en_us@npm:^4.1.0":
version: 4.1.0
resolution: "@cspell/dict-en_us@npm:4.1.0"
checksum: b76796cddcda6a281f7e84144835e7285b93829fd2290581c5908b55d7b2423e0b030318706dc5a85434ce41aa3dd02a464610559232ed0a01f560c6a6e54202
languageName: node
linkType: hard
"@cspell/dict-filetypes@npm:^3.0.0":
version: 3.0.0
resolution: "@cspell/dict-filetypes@npm:3.0.0"
checksum: b953fbf81f27fa0b89b8f99db3bf0f899be837dfc94fb7cc26ba3bd2953567ae31be0de2394c06d223735bb9d5f40ac6bae79ea77e64bd63f3e80163f8eac79d
languageName: node
linkType: hard
"@cspell/dict-fonts@npm:^3.0.0":
version: 3.0.0
resolution: "@cspell/dict-fonts@npm:3.0.0"
checksum: 2e9ec8b54c3c201a36e164cd8e726d435c4de6aa139785229558906235c5ef960c4b650a7ec9aecdd02d4da6a7084ab34887056542805164beada0a59309838c
languageName: node
linkType: hard
"@cspell/dict-fullstack@npm:^3.0.0":
version: 3.0.0
resolution: "@cspell/dict-fullstack@npm:3.0.0"
checksum: 4814eedfef0f9eff1f2e2e50a74153f6f209111569c2964dad8930fd08b3082267efed3ec7f60dcc6cd28ad2e4a5fb880c9d9dfc10d4969d3c9e769c9f5fd61e
languageName: node
linkType: hard
"@cspell/dict-git@npm:^2.0.0":
version: 2.0.0
resolution: "@cspell/dict-git@npm:2.0.0"
checksum: 8206ff5b68534fc9b68ee074a59d90cbb6a42cf1f35817417f302b3ab849d3433176118a101e9f9b3adaba5d0e2659e9c0294585fcfa261625125ad34d22a3de
languageName: node
linkType: hard
"@cspell/dict-golang@npm:^5.0.0":
version: 5.0.0
resolution: "@cspell/dict-golang@npm:5.0.0"
checksum: e511c9fc35244c18da912cc37e81c8e465d1b60e406596ca0177faa8d6aa411d29a71e227a1612d7f3f2c296adcac6eb511f5c858c8f2dc26cbc4b0f983b5a1a
languageName: node
linkType: hard
"@cspell/dict-haskell@npm:^4.0.0":
version: 4.0.0
resolution: "@cspell/dict-haskell@npm:4.0.0"
checksum: 13b3b088ba99a420237851befa689a52713fed347e9926c6a9067b33d13cf85016f54bcdb30d543cd5ea26e5b049b286b0f67ded061c67cf9f994dc96c426473
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: f7eb9bea6f15bf032c62dcb57f4811d08838139f93173bfa628552d6d1541427e81a8610e8d6cdbb14c7d978e7151952368bb907feea8df8780cb6bcffc545c9
languageName: node
linkType: hard
"@cspell/dict-html@npm:^4.0.1":
version: 4.0.1
resolution: "@cspell/dict-html@npm:4.0.1"
checksum: 76a3eb787250d7bc4b9bb647b0dbd5b27f2fdaed29d5e9ea12ba1c97a712715cc9bf3bb57d5a96ec17b58022c7f243a8b30610d822dd812bb4e9b7c00512e90b
languageName: node
linkType: hard
"@cspell/dict-java@npm:^5.0.2":
version: 5.0.2
resolution: "@cspell/dict-java@npm:5.0.2"
checksum: f5398064f5a2715fdc1872eb4c0ed19d174c2dc0d04a2abdf25d5484b9ace5e830f1dc9f063ec3e8492920c35b8da2f36df216c21062656ad651d2bc40e3ade4
languageName: node
linkType: hard
"@cspell/dict-latex@npm:^3.0.0":
version: 3.0.0
resolution: "@cspell/dict-latex@npm:3.0.0"
checksum: cff9b0ad1a34bd4bf15f8896f0f5662b185d690033a1da10f96623cd62d098eff2793d46fa9b51d8b030cf1a12697cfde5201ba0ba232b819a0aeb866539258d
languageName: node
linkType: hard
"@cspell/dict-lorem-ipsum@npm:^3.0.0":
version: 3.0.0
resolution: "@cspell/dict-lorem-ipsum@npm:3.0.0"
checksum: 9951e65c4d8c67da1195d08541fafd17e30af21b50e22b79bc0d56aaaf80e1c88d2ab9109096499b6c806449a22a6419679fa5697e3e20a50e0605ce0b88a537
languageName: node
linkType: hard
"@cspell/dict-lua@npm:^3.0.0":
version: 3.0.0
resolution: "@cspell/dict-lua@npm:3.0.0"
checksum: d3842060976c36299048458ec1f9632a2e2923909acde682d3eb6caee56c8169a01f07c49035525d89c83b903cde0d602e5ec3fbeaceff95ec40453aa850d5f4
languageName: node
linkType: hard
"@cspell/dict-node@npm:^4.0.1":
version: 4.0.1
resolution: "@cspell/dict-node@npm:4.0.1"
checksum: 2e3e05b16b3d1780dde5560ea13f6246fa3f470d752904413afc51a7fc11241c003fe3af9f1b1b2629db5283b1406e0df1df583479dac5ac0f2104a66c690e6c
languageName: node
linkType: hard
"@cspell/dict-npm@npm:^4.0.1":
version: 4.0.1
resolution: "@cspell/dict-npm@npm:4.0.1"
checksum: ce413c664f37863e8871734b59261ad526f17cb674560739ceec1f8520ea13ced1e0fa400a8ce4f07ce3a44b2b58b036a89af26b395c95a18362e6c014122157
languageName: node
linkType: hard
"@cspell/dict-php@npm:^3.0.3":
version: 3.0.3
resolution: "@cspell/dict-php@npm:3.0.3"
checksum: 3e73f0834011bdac9ea97c79cb4f46cb6ea33ddaa345ff65781f0a44ef7f82592ae2e09f22933e8f516d56fec00f0ac1d83c55b0a8166cb3ce6553f74d99d092
languageName: node
linkType: hard
"@cspell/dict-powershell@npm:^3.0.0":
version: 3.0.0
resolution: "@cspell/dict-powershell@npm:3.0.0"
checksum: af344433ccde3fe89da623bbf601cd83929b75a5204323a397e31d0d180fc6a680b3bb8c35968efab5fc7b7ef8fe959ff86833538e18f211ee5b003980234252
languageName: node
linkType: hard
"@cspell/dict-public-licenses@npm:^2.0.0":
version: 2.0.0
resolution: "@cspell/dict-public-licenses@npm:2.0.0"
checksum: 24a964cafbe6b43577a68c0246390a2403be8d132ffc84d49932c30f43d05f496bef6599e17b2a71a0dae60f8aa3fe61c6f0507e83fde53c1100e3bbe56d5f73
languageName: node
linkType: hard
"@cspell/dict-python@npm:^4.0.0":
version: 4.0.0
resolution: "@cspell/dict-python@npm:4.0.0"
checksum: 0c9ff8f04306e250257b217fdeaf941c0b9be346f0d2d9e22bf9256309ff308658731eebacd43a9a1cc83d8c1f43306311e4ecb7f414aefa04037e85baa590bb
languageName: node
linkType: hard
"@cspell/dict-r@npm:^2.0.0":
version: 2.0.0
resolution: "@cspell/dict-r@npm:2.0.0"
checksum: 750625c79b6199d74f262e2164d917c5574c0a85f61ff5e21fc8d985d0f5c60a0ea336db8b397a9b896c1c4ed1dd8fe33fea9746f62241c3cd8af93387a44d17
languageName: node
linkType: hard
"@cspell/dict-ruby@npm:^3.0.0":
version: 3.0.0
resolution: "@cspell/dict-ruby@npm:3.0.0"
checksum: 7706daa12592f9ac24f5cd13c942c721dc8cd539686c98eb623aa6c8f7eeca5cf83479e91a939eb0590de2a01583303cab6b0d979e0c110bcde911ecb51c2178
languageName: node
linkType: hard
"@cspell/dict-rust@npm:^3.0.0":
version: 3.0.0
resolution: "@cspell/dict-rust@npm:3.0.0"
checksum: 78b72dcf8363c91d813480df9521dd0246ea4db272cad726d44f896611e687494e51b8f16aa1704d39f055001195a3d2d93fe5d5cf3e9e7dfb22fd7190ecd232
languageName: node
linkType: hard
"@cspell/dict-scala@npm:^3.0.0":
version: 3.0.0
resolution: "@cspell/dict-scala@npm:3.0.0"
checksum: 42d3441ffe88fde321d01bb270cc8001740ba87da823c2103c29d6b1406b73f8a4b44d3bbec407276990390a4fa8445e4fd17eab930e92cdaf7397b981f9133f
languageName: node
linkType: hard
"@cspell/dict-software-terms@npm:^3.0.5":
version: 3.0.5
resolution: "@cspell/dict-software-terms@npm:3.0.5"
checksum: f85c676010661183f0e48d319a10fe3c31890008121d33bb9b295df78ede0ea7ab7ed7b188f6a398d3a51cb87db3473912e9b317e5a85f1e79f70484a4e6711d
languageName: node
linkType: hard
"@cspell/dict-sql@npm:^2.0.0":
version: 2.0.0
resolution: "@cspell/dict-sql@npm:2.0.0"
checksum: cb0092cda4406b92ce462dfe25be0f4c4829de1e2896d49952b45eeec8cd33ffaff1074e545a0ca3e11c1c6a1f259687ef62fe74f94be6261d58a6fda8de2c85
languageName: node
linkType: hard
"@cspell/dict-swift@npm:^2.0.0":
version: 2.0.0
resolution: "@cspell/dict-swift@npm:2.0.0"
checksum: 2c9490926a0850288e92302276ebefb04b37c73f8432db22f42a79dc9b16a5e91ce4207f9ff529aef11dd2ce9119df35fb019b85216042221ca91773b2928da2
languageName: node
linkType: hard
"@cspell/dict-typescript@npm:^3.0.1":
version: 3.0.1
resolution: "@cspell/dict-typescript@npm:3.0.1"
checksum: 30739028cdbf6100806d03dcc5d4472bedc5d488dea83ef0192f7a0746b02b6987dbd61ff6d7eb2aa707b863e57480443c1a1bcde1c42f7e8e241c2291da300e
languageName: node
linkType: hard
"@cspell/dict-vue@npm:^3.0.0":
version: 3.0.0
resolution: "@cspell/dict-vue@npm:3.0.0"
checksum: d98c7d013e16b61cc98127fe708d6aa5c48dbe61e37289d0c90d9acb37a04167a6211f3fc82edc2beb9b1334ba18aa1b88f4eb71707730782c6128ac7516eb34
languageName: node
linkType: hard
"@cspell/strong-weak-map@npm:6.14.3":
version: 6.14.3
resolution: "@cspell/strong-weak-map@npm:6.14.3"
checksum: 364fc340aeb617ff87e91c648a597dd144c556a6aee70f406cf4f6ff73a05d759c7ea69e13d48203587c058436d4fb1bf6220abd0cf5a6fbbcc0009bb45b0508
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: 4327d8e6e4347897f5baf265c43ff094260a3ad7b53920fa07472aa18699ba7d570e5171082e88d19e4b5cce6f35cc1666b1c8ccb8b74d67e4f482395b8c511d
languageName: node
linkType: hard
"@cush/relative@npm:^1.0.0":
version: 1.0.0
resolution: "@cush/relative@npm:1.0.0"
checksum: a4aeb4fd1bf46ee509e0314f72bac4329b39a1e8a2331b1451fa2fb32e0915f87f7bd5d891f3f35cd3c5cea323062c9f1b070eafe9207f4144e0894330d3267b
languageName: node
linkType: hard
"@es-joy/jsdoccomment@npm:~0.36.0":
version: 0.36.0
resolution: "@es-joy/jsdoccomment@npm:0.36.0"
dependencies:
comment-parser: "npm:1.3.1"
esquery: "npm:^1.4.0"
jsdoc-type-pratt-parser: "npm:~3.1.0"
checksum: c962ec0b6351a112ebaf3d529cb3dbf97664beb641c8c84b00b34db3198524aef02b2355d68871bb04eab18df2eb47fcbbecd5a666f774f59c65a091a06d9e42
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.15.15":
version: 0.15.15
resolution: "@esbuild/android-arm@npm:0.15.15"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.15.15":
version: 0.15.15
resolution: "@esbuild/linux-loong64@npm:0.15.15"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^1.3.3":
version: 1.3.3
resolution: "@eslint/eslintrc@npm:1.3.3"
dependencies:
ajv: "npm:^6.12.4"
debug: "npm:^4.3.2"
espree: "npm:^9.4.0"
globals: "npm:^13.15.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: d27b4a840eeedabc643f4dfca0e8d41bf8180ccb57b7de97da85ad9a34b219a1ab7c1a531a1f18357c57c60ede1b94bef1eae5869fc808cde050d835a093ccbe
languageName: node
linkType: hard
"@faker-js/faker@npm:7.6.0":
version: 7.6.0
resolution: "@faker-js/faker@npm:7.6.0"
checksum: 8dfdb631c3c420d8352d5ff5bc97d97d8d6890c8c74d7385ae9838cb47bef5e56ce611f4052ce414a55320426ffff4135fe927f46417c44b1b3301b7fd93851a
languageName: node
linkType: hard
"@flex-development/dist-tag-action@workspace:.":
version: 0.0.0-use.local
resolution: "@flex-development/dist-tag-action@workspace:."
dependencies:
"@actions/core": "npm:1.10.0"
"@commitlint/cli": "npm:17.3.0"
"@commitlint/config-conventional": "npm:17.3.0"
"@faker-js/faker": "npm:7.6.0"
"@flex-development/dist-tag": "npm:3.0.0"
"@flex-development/mkbuild": "npm:1.0.0-alpha.9"
"@flex-development/tutils": "npm:5.0.1"
"@graphql-eslint/eslint-plugin": "npm:3.13.1"
"@types/chai": "npm:4.3.4"
"@types/conventional-changelog": "npm:3.1.1"
"@types/conventional-changelog-config-spec": "npm:2.1.2"
"@types/conventional-changelog-writer": "npm:4.0.1"
"@types/conventional-commits-parser": "npm:3.0.2"
"@types/dateformat": "npm:5.0.0"
"@types/eslint": "npm:8.4.10"
"@types/git-raw-commits": "npm:2.0.1"
"@types/is-ci": "npm:3.0.0"
"@types/node-notifier": "npm:8.0.2"
"@types/prettier": "npm:2.7.1"
"@typescript-eslint/eslint-plugin": "npm:5.44.0"
"@typescript-eslint/parser": "npm:5.44.0"
"@vates/toggle-scripts": "npm:1.0.0"
"@vitest/coverage-c8": "npm:0.25.2"
"@vitest/ui": "npm:0.25.2"
chai: "npm:4.3.7"
conventional-changelog-cli: "npm:2.2.2"
conventional-recommended-bump: "npm:6.1.0"
cspell: "npm:6.14.3"
esbuild: "npm:0.15.15"
eslint: "npm:8.28.0"
eslint-config-prettier: "npm:8.5.0"
eslint-plugin-chai-expect: "npm:3.0.0"
eslint-plugin-jest-formatting: "npm:3.1.0"
eslint-plugin-jsdoc: "npm:39.6.2"
eslint-plugin-jsonc: "npm:2.5.0"
eslint-plugin-markdown: "npm:3.0.0"
eslint-plugin-markdownlint: "npm:0.4.0"
eslint-plugin-node: "npm:11.1.0"
eslint-plugin-prettier: "npm:4.2.1"
eslint-plugin-promise: "npm:6.1.1"
eslint-plugin-unicorn: "npm:45.0.0"
eslint-plugin-yml: "npm:1.2.0"
graphql: "npm:16.6.0"
growl: "npm:1.10.5"
husky: "npm:8.0.2"
is-ci: "npm:3.0.1"
jsonc-eslint-parser: "npm:2.1.0"
lint-staged: "npm:13.0.3"
node-notifier: "npm:10.0.1"
prettier: "npm:2.7.1"
prettier-plugin-sh: "npm:0.12.8"
pretty-format: "npm:29.3.1"
trash-cli: "npm:5.0.0"
ts-dedent: "npm:2.2.0"
ts-node: "npm:10.9.1"
tsconfig-paths: "npm:4.1.0"
typescript: "npm:4.9.3"
version-bump-prompt: "npm:6.1.0"
vite: "npm:3.2.4"
vite-tsconfig-paths: "npm:3.6.0"
vitest: "npm:0.25.2"
vitest-github-actions-reporter: "npm:0.9.0"
yaml-eslint-parser: "npm:1.1.0"
languageName: unknown
linkType: soft
"@flex-development/dist-tag@npm:3.0.0":
version: 3.0.0
resolution: "@flex-development/dist-tag@npm:3.0.0::__archiveUrl=https%3A%2F%2Fnpm.pkg.github.com%2Fdownload%2F%40flex-development%2Fdist-tag%2F3.0.0%2Ff2eae986bc2b0f9af01510d230c6f3cc29484985"
bin:
dist-tag: dist/cli.mjs
checksum: 3261e01bb44168cb917b1f2ec056b15f9174695cebb109d4b014051fdd247b776683a4cc9bfba801a11c76b9afd7912ad9c0d9b87a43f4fae48ba148aab4f223
languageName: node
linkType: hard
"@flex-development/is-builtin@npm:1.0.1":
version: 1.0.1
resolution: "@flex-development/is-builtin@npm:1.0.1::__archiveUrl=https%3A%2F%2Fnpm.pkg.github.com%2Fdownload%2F%40flex-development%2Fis-builtin%2F1.0.1%2Fa67edcfa3b5642f100fa7a1647f62e78641ca015"
checksum: f8e25c26ab4e69381f9dcc2cd4af8f4c5aa4b023951118b140827493cc6803eef333d51eece9735029389ae0433f71c636f2db9581bfccab3e3ef635892491d1
languageName: node
linkType: hard
"@flex-development/mkbuild@npm:1.0.0-alpha.9":
version: 1.0.0-alpha.9
resolution: "@flex-development/mkbuild@npm:1.0.0-alpha.9::__archiveUrl=https%3A%2F%2Fnpm.pkg.github.com%2Fdownload%2F%40flex-development%2Fmkbuild%2F1.0.0-alpha.9%2F3a3a13859b4938ebf8959061f10b7b0d7e44c597"
dependencies:
"@flex-development/mlly": "npm:1.0.0-alpha.2"
"@flex-development/tutils": "npm:5.0.1"
colorette: "npm:2.0.19"
consola: "npm:2.15.3"
cosmiconfig: "npm:7.0.1"
defu: "npm:6.1.0"
escape-string-regexp: "npm:5.0.0"
fs-extra: "npm:10.1.0"
globby: "npm:13.1.2"
pathe: "npm:0.3.8"
pkg-types: "npm:0.3.5"
pretty-bytes: "npm:6.0.0"
tsconfig-paths: "npm:4.1.0"
peerDependencies:
esbuild: ">=0.15.0"
typescript: ">=3.7.2"
bin:
mkbuild: dist/cli.mjs
checksum: ed8033755a1665d7e80ee1b02c2b21d04d7564f7eb4e01dc8f55c61303106fe4122851a84af14cdfbb1c3a847656d0c4ddbb521989dc02f61c2844c84875c90c
languageName: node
linkType: hard
"@flex-development/mlly@npm:1.0.0-alpha.2":
version: 1.0.0-alpha.2
resolution: "@flex-development/mlly@npm:1.0.0-alpha.2::__archiveUrl=https%3A%2F%2Fnpm.pkg.github.com%2Fdownload%2F%40flex-development%2Fmlly%2F1.0.0-alpha.2%2F5582d4ecf84ae2eb149f24af4783dac3e01948fc"
dependencies:
"@flex-development/is-builtin": "npm:1.0.1"
"@flex-development/tutils": "npm:5.0.1"
import-meta-resolve: "npm:2.1.0"
node-package-exports: "npm:1.0.2"
read-pkg-up: "npm:9.1.0"
tsconfig-paths: "npm:4.1.0"
upath: "npm:2.0.1"
peerDependencies:
typescript: "*"
checksum: ec8cca3db4d9602ecb61c72e7a23722e57a9c09920bb7c6decf66f3b545f48dbdc58f32057a8e8c85644761428a0cb5a53382c2103656e6aa20eb1e39deef32e
languageName: node
linkType: hard
"@flex-development/tutils@npm:5.0.1":
version: 5.0.1
resolution: "@flex-development/tutils@npm:5.0.1::__archiveUrl=https%3A%2F%2Fnpm.pkg.github.com%2Fdownload%2F%40flex-development%2Ftutils%2F5.0.1%2Fc43853516a4e36e79b2ae3d7831518fbc904bcc4"
checksum: 5ac3ef0cfa6f300b7407dc7a4d36af138c021efadbb7ffe2465c01b3ff983dd13b6c4f467c643d0fc7259a825fc8a33c959ae57001d2dfaa1cbbaf294f133f5c
languageName: node
linkType: hard
"@gar/promisify@npm:^1.1.3":
version: 1.1.3
resolution: "@gar/promisify@npm:1.1.3"
checksum: 3fadc40481a783ddb90397f5759f92650b57465f7a4a778056bd24b47060595012e9181a55ae547d57a893d37d9776abe9e368f1f6918e37225eb6a83f9a75f8
languageName: node
linkType: hard
"@graphql-eslint/eslint-plugin@npm:3.13.1":
version: 3.13.1
resolution: "@graphql-eslint/eslint-plugin@npm:3.13.1"
dependencies:
"@babel/code-frame": "npm:^7.18.6"
"@graphql-tools/code-file-loader": "npm:^7.3.6"
"@graphql-tools/graphql-tag-pluck": "npm:^7.3.6"
"@graphql-tools/utils": "npm:^9.0.0"
chalk: "npm:^4.1.2"
debug: "npm:^4.3.4"
fast-glob: "npm:^3.2.12"
graphql-config: "npm:^4.3.6"
graphql-depth-limit: "npm:^1.1.0"
lodash.lowercase: "npm:^4.3.0"
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
checksum: 5fbd893accb6a38bd89c1ef4ef909544d0b563d022a53fa95163ccfa704a836dd1d414d2248314f8bf29528995843dc1ec4ba1046ebca4bb463ecb417d06e6ff
languageName: node
linkType: hard
"@graphql-tools/batch-execute@npm:8.5.3":
version: 8.5.3
resolution: "@graphql-tools/batch-execute@npm:8.5.3"
dependencies:
"@graphql-tools/utils": "npm:8.10.0"
dataloader: "npm:2.1.0"
tslib: "npm:^2.4.0"
value-or-promise: "npm:1.0.11"
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
checksum: 677423c5af0dabd3fbd7e89c95928dd81128f6fb28a92523a49e377d7c557b8fd016cc89193e7eb880c21cc522490452f3acde6809cce1ada90d31b0fab25537
languageName: node
linkType: hard
"@graphql-tools/code-file-loader@npm:^7.3.6":
version: 7.3.12
resolution: "@graphql-tools/code-file-loader@npm:7.3.12"
dependencies:
"@graphql-tools/graphql-tag-pluck": "npm:7.3.12"
"@graphql-tools/utils": "npm:9.1.1"
globby: "npm:^11.0.3"
tslib: "npm:^2.4.0"
unixify: "npm:^1.0.0"
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
checksum: 7063916edf474f646801629fedc5e0d1e982b0b22cbd82ecb14864ab37867e1d4fcc906fa16f217703c6a39c7a3a0b0856952dd302976b2f0e3bba11c69248d2
languageName: node
linkType: hard
"@graphql-tools/delegate@npm:9.0.3":
version: 9.0.3