-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyarn.lock
7099 lines (6349 loc) · 248 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
"@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.19.4":
version: 7.19.5
resolution: "@babel/generator@npm:7.19.5"
dependencies:
"@babel/types": "npm:^7.19.4"
"@jridgewell/gen-mapping": "npm:^0.3.2"
jsesc: "npm:^2.5.1"
checksum: 4bde61e0a117b49980d144242c810b45e31c63bab49bf2552386b1ffc07f624f744b246405a23ba42bcfaeae0b79eac80e4dc450e5ecbc706ea6554ba328cefa
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.19.0":
version: 7.19.0
resolution: "@babel/helper-function-name@npm:7.19.0"
dependencies:
"@babel/template": "npm:^7.18.10"
"@babel/types": "npm:^7.19.0"
checksum: 65ba2eaad08ba73238aa4f11004a7e0f1d96a57c85863d53571741944986f55f334dfd9a59a3a477daefc7d31bd72df78a78673046082d6625888d3d357d36ed
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.19.4":
version: 7.19.4
resolution: "@babel/helper-string-parser@npm:7.19.4"
checksum: a8646931cba0c2905b683b99879f02c8a516a6c702c9f46cc02f0a8e93ef6f01540f2e7017d8288b9c039e1c3316c7858309ea3d6e39fa78bd98859b338603ee
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.19.4":
version: 7.19.4
resolution: "@babel/parser@npm:7.19.4"
bin:
parser: ./bin/babel-parser.js
checksum: 8e8fab574ff8e277a8aaa71b7f349af0b894b92226ebd81b685c6af926d7513701f8614840a62203f21e818eb1912562b9518f8b61a28973b480573d4b42f061
languageName: node
linkType: hard
"@babel/template@npm:^7.18.10":
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.19.4
resolution: "@babel/traverse@npm:7.19.4"
dependencies:
"@babel/code-frame": "npm:^7.18.6"
"@babel/generator": "npm:^7.19.4"
"@babel/helper-environment-visitor": "npm:^7.18.9"
"@babel/helper-function-name": "npm:^7.19.0"
"@babel/helper-hoist-variables": "npm:^7.18.6"
"@babel/helper-split-export-declaration": "npm:^7.18.6"
"@babel/parser": "npm:^7.19.4"
"@babel/types": "npm:^7.19.4"
debug: "npm:^4.1.0"
globals: "npm:^11.1.0"
checksum: 3b8f8522eae13b3eb252bb7a409fca8680aa2a8415e35a47f169d1c30ea5ba36d27006007121e34b1faec1e15912b2c287fc7a787897eaf6049a48844b4792d6
languageName: node
linkType: hard
"@babel/types@npm:^7.16.8, @babel/types@npm:^7.18.10, @babel/types@npm:^7.18.6, @babel/types@npm:^7.19.0, @babel/types@npm:^7.19.4, @babel/types@npm:^7.8.3":
version: 7.19.4
resolution: "@babel/types@npm:7.19.4"
dependencies:
"@babel/helper-string-parser": "npm:^7.19.4"
"@babel/helper-validator-identifier": "npm:^7.19.1"
to-fast-properties: "npm:^2.0.0"
checksum: 2c67b2f2fac78e54b2dc51bb475bd1ee7d31bbd9947ac9c4f5b127a47b2e996eb0d809b89b435afb8c2029ebbf1443c2e458f92ef85757e4b2d5a3861c8f3716
languageName: node
linkType: hard
"@commitlint/cli@npm:17.2.0":
version: 17.2.0
resolution: "@commitlint/cli@npm:17.2.0"
dependencies:
"@commitlint/format": "npm:^17.0.0"
"@commitlint/lint": "npm:^17.2.0"
"@commitlint/load": "npm:^17.2.0"
"@commitlint/read": "npm:^17.2.0"
"@commitlint/types": "npm:^17.0.0"
execa: "npm:^5.0.0"
lodash: "npm:^4.17.19"
resolve-from: "npm:5.0.0"
resolve-global: "npm:1.0.0"
yargs: "npm:^17.0.0"
bin:
commitlint: cli.js
checksum: 07e70c00658489c8253b460384a9ef086bcc093e4a31fc0e3f976083ef631c50169cc0de57b1ed120488e1cce989cc0c781e2c8c14b34c0f1a2be81cb65ba201
languageName: node
linkType: hard
"@commitlint/config-conventional@npm:17.2.0":
version: 17.2.0
resolution: "@commitlint/config-conventional@npm:17.2.0"
dependencies:
conventional-changelog-conventionalcommits: "npm:^5.0.0"
checksum: e9ef6112ad5e2fae39a37459af257e8a3b9c5e13c9157f6279be71c40552cc32e205e63b727981ec66fe124ade246384f9bc34323915d66d654e4bf7b859afbf
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.0.0":
version: 17.0.0
resolution: "@commitlint/ensure@npm:17.0.0"
dependencies:
"@commitlint/types": "npm:^17.0.0"
lodash: "npm:^4.17.19"
checksum: c8a25decac7557c2aa58394f8adafac866ab1c8d517c557bbf8d3249b8a7991203f2d194399e03eaa62dc27c9f1801cf10ef0f5dbdcf3b98361e221b900c22ae
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.2.0":
version: 17.2.0
resolution: "@commitlint/lint@npm:17.2.0"
dependencies:
"@commitlint/is-ignored": "npm:^17.2.0"
"@commitlint/parse": "npm:^17.2.0"
"@commitlint/rules": "npm:^17.2.0"
"@commitlint/types": "npm:^17.0.0"
checksum: f3511fa2b5597b32bbcf6f75ec10d1f8eb3caf01711e74d1e37cfaaf86f801b11da75a5eefcd2c0a5c79cc41b6d59eacd17b87dd13af72aa848a5a3f4d919d53
languageName: node
linkType: hard
"@commitlint/load@npm:^17.2.0":
version: 17.2.0
resolution: "@commitlint/load@npm:17.2.0"
dependencies:
"@commitlint/config-validator": "npm:^17.1.0"
"@commitlint/execute-rule": "npm:^17.0.0"
"@commitlint/resolve-extends": "npm:^17.1.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: "npm:^4.17.19"
resolve-from: "npm:^5.0.0"
ts-node: "npm:^10.8.1"
typescript: "npm:^4.6.4"
checksum: e8abf41824c095d562e27849ec4f523840f7859d01061477370c43ef17e2db2daeace5cc97bf12c3b426106532566d6c5e0204d9eea38bbd1249658b42dbaab7
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.1.0":
version: 17.1.0
resolution: "@commitlint/resolve-extends@npm:17.1.0"
dependencies:
"@commitlint/config-validator": "npm:^17.1.0"
"@commitlint/types": "npm:^17.0.0"
import-fresh: "npm:^3.0.0"
lodash: "npm:^4.17.19"
resolve-from: "npm:^5.0.0"
resolve-global: "npm:^1.0.0"
checksum: 312e8651fc87803d98c8bdf76c5c44ceebf22d923f614f2677b8502be3ccdd4a3d0b4570580a8654b0b16337acd94446d5ce9653a009d9cfe0feceb5929622fa
languageName: node
linkType: hard
"@commitlint/rules@npm:^17.2.0":
version: 17.2.0
resolution: "@commitlint/rules@npm:17.2.0"
dependencies:
"@commitlint/ensure": "npm:^17.0.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: 07bc737a8015ad008741506ebce14f5e0b95aca5d379a39b6d965124e0809e546fe605558d0f465fafbc180dda7d7641fe97d57a785096e4a74b60178c1f0078
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, @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.1":
version: 6.14.1
resolution: "@cspell/cspell-bundled-dicts@npm:6.14.1"
dependencies:
"@cspell/dict-ada": "npm:^3.0.0"
"@cspell/dict-aws": "npm:^3.0.0"
"@cspell/dict-bash": "npm:^3.0.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:^3.0.0"
"@cspell/dict-dart": "npm:^2.0.0"
"@cspell/dict-django": "npm:^3.0.0"
"@cspell/dict-docker": "npm:^1.1.3"
"@cspell/dict-dotnet": "npm:^3.0.1"
"@cspell/dict-elixir": "npm:^3.0.0"
"@cspell/dict-en-gb": "npm:1.1.33"
"@cspell/dict-en_us": "npm:^4.0.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:^4.0.0"
"@cspell/dict-haskell": "npm:^3.0.0"
"@cspell/dict-html": "npm:^4.0.0"
"@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: bc62d085727eea09b08b98bf214aaa391a70e7020f1d3901f2490b4dccb65243f43a20e0f72451f5433481350d7d231c37d3eeb6fa7ad44e171e9eb9f3e8d4b9
languageName: node
linkType: hard
"@cspell/cspell-pipe@npm:6.14.1":
version: 6.14.1
resolution: "@cspell/cspell-pipe@npm:6.14.1"
checksum: 91cd988fbfedcad487490f9f250291a0e7dbdb28d3ad6a387509af6ded61145be003308a540a8d2a433c4df5493a419c3c718316d94bd2da8e50c00713e07723
languageName: node
linkType: hard
"@cspell/cspell-service-bus@npm:6.14.1":
version: 6.14.1
resolution: "@cspell/cspell-service-bus@npm:6.14.1"
checksum: 5fda07c4d82ed28e5ab79ab2e2319cd9dcff9dc4170a208decb3702f3b39cc8a993d13e2a72a275bf37be3a50650060e3949392885797429f09e6f5258b4edb9
languageName: node
linkType: hard
"@cspell/cspell-types@npm:6.14.1":
version: 6.14.1
resolution: "@cspell/cspell-types@npm:6.14.1"
checksum: f13bc215c0dab145834764e313f8dda7f1dfa225ad14ca7ba3d6b900cea3c9697d20099c7ca56a5766c3460ef992574fb34aae1233144d887581c390629404d2
languageName: node
linkType: hard
"@cspell/dict-ada@npm:^3.0.0":
version: 3.0.0
resolution: "@cspell/dict-ada@npm:3.0.0"
checksum: dc02a19452ea2769f1b220f97056432a5bf538ea1c7a3a807488ec9f210da38c711c3f752f0f9e66638b16ae0e9b43ca397dc34af2b34171e418003ea5fbd3c3
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:^3.0.0":
version: 3.0.0
resolution: "@cspell/dict-bash@npm:3.0.0"
checksum: 89f87a9fc86e4dc07f1024acbff1d0a179501f32a20c35ed0fd8f0cf256e11247ab550cda0bd3e886f0839fc32f82b3ba28a77c982fa8510f2055ef6b4d1f00c
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:^3.0.0":
version: 3.0.0
resolution: "@cspell/dict-css@npm:3.0.0"
checksum: a812e9f8ccf8e51e0232aa6b4f5be5bf2ad0c0e7a8c04173014bdcbce0c7e10aee752b4d5a8eb87aa900da4cbc90c50f82e1e1788bc27c3a6d7dd5a103e5f083
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:^3.0.0":
version: 3.0.0
resolution: "@cspell/dict-django@npm:3.0.0"
checksum: 9728c36fa203e7877f6d08cd286afda911a2a8ec2353ef0eacb3c67310725252fc169468210642871b9aab56dd2de81cd53178bef6a3bab8992da54f09b3c71d
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:^3.0.1":
version: 3.0.1
resolution: "@cspell/dict-dotnet@npm:3.0.1"
checksum: b0ba2a48de666f93b871abeb7b6f6f3eefea5d55079eddd5c8e233d8c9ce06f8955baf7e27b4a24b6cfacc949a8130a6113cec747b89986fbcae1a23c7bbbf8c
languageName: node
linkType: hard
"@cspell/dict-elixir@npm:^3.0.0":
version: 3.0.0
resolution: "@cspell/dict-elixir@npm:3.0.0"
checksum: 62742e8478986be72bf17f8a0afc0ced21c30dc8a4a2d0163084109ef8ab6bec29a11b6e2f3c1a497037beb0a9ae21642e1bc7594390b81df26fec667e4d78f5
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.0.0":
version: 4.0.0
resolution: "@cspell/dict-en_us@npm:4.0.0"
checksum: 02526108603fb61f3cab0757734f0091a2a8b2a032eee4c55e1991f2a444dae1bfc2e9306ec325fc90bf11374dd9d066afa16f65d9c3e589bdb5f10b54ec8f2a
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:^4.0.0":
version: 4.0.0
resolution: "@cspell/dict-golang@npm:4.0.0"
checksum: 5a0cd0f66efebd216c1e0512492b4f453180b3b2e58a13ea6c6ea02c95b882ae6535c4e30194119423d5caf42e315549221752498bb6055a55a75a0ad0bb5454
languageName: node
linkType: hard
"@cspell/dict-haskell@npm:^3.0.0":
version: 3.0.0
resolution: "@cspell/dict-haskell@npm:3.0.0"
checksum: 02b568f8fe6f05d2bb484e0dd01108fe6d6fde64ca9dab27c7d3b57ee71b8c4c35ad04b7d57615600655063017308adf0b58bdd01ff274c64d65c55d9bc22e0d
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.0":
version: 4.0.0
resolution: "@cspell/dict-html@npm:4.0.0"
checksum: 2174c6e19e84c1d6da2e4ea39e7b88805e18b769c823b83a99983ad55b7b07db5b20869682c138de582a7b3c234e6162d0c2631105bdfcef1d3f87c2c18ce92f
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.1":
version: 6.14.1
resolution: "@cspell/strong-weak-map@npm:6.14.1"
checksum: 2503933c7210ef45065c4e800c925dd54788d4a01bab746fccb4efc2b48f992cb7f2cfa0f87fa9967a9c38b7a80d8fe9ad3b94e1be7e33d58c095ce73f047407
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
"@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.13":
version: 0.15.13
resolution: "@esbuild/android-arm@npm:0.15.13"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.15.13":
version: 0.15.13
resolution: "@esbuild/linux-loong64@npm:0.15.13"
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
"@flex-development/docast@workspace:.":
version: 0.0.0-use.local
resolution: "@flex-development/docast@workspace:."
dependencies:
"@commitlint/cli": "npm:17.2.0"
"@commitlint/config-conventional": "npm:17.2.0"
"@commitlint/types": "npm:17.0.0"
"@flex-development/mkbuild": "npm:1.0.0-alpha.9"
"@flex-development/tutils": "npm:5.0.1"
"@graphql-eslint/eslint-plugin": "npm:3.12.0"
"@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/node": "npm:16.11.68"
"@types/prettier": "npm:2.7.1"
"@types/unist": "npm:2.0.6"
"@typescript-eslint/eslint-plugin": "npm:5.42.1"
"@typescript-eslint/parser": "npm:5.42.1"
"@vates/toggle-scripts": "npm:1.0.0"
conventional-changelog-cli: "npm:2.2.2"
conventional-recommended-bump: "npm:6.1.0"
cspell: "npm:6.14.1"
esbuild: "npm:0.15.13"
eslint: "npm:8.27.0"
eslint-config-prettier: "npm:8.5.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:44.0.2"
eslint-plugin-yml: "npm:1.2.0"
graphql: "npm:16.6.0"
graphql-config: "npm:4.3.6"
husky: "npm:8.0.2"
jsonc-eslint-parser: "npm:2.1.0"
lint-staged: "npm:13.0.3"
prettier: "npm:2.7.1"
prettier-plugin-sh: "npm:0.12.8"
trash-cli: "npm:5.0.0"
ts-node: "npm:10.9.1"
typescript: "npm:4.9.1-beta"
version-bump-prompt: "npm:6.1.0"
yaml-eslint-parser: "npm:1.1.0"
peerDependencies:
"@flex-development/tutils": ">=5.0.1"
"@types/unist": ">=2.0.6"
languageName: unknown
linkType: soft
"@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
"@graphql-eslint/eslint-plugin@npm:3.12.0":
version: 3.12.0
resolution: "@graphql-eslint/eslint-plugin@npm:3.12.0"
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:^8.12.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: 3a591a76bbf509ab5cb3429397366bd6c949f40a8e3988aacea350be17f38fbc87bda9b3292d99a0d9745a7b839edd9fbfcdf1e7331601287864045dfc1cee22
languageName: node
linkType: hard
"@graphql-tools/batch-execute@npm:8.5.6":
version: 8.5.6
resolution: "@graphql-tools/batch-execute@npm:8.5.6"
dependencies:
"@graphql-tools/utils": "npm:8.12.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: e2569c011e92896c78fe7d1308b97c97bf668e456cfec7bab7eaf7c6e332bb5bba46bc5ca934f3e5b2a943df251f106ee5997a8816653467c0dadff6989071a8
languageName: node
linkType: hard
"@graphql-tools/code-file-loader@npm:^7.3.6":
version: 7.3.6
resolution: "@graphql-tools/code-file-loader@npm:7.3.6"
dependencies:
"@graphql-tools/graphql-tag-pluck": "npm:7.3.6"
"@graphql-tools/utils": "npm:8.12.0"
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: 9d38aaa71816e44cc6548469dbed5d884428afe2415963497ce1b4e220236541d4994f032521a8c962c39033b8c0130c4d93dced3488fc267268b24d35c6be36
languageName: node
linkType: hard
"@graphql-tools/delegate@npm:9.0.8":
version: 9.0.8
resolution: "@graphql-tools/delegate@npm:9.0.8"
dependencies:
"@graphql-tools/batch-execute": "npm:8.5.6"
"@graphql-tools/schema": "npm:9.0.4"
"@graphql-tools/utils": "npm:8.12.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: 844657c2d3bab9f93cdc2743a7f6372366ae411dbda637bce7cbae6a6dacbbae96a6057d37f4320d0ed2380e79af0e0e1167d70214a770acd2fb488e3576193d
languageName: node
linkType: hard
"@graphql-tools/graphql-file-loader@npm:^7.3.7":
version: 7.5.5
resolution: "@graphql-tools/graphql-file-loader@npm:7.5.5"
dependencies:
"@graphql-tools/import": "npm:6.7.6"
"@graphql-tools/utils": "npm:8.12.0"
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: d84cd57a5e89d0ff6ddcf86c521aa9a8e83b33a3fb43dda7f467869f5a2e2e84295c8058b881bd6c8abba4f9cd8347fbd31165ebf69ec0344c80399c97d37d54
languageName: node
linkType: hard
"@graphql-tools/graphql-tag-pluck@npm:7.3.6, @graphql-tools/graphql-tag-pluck@npm:^7.3.6":
version: 7.3.6
resolution: "@graphql-tools/graphql-tag-pluck@npm:7.3.6"
dependencies:
"@babel/parser": "npm:^7.16.8"
"@babel/traverse": "npm:^7.16.8"
"@babel/types": "npm:^7.16.8"
"@graphql-tools/utils": "npm:8.12.0"
tslib: "npm:^2.4.0"
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
checksum: 5d88288ad188627c2dd16af9fd636f69cbafed04c0491d2d165b0327aef1b527ecbe86619bbcc43b8a2651b4b71a725122e4ffa94e189fc8c76f48b2342018c3
languageName: node
linkType: hard
"@graphql-tools/import@npm:6.7.6":
version: 6.7.6
resolution: "@graphql-tools/import@npm:6.7.6"
dependencies:
"@graphql-tools/utils": "npm:8.12.0"
resolve-from: "npm:5.0.0"
tslib: "npm:^2.4.0"
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
checksum: a4513ed7cbfe07e3f3ccd65bdacbddaa749c297382906dcca432ae3d13550e82e76b741f37e43a8f1a3ded3ff45e890daf7347b972cb14353400cb85e6bb69a5
languageName: node
linkType: hard
"@graphql-tools/json-file-loader@npm:^7.3.7":
version: 7.4.6
resolution: "@graphql-tools/json-file-loader@npm:7.4.6"
dependencies:
"@graphql-tools/utils": "npm:8.12.0"
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: d03bc25205bb77ba07edfab68c7c319a261031e968a6f6e2a40aafc1cf61b634972a8fd444345044f5b2755f313c503f00cf223504ab9f53533ec88dab79203a
languageName: node
linkType: hard
"@graphql-tools/load@npm:^7.5.5":
version: 7.7.7
resolution: "@graphql-tools/load@npm:7.7.7"
dependencies:
"@graphql-tools/schema": "npm:9.0.4"