-
Notifications
You must be signed in to change notification settings - Fork 1
/
yarn.lock
14705 lines (13263 loc) · 515 KB
/
yarn.lock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 8
cacheKey: 10c0
"@actions/core@npm:^1.10.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: 10c0/9aa30b397d8d0dbc74e69fe46b23fb105cab989beb420c57eacbfc51c6804abe8da0f46973ca9f639d532ea4c096d0f4d37da0223fbe94f304fa3c5f53537c30
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: 10c0/4a09f6bdbe50ce68b5cf8a7254d176230d6a74bccf6ecc3857feee209a8c950ba9adec87cc5ecceb04110182d1c17117234e45557d72fde6229b7fd3a395322a
languageName: node
linkType: hard
"@actions/github@npm:^6.0.0":
version: 6.0.0
resolution: "@actions/github@npm:6.0.0"
dependencies:
"@actions/http-client": "npm:^2.2.0"
"@octokit/core": "npm:^5.0.1"
"@octokit/plugin-paginate-rest": "npm:^9.0.0"
"@octokit/plugin-rest-endpoint-methods": "npm:^10.0.0"
checksum: 10c0/6f86f564e6ec5873c69ff23bed308cef5f964dbdb559c5415c1ba479517bf18352713a2a757c27f8f67a3d675fdd78446cf142b27762489f697edf9c58e72378
languageName: node
linkType: hard
"@actions/http-client@npm:^2.0.1, @actions/http-client@npm:^2.2.0":
version: 2.2.3
resolution: "@actions/http-client@npm:2.2.3"
dependencies:
tunnel: "npm:^0.0.6"
undici: "npm:^5.25.4"
checksum: 10c0/13141b66a42aa4afd8c50f7479e13a5cdb5084ccb3c73ec48894b8029743389a3d2bf8cdc18e23fb70cd33995740526dd308815613907571e897c3aa1e5eada6
languageName: node
linkType: hard
"@actions/io@npm:^1.0.1":
version: 1.1.3
resolution: "@actions/io@npm:1.1.3"
checksum: 10c0/5b8751918e5bf0bebd923ba917fb1c0e294401e7ff0037f32c92a4efa4215550df1f6633c63fd4efb2bdaae8711e69b9e36925857db1f38935ff62a5c92ec29e
languageName: node
linkType: hard
"@akryum/tinypool@npm:^0.3.1":
version: 0.3.1
resolution: "@akryum/tinypool@npm:0.3.1"
checksum: 10c0/0d58575250dd28f74a702b6ceece9b82954a3c7167752fd539ecb32afb28add56beab6a8bf32c3be6e6462b6542230798ee1411258d1a74b7f1031152cb1f972
languageName: node
linkType: hard
"@alloc/quick-lru@npm:^5.2.0":
version: 5.2.0
resolution: "@alloc/quick-lru@npm:5.2.0"
checksum: 10c0/7b878c48b9d25277d0e1a9b8b2f2312a314af806b4129dc902f2bc29ab09b58236e53964689feec187b28c80d2203aff03829754773a707a8a5987f1b7682d92
languageName: node
linkType: hard
"@ampproject/remapping@npm:^2.3.0":
version: 2.3.0
resolution: "@ampproject/remapping@npm:2.3.0"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.24"
checksum: 10c0/81d63cca5443e0f0c72ae18b544cc28c7c0ec2cea46e7cb888bb0e0f411a1191d0d6b7af798d54e30777d8d1488b2ec0732aac2be342d3d7d3ffd271c6f489ed
languageName: node
linkType: hard
"@antfu/utils@npm:^0.7.7":
version: 0.7.10
resolution: "@antfu/utils@npm:0.7.10"
checksum: 10c0/98991f66a4752ef097280b4235b27d961a13a2c67ef8e5b716a120eb9823958e20566516711204e2bfb08f0b935814b715f49ecd79c3b9b93ce32747ac297752
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.21.4, @babel/code-frame@npm:^7.22.13":
version: 7.24.7
resolution: "@babel/code-frame@npm:7.24.7"
dependencies:
"@babel/highlight": "npm:^7.24.7"
picocolors: "npm:^1.0.0"
checksum: 10c0/ab0af539473a9f5aeaac7047e377cb4f4edd255a81d84a76058595f8540784cc3fbe8acf73f1e073981104562490aabfb23008cd66dc677a456a4ed5390fdde6
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/helper-string-parser@npm:7.24.7"
checksum: 10c0/47840c7004e735f3dc93939c77b099bb41a64bf3dda0cae62f60e6f74a5ff80b63e9b7cf77b5ec25a324516381fc994e1f62f922533236a8e3a6af57decb5e1e
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/helper-validator-identifier@npm:7.24.7"
checksum: 10c0/87ad608694c9477814093ed5b5c080c2e06d44cb1924ae8320474a74415241223cc2a725eea2640dd783ff1e3390e5f95eede978bc540e870053152e58f1d651
languageName: node
linkType: hard
"@babel/highlight@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/highlight@npm:7.24.7"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.24.7"
chalk: "npm:^2.4.2"
js-tokens: "npm:^4.0.0"
picocolors: "npm:^1.0.0"
checksum: 10c0/674334c571d2bb9d1c89bdd87566383f59231e16bcdcf5bb7835babdf03c9ae585ca0887a7b25bdf78f303984af028df52831c7989fecebb5101cc132da9393a
languageName: node
linkType: hard
"@babel/parser@npm:^7.24.4, @babel/parser@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/parser@npm:7.24.7"
bin:
parser: ./bin/babel-parser.js
checksum: 10c0/8b244756872185a1c6f14b979b3535e682ff08cb5a2a5fd97cc36c017c7ef431ba76439e95e419d43000c5b07720495b00cf29a7f0d9a483643d08802b58819b
languageName: node
linkType: hard
"@babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.23.2":
version: 7.24.7
resolution: "@babel/runtime@npm:7.24.7"
dependencies:
regenerator-runtime: "npm:^0.14.0"
checksum: 10c0/b6fa3ec61a53402f3c1d75f4d808f48b35e0dfae0ec8e2bb5c6fc79fb95935da75766e0ca534d0f1c84871f6ae0d2ebdd950727cfadb745a2cdbef13faef5513
languageName: node
linkType: hard
"@babel/types@npm:^7.24.0, @babel/types@npm:^7.8.3":
version: 7.24.7
resolution: "@babel/types@npm:7.24.7"
dependencies:
"@babel/helper-string-parser": "npm:^7.24.7"
"@babel/helper-validator-identifier": "npm:^7.24.7"
to-fast-properties: "npm:^2.0.0"
checksum: 10c0/d9ecbfc3eb2b05fb1e6eeea546836ac30d990f395ef3fe3f75ced777a222c3cfc4489492f72e0ce3d9a5a28860a1ce5f81e66b88cf5088909068b3ff4fab72c1
languageName: node
linkType: hard
"@bcoe/v8-coverage@npm:^0.2.3":
version: 0.2.3
resolution: "@bcoe/v8-coverage@npm:0.2.3"
checksum: 10c0/6b80ae4cb3db53f486da2dc63b6e190a74c8c3cca16bb2733f234a0b6a9382b09b146488ae08e2b22cf00f6c83e20f3e040a2f7894f05c045c946d6a090b1d52
languageName: node
linkType: hard
"@codecov/bundler-plugin-core@npm:^1.2.1":
version: 1.2.1
resolution: "@codecov/bundler-plugin-core@npm:1.2.1"
dependencies:
"@actions/core": "npm:^1.10.1"
"@actions/github": "npm:^6.0.0"
chalk: "npm:4.1.2"
semver: "npm:^7.5.4"
unplugin: "npm:^1.10.1"
zod: "npm:^3.22.4"
checksum: 10c0/ec051dbfea8003b17676d0a0b24c006cfccaa9eb2a790357a5d504d214025d2b3209445d0c5889b56c4729259da4fd0845069ba6e08cd1e271706dd3da1788c6
languageName: node
linkType: hard
"@codecov/vite-plugin@npm:^1.2.1":
version: 1.2.1
resolution: "@codecov/vite-plugin@npm:1.2.1"
dependencies:
"@codecov/bundler-plugin-core": "npm:^1.2.1"
unplugin: "npm:^1.10.1"
peerDependencies:
vite: 4.x || 5.x
checksum: 10c0/bc443322859b3675456af1de2399dc380751ed1910adff0ad3dc84d625dac41fd6301192342a9fb65f033ce56bccd5ab082bb22443cc73bfd464bcf48ef5de32
languageName: node
linkType: hard
"@codemirror/commands@npm:^6.3.0":
version: 6.6.0
resolution: "@codemirror/commands@npm:6.6.0"
dependencies:
"@codemirror/language": "npm:^6.0.0"
"@codemirror/state": "npm:^6.4.0"
"@codemirror/view": "npm:^6.27.0"
"@lezer/common": "npm:^1.1.0"
checksum: 10c0/72be283779dafb1dc7ec4a7c80a7911b9edc251944f0a2c8112230154e7e84a0b3dedc3f09277935614b92eb3d3194b32fdbc3e167496c2501e8ee2ed4e42909
languageName: node
linkType: hard
"@codemirror/lang-json@npm:^6.0.1":
version: 6.0.1
resolution: "@codemirror/lang-json@npm:6.0.1"
dependencies:
"@codemirror/language": "npm:^6.0.0"
"@lezer/json": "npm:^1.0.0"
checksum: 10c0/c70301ba43d44dbd1ff0ccab6ec6e3fb9825d61d4854b4839441a8144a9c96997acdad16d93199d157308dd80088a5e9f14b66f395c7e79f4dadc6b4e70ce8a8
languageName: node
linkType: hard
"@codemirror/language@npm:^6.0.0, @codemirror/language@npm:^6.9.2":
version: 6.10.2
resolution: "@codemirror/language@npm:6.10.2"
dependencies:
"@codemirror/state": "npm:^6.0.0"
"@codemirror/view": "npm:^6.23.0"
"@lezer/common": "npm:^1.1.0"
"@lezer/highlight": "npm:^1.0.0"
"@lezer/lr": "npm:^1.0.0"
style-mod: "npm:^4.0.0"
checksum: 10c0/ac9b24dffb3aa6f502283dfe2bc4b4038f9fecbed9450fc4a72d408b9a09dc254f9af735b98091531829da163eb116e4cfa95aeacacff4fd36ef95cd9a54c4a6
languageName: node
linkType: hard
"@codemirror/lint@npm:^6.4.2":
version: 6.8.1
resolution: "@codemirror/lint@npm:6.8.1"
dependencies:
"@codemirror/state": "npm:^6.0.0"
"@codemirror/view": "npm:^6.0.0"
crelt: "npm:^1.0.5"
checksum: 10c0/3e7ca352fe08dd11cea4f3b5cdccff2fd08afb5393fdaf98ac659ef368d9169b4d42618c4f856168910a5d1bae7aa1ab6c72020be85b56ccdeb7f678ceb65b6d
languageName: node
linkType: hard
"@codemirror/state@npm:^6.0.0, @codemirror/state@npm:^6.3.1, @codemirror/state@npm:^6.4.0":
version: 6.4.1
resolution: "@codemirror/state@npm:6.4.1"
checksum: 10c0/cdab74d0ca4e262531a257ac419c9c44124f3ace8b0ca1262598a9218fbb6fd8f0afeb4b5ed2f64552a9573a0fc5d55481d4b9b05e9505ef729f9bd0f9469423
languageName: node
linkType: hard
"@codemirror/theme-one-dark@npm:^6.1.2":
version: 6.1.2
resolution: "@codemirror/theme-one-dark@npm:6.1.2"
dependencies:
"@codemirror/language": "npm:^6.0.0"
"@codemirror/state": "npm:^6.0.0"
"@codemirror/view": "npm:^6.0.0"
"@lezer/highlight": "npm:^1.0.0"
checksum: 10c0/d0d70ce1e03fa7e5d51cc72d8bdef043f30e14a5aee88f4dd71b64e176c3d68629c82390b9cfdab8cc1ac20d35703b65fe9160051fddc873aa67c613d9525a3d
languageName: node
linkType: hard
"@codemirror/view@npm:^6.0.0, @codemirror/view@npm:^6.22.0, @codemirror/view@npm:^6.23.0, @codemirror/view@npm:^6.27.0":
version: 6.28.4
resolution: "@codemirror/view@npm:6.28.4"
dependencies:
"@codemirror/state": "npm:^6.4.0"
style-mod: "npm:^4.1.0"
w3c-keyname: "npm:^2.2.4"
checksum: 10c0/a9b34fd6b34f0cc44b5d2b7c3eba6550ee6aab2dafe1339ed04fa53d7ac67c7fdb69fc9c5618b6dec5136c68e7695f0199066d262fb483873bffae7ff3f4bcc4
languageName: node
linkType: hard
"@colors/colors@npm:1.5.0":
version: 1.5.0
resolution: "@colors/colors@npm:1.5.0"
checksum: 10c0/eb42729851adca56d19a08e48d5a1e95efd2a32c55ae0323de8119052be0510d4b7a1611f2abcbf28c044a6c11e6b7d38f99fccdad7429300c37a8ea5fb95b44
languageName: node
linkType: hard
"@edielemoine/google-docs-importer@npm:^2.0.0":
version: 2.2.0
resolution: "@edielemoine/google-docs-importer@npm:2.2.0"
dependencies:
csv-parse: "npm:^5.3.0"
debug: "npm:^4.3.4"
dotenv: "npm:^16.0.1"
yargs: "npm:^17.5.1"
bin:
google-docs-importer: dist/bin.js
checksum: 10c0/ac985c9811a81aa48225ec7cc8ebe35259a8d0934dacc4b5168c58bf658d6208115e0bfeec1913936e89c3a4d45f7634263eb0f5d7934333f5669b68bb550dfe
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/aix-ppc64@npm:0.21.5"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/android-arm64@npm:0.21.5"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/android-arm@npm:0.21.5"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/android-x64@npm:0.21.5"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/darwin-arm64@npm:0.21.5"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/darwin-x64@npm:0.21.5"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/freebsd-arm64@npm:0.21.5"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/freebsd-x64@npm:0.21.5"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-arm64@npm:0.21.5"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-arm@npm:0.21.5"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-ia32@npm:0.21.5"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-loong64@npm:0.21.5"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-mips64el@npm:0.21.5"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-ppc64@npm:0.21.5"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-riscv64@npm:0.21.5"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-s390x@npm:0.21.5"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-x64@npm:0.21.5"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/netbsd-x64@npm:0.21.5"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/openbsd-x64@npm:0.21.5"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/sunos-x64@npm:0.21.5"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/win32-arm64@npm:0.21.5"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@esbuild/win32-ia32@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/win32-ia32@npm:0.21.5"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@esbuild/win32-x64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/win32-x64@npm:0.21.5"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0":
version: 4.4.0
resolution: "@eslint-community/eslint-utils@npm:4.4.0"
dependencies:
eslint-visitor-keys: "npm:^3.3.0"
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
checksum: 10c0/7e559c4ce59cd3a06b1b5a517b593912e680a7f981ae7affab0d01d709e99cd5647019be8fafa38c350305bc32f1f7d42c7073edde2ab536c745e365f37b607e
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.4.0, @eslint-community/regexpp@npm:^4.6.1":
version: 4.11.0
resolution: "@eslint-community/regexpp@npm:4.11.0"
checksum: 10c0/0f6328869b2741e2794da4ad80beac55cba7de2d3b44f796a60955b0586212ec75e6b0253291fd4aad2100ad471d1480d8895f2b54f1605439ba4c875e05e523
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: 10c0/32f67052b81768ae876c84569ffd562491ec5a5091b0c1e1ca1e0f3c24fb42f804952fdd0a137873bc64303ba368a71ba079a6f691cee25beee9722d94cc8573
languageName: node
linkType: hard
"@eslint/js@npm:8.57.0":
version: 8.57.0
resolution: "@eslint/js@npm:8.57.0"
checksum: 10c0/9a518bb8625ba3350613903a6d8c622352ab0c6557a59fe6ff6178bf882bf57123f9d92aa826ee8ac3ee74b9c6203fe630e9ee00efb03d753962dcf65ee4bd94
languageName: node
linkType: hard
"@fastify/busboy@npm:^2.0.0":
version: 2.1.1
resolution: "@fastify/busboy@npm:2.1.1"
checksum: 10c0/6f8027a8cba7f8f7b736718b013f5a38c0476eea67034c94a0d3c375e2b114366ad4419e6a6fa7ffc2ef9c6d3e0435d76dd584a7a1cbac23962fda7650b579e3
languageName: node
linkType: hard
"@gar/promisify@npm:^1.1.3":
version: 1.1.3
resolution: "@gar/promisify@npm:1.1.3"
checksum: 10c0/0b3c9958d3cd17f4add3574975e3115ae05dc7f1298a60810414b16f6f558c137b5fb3cd3905df380bacfd955ec13f67c1e6710cbb5c246a7e8d65a8289b2bff
languageName: node
linkType: hard
"@histoire/app@npm:^0.17.17":
version: 0.17.17
resolution: "@histoire/app@npm:0.17.17"
dependencies:
"@histoire/controls": "npm:^0.17.17"
"@histoire/shared": "npm:^0.17.17"
"@histoire/vendors": "npm:^0.17.17"
"@types/flexsearch": "npm:^0.7.6"
flexsearch: "npm:0.7.21"
shiki-es: "npm:^0.2.0"
checksum: 10c0/7f8dcdee2229386d96a3ac0d3bb76ca7b810a3805fa44ea4834461bbcf6876498cf3bca111f1f82c25e62cf54cc32e24705e2b91a982df213f57f207865030bc
languageName: node
linkType: hard
"@histoire/controls@npm:^0.17.17":
version: 0.17.17
resolution: "@histoire/controls@npm:0.17.17"
dependencies:
"@codemirror/commands": "npm:^6.3.0"
"@codemirror/lang-json": "npm:^6.0.1"
"@codemirror/language": "npm:^6.9.2"
"@codemirror/lint": "npm:^6.4.2"
"@codemirror/state": "npm:^6.3.1"
"@codemirror/theme-one-dark": "npm:^6.1.2"
"@codemirror/view": "npm:^6.22.0"
"@histoire/shared": "npm:^0.17.17"
"@histoire/vendors": "npm:^0.17.17"
checksum: 10c0/e16db4c1b26dd5897ee82440a0407ab16aed4ac68bba99741556780311e5031e03e22c6af73e59368350336bab754f80b4f005bf00eb6900a2a6cadbde0efbc2
languageName: node
linkType: hard
"@histoire/plugin-vue@npm:^0.17.6":
version: 0.17.17
resolution: "@histoire/plugin-vue@npm:0.17.17"
dependencies:
"@histoire/controls": "npm:^0.17.17"
"@histoire/shared": "npm:^0.17.17"
"@histoire/vendors": "npm:^0.17.17"
change-case: "npm:^4.1.2"
globby: "npm:^13.2.2"
launch-editor: "npm:^2.6.1"
pathe: "npm:^1.1.1"
peerDependencies:
histoire: ^0.17.17
vue: ^3.2.47
checksum: 10c0/039a64626e6714019767932df123793394fc1bc6896052516d1ea43bd63b51988c99e4fdaac20ad19ef455d475523eac1f9824072c2db1c88fb9e64c826c6f39
languageName: node
linkType: hard
"@histoire/shared@npm:^0.17.17":
version: 0.17.17
resolution: "@histoire/shared@npm:0.17.17"
dependencies:
"@histoire/vendors": "npm:^0.17.17"
"@types/fs-extra": "npm:^9.0.13"
"@types/markdown-it": "npm:^12.2.3"
chokidar: "npm:^3.5.3"
pathe: "npm:^1.1.1"
picocolors: "npm:^1.0.0"
peerDependencies:
vite: ^2.9.0 || ^3.0.0 || ^4.0.0 || ^5.0.0
checksum: 10c0/ca869b0cf06b50130de7f26af28a0d52ec4c06e36fc9ed5ecbe2a85e47df0317ff81d0c84b01fa595871a04d388c2df3123df9bdac19166afae33fce934e8eb4
languageName: node
linkType: hard
"@histoire/vendors@npm:^0.17.17":
version: 0.17.17
resolution: "@histoire/vendors@npm:0.17.17"
checksum: 10c0/dc609d63ec2e150b9ad4a3c6763aa0685e3fe8820dc5ef0d82f7072ff0a084d169ea324e406f69ca8edf1724e48d060e087e7568c4c1bee8addd9d8c4b7f74a0
languageName: node
linkType: hard
"@humanwhocodes/config-array@npm:^0.11.14":
version: 0.11.14
resolution: "@humanwhocodes/config-array@npm:0.11.14"
dependencies:
"@humanwhocodes/object-schema": "npm:^2.0.2"
debug: "npm:^4.3.1"
minimatch: "npm:^3.0.5"
checksum: 10c0/66f725b4ee5fdd8322c737cb5013e19fac72d4d69c8bf4b7feb192fcb83442b035b92186f8e9497c220e58b2d51a080f28a73f7899bc1ab288c3be172c467541
languageName: node
linkType: hard
"@humanwhocodes/module-importer@npm:^1.0.1":
version: 1.0.1
resolution: "@humanwhocodes/module-importer@npm:1.0.1"
checksum: 10c0/909b69c3b86d482c26b3359db16e46a32e0fb30bd306a3c176b8313b9e7313dba0f37f519de6aa8b0a1921349e505f259d19475e123182416a506d7f87e7f529
languageName: node
linkType: hard
"@humanwhocodes/object-schema@npm:^2.0.2":
version: 2.0.3
resolution: "@humanwhocodes/object-schema@npm:2.0.3"
checksum: 10c0/80520eabbfc2d32fe195a93557cef50dfe8c8905de447f022675aaf66abc33ae54098f5ea78548d925aa671cd4ab7c7daa5ad704fe42358c9b5e7db60f80696c
languageName: node
linkType: hard
"@isaacs/cliui@npm:^8.0.2":
version: 8.0.2
resolution: "@isaacs/cliui@npm:8.0.2"
dependencies:
string-width: "npm:^5.1.2"
string-width-cjs: "npm:string-width@^4.2.0"
strip-ansi: "npm:^7.0.1"
strip-ansi-cjs: "npm:strip-ansi@^6.0.1"
wrap-ansi: "npm:^8.1.0"
wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0"
checksum: 10c0/b1bf42535d49f11dc137f18d5e4e63a28c5569de438a221c369483731e9dac9fb797af554e8bf02b6192d1e5eba6e6402cf93900c3d0ac86391d00d04876789e
languageName: node
linkType: hard
"@isaacs/string-locale-compare@npm:^1.1.0":
version: 1.1.0
resolution: "@isaacs/string-locale-compare@npm:1.1.0"
checksum: 10c0/d67226ff7ac544a495c77df38187e69e0e3a0783724777f86caadafb306e2155dc3b5787d5927916ddd7fb4a53561ac8f705448ac3235d18ea60da5854829fdf
languageName: node
linkType: hard
"@istanbuljs/schema@npm:^0.1.2":
version: 0.1.3
resolution: "@istanbuljs/schema@npm:0.1.3"
checksum: 10c0/61c5286771676c9ca3eb2bd8a7310a9c063fb6e0e9712225c8471c582d157392c88f5353581c8c9adbe0dff98892317d2fdfc56c3499aa42e0194405206a963a
languageName: node
linkType: hard
"@iwavesmedia/semantic-release-composer@npm:^1.0.0":
version: 1.0.0
resolution: "@iwavesmedia/semantic-release-composer@npm:1.0.0"
dependencies:
"@semantic-release/error": "npm:^2.2.0"
checksum: 10c0/581aed5c3c8bef53317774154954c6a009a0e399c740d4b64758db5f07e8a048d859420f98ea68461d61fa855da7c2febbdfa61ec519d2d816cf149a95346213
languageName: node
linkType: hard
"@jest/schemas@npm:^29.6.3":
version: 29.6.3
resolution: "@jest/schemas@npm:29.6.3"
dependencies:
"@sinclair/typebox": "npm:^0.27.8"
checksum: 10c0/b329e89cd5f20b9278ae1233df74016ebf7b385e0d14b9f4c1ad18d096c4c19d1e687aa113a9c976b16ec07f021ae53dea811fb8c1248a50ac34fbe009fdf6be
languageName: node
linkType: hard
"@jridgewell/gen-mapping@npm:^0.3.2, @jridgewell/gen-mapping@npm:^0.3.5":
version: 0.3.5
resolution: "@jridgewell/gen-mapping@npm:0.3.5"
dependencies:
"@jridgewell/set-array": "npm:^1.2.1"
"@jridgewell/sourcemap-codec": "npm:^1.4.10"
"@jridgewell/trace-mapping": "npm:^0.3.24"
checksum: 10c0/1be4fd4a6b0f41337c4f5fdf4afc3bd19e39c3691924817108b82ffcb9c9e609c273f936932b9fba4b3a298ce2eb06d9bff4eb1cc3bd81c4f4ee1b4917e25feb
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:^3.1.0":
version: 3.1.2
resolution: "@jridgewell/resolve-uri@npm:3.1.2"
checksum: 10c0/d502e6fb516b35032331406d4e962c21fe77cdf1cbdb49c6142bcbd9e30507094b18972778a6e27cbad756209cfe34b1a27729e6fa08a2eb92b33943f680cf1e
languageName: node
linkType: hard
"@jridgewell/set-array@npm:^1.2.1":
version: 1.2.1
resolution: "@jridgewell/set-array@npm:1.2.1"
checksum: 10c0/2a5aa7b4b5c3464c895c802d8ae3f3d2b92fcbe84ad12f8d0bfbb1f5ad006717e7577ee1fd2eac00c088abe486c7adb27976f45d2941ff6b0b92b2c3302c60f4
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.14, @jridgewell/sourcemap-codec@npm:^1.4.15":
version: 1.5.0
resolution: "@jridgewell/sourcemap-codec@npm:1.5.0"
checksum: 10c0/2eb864f276eb1096c3c11da3e9bb518f6d9fc0023c78344cdc037abadc725172c70314bdb360f2d4b7bffec7f5d657ce006816bc5d4ecb35e61b66132db00c18
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:^0.3.23, @jridgewell/trace-mapping@npm:^0.3.24":
version: 0.3.25
resolution: "@jridgewell/trace-mapping@npm:0.3.25"
dependencies:
"@jridgewell/resolve-uri": "npm:^3.1.0"
"@jridgewell/sourcemap-codec": "npm:^1.4.14"
checksum: 10c0/3d1ce6ebc69df9682a5a8896b414c6537e428a1d68b02fcc8363b04284a8ca0df04d0ee3013132252ab14f2527bc13bea6526a912ecb5658f0e39fd2860b4df4
languageName: node
linkType: hard
"@lezer/common@npm:^1.0.0, @lezer/common@npm:^1.1.0, @lezer/common@npm:^1.2.0":
version: 1.2.1
resolution: "@lezer/common@npm:1.2.1"
checksum: 10c0/af61436dc026f8deebaded13d8e1beea2ae307cbbfb270116cdedadb8208f0674da9c3b5963128a2b1cd4072b4e90bc8128133f4feaf31b6e801e4568f1a15a6
languageName: node
linkType: hard
"@lezer/highlight@npm:^1.0.0":
version: 1.2.0
resolution: "@lezer/highlight@npm:1.2.0"
dependencies:
"@lezer/common": "npm:^1.0.0"
checksum: 10c0/d4312f95b78e4b6f10833b1cf99601c6381c22b755bbf60fd61d6fe9b4cf7780650e2e2dadf75beb8d94824dcb5ec81da5cfc9ca54122688a482e488103105aa
languageName: node
linkType: hard
"@lezer/json@npm:^1.0.0":
version: 1.0.2
resolution: "@lezer/json@npm:1.0.2"
dependencies:
"@lezer/common": "npm:^1.2.0"
"@lezer/highlight": "npm:^1.0.0"
"@lezer/lr": "npm:^1.0.0"
checksum: 10c0/a84283b4e4ded682b5e90a068c52155deaeac79e8dc16da0e9904e72633be029a00ad2da26daa259e503ae3b116722985c3e15d9448336e5f0fde59f79b716ad
languageName: node
linkType: hard
"@lezer/lr@npm:^1.0.0":
version: 1.4.1
resolution: "@lezer/lr@npm:1.4.1"
dependencies:
"@lezer/common": "npm:^1.0.0"
checksum: 10c0/e24a383c52248321035d8157d3271890a5740e7a324f7026f1cb7556d3bd9883edeb53df194a8a3f7de50ca034112b234e31211a6b235d9d8d7791a0319b1724
languageName: node
linkType: hard
"@microsoft/api-extractor-model@npm:7.28.13":
version: 7.28.13
resolution: "@microsoft/api-extractor-model@npm:7.28.13"
dependencies:
"@microsoft/tsdoc": "npm:0.14.2"
"@microsoft/tsdoc-config": "npm:~0.16.1"
"@rushstack/node-core-library": "npm:4.0.2"
checksum: 10c0/da83f6ccc01fac3b8274731327a6d35a45b2d98ce8c1d705a974ca34dd48ac0f9b0fe8e98130d2068ec1ee4e2b1f2942b53e21e6e5897f1d3501a3c4e5910645
languageName: node
linkType: hard
"@microsoft/api-extractor@npm:7.43.0":
version: 7.43.0
resolution: "@microsoft/api-extractor@npm:7.43.0"
dependencies:
"@microsoft/api-extractor-model": "npm:7.28.13"
"@microsoft/tsdoc": "npm:0.14.2"
"@microsoft/tsdoc-config": "npm:~0.16.1"
"@rushstack/node-core-library": "npm:4.0.2"
"@rushstack/rig-package": "npm:0.5.2"
"@rushstack/terminal": "npm:0.10.0"
"@rushstack/ts-command-line": "npm:4.19.1"
lodash: "npm:~4.17.15"
minimatch: "npm:~3.0.3"
resolve: "npm:~1.22.1"
semver: "npm:~7.5.4"
source-map: "npm:~0.6.1"
typescript: "npm:5.4.2"
bin:
api-extractor: bin/api-extractor
checksum: 10c0/1bbd1866508db2c5c0ad771e4aeccef95201319879b5cd2b00c5177cfdedb1ad5bc35a452be9d14ac3cfcdf7c9b7c3a737bc2ada9bdcc48eb0e6e11214169b52
languageName: node
linkType: hard
"@microsoft/tsdoc-config@npm:~0.16.1":
version: 0.16.2
resolution: "@microsoft/tsdoc-config@npm:0.16.2"
dependencies:
"@microsoft/tsdoc": "npm:0.14.2"
ajv: "npm:~6.12.6"
jju: "npm:~1.4.0"
resolve: "npm:~1.19.0"
checksum: 10c0/9e8c176b68f01c8bb38e6365d5b543e471bba59fced6070d9bd35b32461fbd650c2e1a6f686e8dca0cf22bc5e7d796e4213e66bce4426c8cb9864c1f6ca6836c
languageName: node
linkType: hard
"@microsoft/tsdoc@npm:0.14.2":
version: 0.14.2
resolution: "@microsoft/tsdoc@npm:0.14.2"
checksum: 10c0/c018857ad439144559ce34a397a29ace7cf5b24b999b8e3c1b88d878338088b3a453eaac4435beaf2c7eae13c4c0aac81e42f96f0f1d48e8d4eeb438eb3bb82f
languageName: node
linkType: hard
"@myparcel-do/build-vite@workspace:*, @myparcel-do/build-vite@workspace:libs/build-vite":
version: 0.0.0-use.local
resolution: "@myparcel-do/build-vite@workspace:libs/build-vite"
dependencies:
"@myparcel/ts-utils": "npm:^1.12.0"
"@vitejs/plugin-vue": "npm:^5.0.0"
"@vitest/coverage-v8": "npm:^2.0.0"
happy-dom: "npm:^14.0.0"
typescript: "npm:5.4.5"
vite: "npm:^5.0.0"
vite-plugin-custom-tsconfig: "npm:^1.0.0"
vite-plugin-dts: "npm:^3.6.0"
vitest: "npm:^2.0.0"
vue: "npm:^3.3.0"
vue-tsc: "npm:^2.0.0"
languageName: unknown
linkType: soft
"@myparcel-do/monorepo@workspace:.":
version: 0.0.0-use.local
resolution: "@myparcel-do/monorepo@workspace:."
dependencies:
"@myparcel-eslint/eslint-config-esnext": "npm:^1.3.0"
"@myparcel-eslint/eslint-config-import": "npm:^1.2.0"
"@myparcel-eslint/eslint-config-node": "npm:^1.3.0"
"@myparcel-eslint/eslint-config-prettier": "npm:^1.3.0"
"@myparcel-eslint/eslint-config-prettier-typescript": "npm:^1.3.0"
"@myparcel-eslint/eslint-config-prettier-typescript-vue": "npm:^1.3.0"
"@types/is-ci": "npm:^3.0.0"
"@types/node": "npm:^20.9.0"
"@vue/tsconfig": "npm:^0.5.0"
array.prototype.flatmap: "npm:^1.3.0"
conventional-changelog-conventionalcommits: "npm:^7.0.0"
eslint: "npm:^8.53.0"
eslint-plugin-sort-exports: "npm:^0.9.1"
husky: "npm:^9.0.0"
is-ci: "npm:^3.0.1"
lint-staged: "npm:^15.0.0"
nx: "npm:^19.0.0"
prettier: "npm:^2.0.0"
rimraf: "npm:^6.0.0"
typescript: "npm:5.4.5"
languageName: unknown
linkType: soft
"@myparcel-do/sandbox@workspace:apps/sandbox":
version: 0.0.0-use.local
resolution: "@myparcel-do/sandbox@workspace:apps/sandbox"
dependencies:
"@edielemoine/google-docs-importer": "npm:^2.0.0"
"@myparcel-do/build-vite": "workspace:*"
"@myparcel-do/shared": "workspace:*"
"@myparcel/constants": "npm:^2.2.0"
"@myparcel/delivery-options": "workspace:*"
"@myparcel/sdk": "npm:^3.2.0"
"@myparcel/ts-utils": "npm:^1.12.0"
"@myparcel/vue-form-builder": "npm:^1.0.0-beta.1"
"@testing-library/vue": "npm:^8.0.1"
"@vitejs/plugin-vue": "npm:^5.0.0"
"@vueuse/core": "npm:^10.5.0"
autoprefixer: "npm:^10.4.16"
ci-info: "npm:^4.0.0"
pinia: "npm:^2.1.7"
postcss: "npm:^8.4.31"
radash: "npm:^12.0.0"
sass: "npm:^1.69.3"
tailwindcss: "npm:^3.3.3"
typescript: "npm:5.4.5"
vite: "npm:^5.0.0"
vite-plugin-custom-tsconfig: "npm:^1.0.0"
vite-plugin-inspect: "npm:^0.8.0"
vitest: "npm:^2.0.0"
vue: "npm:^3.3.4"
vue-tsc: "npm:^2.0.0"
languageName: unknown
linkType: soft
"@myparcel-do/semantic-release-plugin@workspace:*, @myparcel-do/semantic-release-plugin@workspace:libs/semantic-release-plugin":
version: 0.0.0-use.local
resolution: "@myparcel-do/semantic-release-plugin@workspace:libs/semantic-release-plugin"
dependencies:
"@types/node": "npm:^20.11.16"
execa: "npm:^8.0.0"
read-pkg: "npm:^9.0.1"
tsup: "npm:^8.0.0"
typescript: "npm:5.4.5"
languageName: unknown
linkType: soft
"@myparcel-do/shared@workspace:*, @myparcel-do/shared@workspace:libs/shared":
version: 0.0.0-use.local
resolution: "@myparcel-do/shared@workspace:libs/shared"
dependencies:
"@myparcel-do/build-vite": "workspace:*"
"@myparcel-do/semantic-release-plugin": "workspace:*"
"@myparcel-do/shared": "workspace:*"
"@myparcel/constants": "npm:^2.2.0"
"@myparcel/sdk": "npm:^3.3.1"
"@myparcel/ts-utils": "npm:^1.12.0"
"@myparcel/vue-form-builder": "npm:^1.0.0-beta.1"
"@pinia/testing": "npm:^0.1.3"
"@testing-library/vue": "npm:^8.0.1"
"@vitest/coverage-v8": "npm:^2.0.0"
"@vitest/ui": "npm:^2.0.0"
"@vueuse/core": "npm:^10.6.0"
date-fns: "npm:^3.0.0"
pinia: "npm:^2.1.7"
radash: "npm:^12.0.0"
typescript: "npm:5.4.5"
vite: "npm:^5.0.0"
vitest: "npm:^2.0.0"
vue: "npm:^3.3.0"
vue-tsc: "npm:^2.0.0"
languageName: unknown
linkType: soft
"@myparcel-eslint/eslint-config-es6@npm:^1.3.1":
version: 1.3.1
resolution: "@myparcel-eslint/eslint-config-es6@npm:1.3.1"
dependencies:
"@myparcel-eslint/eslint-config": "npm:^1.3.1"
peerDependencies:
eslint: 7 - 8
checksum: 10c0/8cab3e4737b69ba74842a39ccc9fc3e7eda262a52bfa9eaab41970d064371b9ffc03724e924b34006aaf2d19fa8f2fdf06b126821c24c856c5042e0e976a0d33
languageName: node
linkType: hard
"@myparcel-eslint/eslint-config-esnext@npm:^1.3.0, @myparcel-eslint/eslint-config-esnext@npm:^1.3.1":
version: 1.3.1
resolution: "@myparcel-eslint/eslint-config-esnext@npm:1.3.1"
dependencies:
"@myparcel-eslint/eslint-config-es6": "npm:^1.3.1"
peerDependencies:
eslint: 7 - 8
checksum: 10c0/8d4bdb861597dcceaffcc4055ff9b8548334df490f4cb9b1fb1f55b8aaf639b01df579e821e0ad4ba2012bf566851650e88e6c2d201f06ebd1e7251d73b4b7ba
languageName: node
linkType: hard
"@myparcel-eslint/eslint-config-import@npm:^1.2.0":
version: 1.2.1
resolution: "@myparcel-eslint/eslint-config-import@npm:1.2.1"
dependencies:
eslint-plugin-i: "npm:1 - 2"
eslint-plugin-import: "npm:eslint-plugin-i@*"
peerDependencies:
eslint: 7 - 8
checksum: 10c0/1e8a21c2e1df9ff140ab25395f045a306ab936c31922a1fa1a2ff4b1e5501c0478f0fb2f13f997b7a909142cd3cc48086b150d6ee7541dbeca78c81b6ef9ff82
languageName: node
linkType: hard
"@myparcel-eslint/eslint-config-node@npm:^1.3.0":
version: 1.3.1
resolution: "@myparcel-eslint/eslint-config-node@npm:1.3.1"
dependencies:
"@myparcel-eslint/eslint-config": "npm:^1.3.1"
peerDependencies:
eslint: 7 - 8
checksum: 10c0/61e236dd9f892822fd2ec40b8f76ea3dbb8ab376f3aac005c386c1be02700ffe105d7eadff87263ecfc13b9a8ba71a20f3748ec6915ba1e05836e5338e15e292
languageName: node
linkType: hard
"@myparcel-eslint/eslint-config-prettier-typescript-vue@npm:^1.3.0":
version: 1.3.3
resolution: "@myparcel-eslint/eslint-config-prettier-typescript-vue@npm:1.3.3"
dependencies:
"@myparcel-eslint/eslint-config-prettier": "npm:^1.3.1"
"@myparcel-eslint/eslint-config-typescript-vue": "npm:^1.3.1"
"@vue/eslint-config-typescript": "npm:1 - 11"
eslint-plugin-vue: "npm:1 - 9"
peerDependencies:
eslint: 7 - 8
prettier: ">= 2"
checksum: 10c0/8f659cf5eacdc926bac7c69d5778d9205203b8bb0016e5b2b9070ed65d19af630d0e32f193ba2f840871d454b657c8ac105fbec799cd4b4f861f7b7843ec9166
languageName: node
linkType: hard
"@myparcel-eslint/eslint-config-prettier-typescript@npm:^1.3.0":
version: 1.3.1
resolution: "@myparcel-eslint/eslint-config-prettier-typescript@npm:1.3.1"
dependencies:
"@myparcel-eslint/eslint-config-prettier": "npm:^1.3.1"
"@myparcel-eslint/eslint-config-typescript": "npm:^1.3.1"
peerDependencies:
eslint: 7 - 8
prettier: ">= 2"
checksum: 10c0/314068e1887eb5852dbc314f8b64564a485db7ebff6332a285cf67aed162c472683dd275e6ed8ba1c318340f0748edbbfb7ec4fcfb997456f34ab030a5aaf08a
languageName: node
linkType: hard
"@myparcel-eslint/eslint-config-prettier@npm:^1.3.0, @myparcel-eslint/eslint-config-prettier@npm:^1.3.1":
version: 1.3.1
resolution: "@myparcel-eslint/eslint-config-prettier@npm:1.3.1"
dependencies:
"@myparcel/prettier-config": "npm:>= 1"
eslint-config-prettier: "npm:1 - 8"
eslint-plugin-prettier: "npm:1 - 4"
peerDependencies:
eslint: 7 - 8
prettier: ">= 2"
checksum: 10c0/596ffb0bcca7f35d483956fd25569af4d6f3b71266acbe20a2905c8ec8edfac416876db3113971f0a7f0a517e8bd82c3fda25ce4de486fc53ba6817ec46c11f3
languageName: node
linkType: hard
"@myparcel-eslint/eslint-config-typescript-vue@npm:^1.3.1":
version: 1.3.1
resolution: "@myparcel-eslint/eslint-config-typescript-vue@npm:1.3.1"
dependencies:
"@myparcel-eslint/eslint-config-typescript": "npm:^1.3.1"
"@myparcel-eslint/eslint-config-vue": "npm:^1.3.1"
"@vue/eslint-config-typescript": "npm:1 - 11"
eslint-plugin-vue: "npm:1 - 9"
peerDependencies:
eslint: 7 - 8
checksum: 10c0/0854245693939c3978cf0227d45efe77af9d27e1193d3b88e04c8a9e47638c2766f18c67a6c5637cb310c43f369123747cfc5aff2759f31b8f6a6e1b9f85b173
languageName: node
linkType: hard
"@myparcel-eslint/eslint-config-typescript@npm:^1.3.1":
version: 1.3.1
resolution: "@myparcel-eslint/eslint-config-typescript@npm:1.3.1"
dependencies:
"@myparcel-eslint/eslint-config-es6": "npm:^1.3.1"
"@myparcel-eslint/eslint-config-esnext": "npm:^1.3.1"
"@typescript-eslint/eslint-plugin": "npm:1 - 5"
"@typescript-eslint/parser": "npm:1 - 5"
peerDependencies:
eslint: 7 - 8