forked from lukethacoder/sfdx-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpnpm-lock.yaml
9532 lines (7511 loc) · 318 KB
/
pnpm-lock.yaml
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
lockfileVersion: '9.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
overrides:
'@lwc/module-resolver': ^6.0.0
importers:
.:
devDependencies:
'@lukethacoder/lwc-module-resolver':
specifier: ^6.0.0
version: 6.5.0
'@lukethacoder/lwc-webpack-plugin':
specifier: ^4.2.0
version: 4.3.0(@lwc/engine-dom@6.5.2)(@lwc/synthetic-shadow@6.5.2)(@lwc/wire-service@6.5.2)(lwc@6.5.2(@babel/core@7.24.4)(rollup@2.79.1))
'@lwc-garden/core':
specifier: ^1.0.0
version: 1.0.1(@lukethacoder/lwc-module-resolver@6.5.0)(@lwc/compiler@6.5.2)(@lwrjs/client-modules@0.12.2)(@lwrjs/config@0.12.2(@lwc/engine-dom@6.5.2)(@lwc/synthetic-shadow@6.5.2)(@lwrjs/esbuild@0.12.2)(lwc@6.5.2(@babel/core@7.24.4)(rollup@2.79.1)))(@lwrjs/core@0.12.2(@babel/core@7.24.4)(@lwc/compiler@6.5.2)(@lwc/engine-dom@6.5.2)(@lwc/features@6.5.2)(@lwc/module-resolver@6.5.2)(@lwc/synthetic-shadow@6.5.2)(lwc@6.5.2(@babel/core@7.24.4)(rollup@2.79.1))(o11y@250.12.0))(@lwrjs/label-module-provider@0.12.2)(@lwrjs/loader@0.12.2)(@lwrjs/o11y@0.12.2(o11y@250.12.0))(@lwrjs/router@0.12.2(lwc@6.5.2(@babel/core@7.24.4)(rollup@2.79.1)))(@lwrjs/types@0.12.2)(@salesforce-ux/design-system@2.23.2(postcss@8.4.38))(lwc@6.5.2(@babel/core@7.24.4)(rollup@2.79.1))(lwr@0.12.2(@babel/core@7.24.4)(@lwc/compiler@6.5.2)(@lwc/engine-dom@6.5.2)(@lwc/features@6.5.2)(@lwc/module-resolver@6.5.2)(@lwc/synthetic-shadow@6.5.2)(@lwrjs/esbuild@0.12.2)(lwc@6.5.2(@babel/core@7.24.4)(rollup@2.79.1))(o11y@250.12.0))
'@lwc/compiler':
specifier: ^6.3.4
version: 6.5.2
'@lwc/engine-dom':
specifier: ^6.3.4
version: 6.5.2
'@lwc/engine-server':
specifier: ^6.3.4
version: 6.5.2
'@lwc/jest-preset':
specifier: ^16.0.0
version: 16.0.0(@lwc/compiler@6.5.2)(@lwc/engine-dom@6.5.2)(@lwc/engine-server@6.5.2)(@lwc/synthetic-shadow@6.5.2)(jest@29.7.0(@types/node@20.11.30))
'@lwc/jest-shared':
specifier: ^16.0.0
version: 16.0.0
'@lwc/jest-transformer':
specifier: ^16.0.0
version: 16.0.0(@lwc/compiler@6.5.2)(jest@29.7.0(@types/node@20.11.30))
'@lwc/synthetic-shadow':
specifier: ^6.3.4
version: 6.5.2
'@prettier/plugin-xml':
specifier: 3.4.1
version: 3.4.1(prettier@3.2.5)
'@salesforce/eslint-config-lwc':
specifier: ^3.5.3
version: 3.5.3(@lwc/eslint-plugin-lwc@1.7.2(@babel/eslint-parser@7.24.1(@babel/core@7.24.4)(eslint@9.0.0))(eslint@9.0.0))(@salesforce/eslint-plugin-lightning@1.0.0(eslint@9.0.0))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.21.0(eslint@9.0.0)(typescript@5.4.5))(eslint@9.0.0))(eslint-plugin-jest@28.2.0(@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@9.0.0)(typescript@5.4.5))(eslint@9.0.0)(typescript@5.4.5))(eslint@9.0.0)(jest@29.7.0(@types/node@20.11.30))(typescript@5.4.5))(eslint@9.0.0)
'@salesforce/sfdx-lwc-jest':
specifier: ^5.0.0
version: 5.0.0(@types/node@20.11.30)(eslint@9.0.0)(typescript@5.4.5)
'@salesforce/wire-service-jest-util':
specifier: ^4.1.4
version: 4.1.4(@lwc/engine-dom@6.5.2)(eslint@9.0.0)(typescript@5.4.5)
'@trivago/prettier-plugin-sort-imports':
specifier: ^4.3.0
version: 4.3.0(prettier@3.2.5)
eslint:
specifier: ^9.0.0
version: 9.0.0
husky:
specifier: ^9.0.11
version: 9.0.11
jest:
specifier: ^29.7.0
version: 29.7.0(@types/node@20.11.30)
jest-environment-jsdom:
specifier: ^29.7.0
version: 29.7.0
lint-staged:
specifier: ^15.2.2
version: 15.2.2
lwc:
specifier: ^6.3.4
version: 6.5.2(@babel/core@7.24.4)(rollup@2.79.1)
lwr:
specifier: ^0.12.0
version: 0.12.2(@babel/core@7.24.4)(@lwc/compiler@6.5.2)(@lwc/engine-dom@6.5.2)(@lwc/features@6.5.2)(@lwc/module-resolver@6.5.2)(@lwc/synthetic-shadow@6.5.2)(@lwrjs/esbuild@0.12.2)(lwc@6.5.2(@babel/core@7.24.4)(rollup@2.79.1))(o11y@250.12.0)
prettier:
specifier: ^3.2.5
version: 3.2.5
prettier-plugin-apex:
specifier: ^2.1.0
version: 2.1.0(prettier@3.2.5)
packages:
'@aashutoshrathi/word-wrap@1.2.6':
resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==}
engines: {node: '>=0.10.0'}
'@ampproject/remapping@2.3.0':
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
'@babel/code-frame@7.24.2':
resolution: {integrity: sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==}
engines: {node: '>=6.9.0'}
'@babel/compat-data@7.24.4':
resolution: {integrity: sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ==}
engines: {node: '>=6.9.0'}
'@babel/core@7.22.20':
resolution: {integrity: sha512-Y6jd1ahLubuYweD/zJH+vvOY141v4f9igNQAQ+MBgq9JlHS2iTsZKn1aMsb3vGccZsXI16VzTBw52Xx0DWmtnA==}
engines: {node: '>=6.9.0'}
'@babel/core@7.24.1':
resolution: {integrity: sha512-F82udohVyIgGAY2VVj/g34TpFUG606rumIHjTfVbssPg2zTR7PuuEpZcX8JA6sgBfIYmJrFtWgPvHQuJamVqZQ==}
engines: {node: '>=6.9.0'}
'@babel/core@7.24.3':
resolution: {integrity: sha512-5FcvN1JHw2sHJChotgx8Ek0lyuh4kCKelgMTTqhYJJtloNvUfpAFMeNQUtdlIaktwrSV9LtCdqwk48wL2wBacQ==}
engines: {node: '>=6.9.0'}
'@babel/core@7.24.4':
resolution: {integrity: sha512-MBVlMXP+kkl5394RBLSxxk/iLTeVGuXTV3cIDXavPpMMqnSnt6apKgan/U8O3USWZCWZT/TbgfEpKa4uMgN4Dg==}
engines: {node: '>=6.9.0'}
'@babel/eslint-parser@7.22.15':
resolution: {integrity: sha512-yc8OOBIQk1EcRrpizuARSQS0TWAcOMpEJ1aafhNznaeYkeL+OhqnDObGFylB8ka8VFF/sZc+S4RzHyO+3LjQxg==}
engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0}
peerDependencies:
'@babel/core': ^7.11.0
eslint: ^7.5.0 || ^8.0.0
'@babel/eslint-parser@7.24.1':
resolution: {integrity: sha512-d5guuzMlPeDfZIbpQ8+g1NaCNuAGBBGNECh0HVqz1sjOeVLh2CEaifuOysCH18URW6R7pqXINvf5PaR/dC6jLQ==}
engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0}
peerDependencies:
'@babel/core': ^7.11.0
eslint: ^7.5.0 || ^8.0.0
'@babel/generator@7.17.7':
resolution: {integrity: sha512-oLcVCTeIFadUoArDTwpluncplrYBmTCCZZgXCbgNGvOBBiSDDK3eWO4b/+eOTli5tKv1lg+a5/NAXg+nTcei1w==}
engines: {node: '>=6.9.0'}
'@babel/generator@7.21.4':
resolution: {integrity: sha512-NieM3pVIYW2SwGzKoqfPrQsf4xGs9M9AIG3ThppsSRmO+m7eQhmI6amajKMUeIO37wFfsvnvcxQFx6x6iqxDnA==}
engines: {node: '>=6.9.0'}
'@babel/generator@7.24.1':
resolution: {integrity: sha512-DfCRfZsBcrPEHUfuBMgbJ1Ut01Y/itOs+hY2nFLgqsqXd52/iSiVq5TITtUasIUgm+IIKdY2/1I7auiQOEeC9A==}
engines: {node: '>=6.9.0'}
'@babel/generator@7.24.4':
resolution: {integrity: sha512-Xd6+v6SnjWVx/nus+y0l1sxMOTOMBkyL4+BIdbALyatQnAe/SRVjANeDPSCYaX+i1iJmuGSKf3Z+E+V/va1Hvw==}
engines: {node: '>=6.9.0'}
'@babel/helper-annotate-as-pure@7.22.5':
resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
engines: {node: '>=6.9.0'}
'@babel/helper-compilation-targets@7.23.6':
resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-create-class-features-plugin@7.24.4':
resolution: {integrity: sha512-lG75yeuUSVu0pIcbhiYMXBXANHrpUPaOfu7ryAzskCgKUHuAxRQI5ssrtmF0X9UXldPlvT0XM/A4F44OXRt6iQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-environment-visitor@7.22.20':
resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==}
engines: {node: '>=6.9.0'}
'@babel/helper-function-name@7.23.0':
resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==}
engines: {node: '>=6.9.0'}
'@babel/helper-hoist-variables@7.22.5':
resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
engines: {node: '>=6.9.0'}
'@babel/helper-member-expression-to-functions@7.23.0':
resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-imports@7.22.15':
resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-imports@7.24.3':
resolution: {integrity: sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-transforms@7.23.3':
resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-optimise-call-expression@7.22.5':
resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
engines: {node: '>=6.9.0'}
'@babel/helper-plugin-utils@7.24.0':
resolution: {integrity: sha512-9cUznXMG0+FxRuJfvL82QlTqIzhVW9sL0KjMPHhAOOvpQGL8QtdxnBKILjBqxlHyliz0yCa1G903ZXI/FuHy2w==}
engines: {node: '>=6.9.0'}
'@babel/helper-remap-async-to-generator@7.22.20':
resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-replace-supers@7.24.1':
resolution: {integrity: sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-simple-access@7.22.5':
resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}
engines: {node: '>=6.9.0'}
'@babel/helper-skip-transparent-expression-wrappers@7.22.5':
resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==}
engines: {node: '>=6.9.0'}
'@babel/helper-split-export-declaration@7.22.6':
resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
engines: {node: '>=6.9.0'}
'@babel/helper-string-parser@7.24.1':
resolution: {integrity: sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-identifier@7.22.20':
resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-option@7.23.5':
resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==}
engines: {node: '>=6.9.0'}
'@babel/helper-wrap-function@7.22.20':
resolution: {integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==}
engines: {node: '>=6.9.0'}
'@babel/helpers@7.24.1':
resolution: {integrity: sha512-BpU09QqEe6ZCHuIHFphEFgvNSrubve1FtyMton26ekZ85gRGi6LrTF7zArARp2YvyFxloeiRmtSCq5sjh1WqIg==}
engines: {node: '>=6.9.0'}
'@babel/helpers@7.24.4':
resolution: {integrity: sha512-FewdlZbSiwaVGlgT1DPANDuCHaDMiOo+D/IDYRFYjHOuv66xMSJ7fQwwODwRNAPkADIO/z1EoF/l2BCWlWABDw==}
engines: {node: '>=6.9.0'}
'@babel/highlight@7.24.2':
resolution: {integrity: sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==}
engines: {node: '>=6.9.0'}
'@babel/parser@7.24.1':
resolution: {integrity: sha512-Zo9c7N3xdOIQrNip7Lc9wvRPzlRtovHVE4lkz8WEDr7uYh/GMQhSiIgFxGIArRHYdJE5kxtZjAf8rT0xhdLCzg==}
engines: {node: '>=6.0.0'}
hasBin: true
'@babel/parser@7.24.4':
resolution: {integrity: sha512-zTvEBcghmeBma9QIGunWevvBAp4/Qu9Bdq+2k0Ot4fVMD6v3dsC9WOcRSKk7tRRyBM/53yKMJko9xOatGQAwSg==}
engines: {node: '>=6.0.0'}
hasBin: true
'@babel/plugin-proposal-async-generator-functions@7.20.7':
resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
engines: {node: '>=6.9.0'}
deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead.
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-proposal-class-properties@7.18.6':
resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
engines: {node: '>=6.9.0'}
deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-proposal-dynamic-import@7.18.6':
resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
engines: {node: '>=6.9.0'}
deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-dynamic-import instead.
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-proposal-object-rest-spread@7.20.7':
resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
engines: {node: '>=6.9.0'}
deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead.
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-async-generators@7.8.4':
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-bigint@7.8.3':
resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-class-properties@7.12.13':
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-decorators@7.24.1':
resolution: {integrity: sha512-05RJdO/cCrtVWuAaSn1tS3bH8jbsJa/Y1uD186u6J4C/1mnHFxseeuWpsqr9anvo7TUulev7tm7GDwRV+VuhDw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-dynamic-import@7.8.3':
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-import-meta@7.10.4':
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-json-strings@7.8.3':
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-jsx@7.24.1':
resolution: {integrity: sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-logical-assignment-operators@7.10.4':
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-nullish-coalescing-operator@7.8.3':
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-numeric-separator@7.10.4':
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-object-rest-spread@7.8.3':
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-optional-catch-binding@7.8.3':
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-optional-chaining@7.8.3':
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-top-level-await@7.14.5':
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-typescript@7.24.1':
resolution: {integrity: sha512-Yhnmvy5HZEnHUty6i++gcfH1/l68AHnItFHnaCv6hn9dNh0hQvvQJsxpi4BMBFN5DLeHBuucT/0DgzXif/OyRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-async-to-generator@7.23.3':
resolution: {integrity: sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-async-to-generator@7.24.1':
resolution: {integrity: sha512-AawPptitRXp1y0n4ilKcGbRYWfbbzFWz2NqNu7dacYDtFtz0CMjG64b3LQsb3KIgnf4/obcUL78hfaOS7iCUfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-modules-commonjs@7.24.1':
resolution: {integrity: sha512-szog8fFTUxBfw0b98gEWPaEqF42ZUD/T3bkynW/wtgx2p/XCP55WEsb+VosKceRSd6njipdZvNogqdtI4Q0chw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-parameters@7.24.1':
resolution: {integrity: sha512-8Jl6V24g+Uw5OGPeWNKrKqXPDw2YDjLc53ojwfMcKwlEoETKU9rU0mHUtcg9JntWI/QYzGAXNWEcVHZ+fR+XXg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-typescript@7.24.1':
resolution: {integrity: sha512-liYSESjX2fZ7JyBFkYG78nfvHlMKE6IpNdTVnxmlYUR+j5ZLsitFbaAE+eJSK2zPPkNWNw4mXL51rQ8WrvdK0w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/preset-typescript@7.24.1':
resolution: {integrity: sha512-1DBaMmRDpuYQBPWD8Pf/WEwCrtgRHxsZnP4mIy9G/X+hFfbI47Q2G4t1Paakld84+qsk2fSsUPMKg71jkoOOaQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/template@7.24.0':
resolution: {integrity: sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==}
engines: {node: '>=6.9.0'}
'@babel/traverse@7.23.2':
resolution: {integrity: sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==}
engines: {node: '>=6.9.0'}
'@babel/traverse@7.24.1':
resolution: {integrity: sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ==}
engines: {node: '>=6.9.0'}
'@babel/types@7.17.0':
resolution: {integrity: sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw==}
engines: {node: '>=6.9.0'}
'@babel/types@7.24.0':
resolution: {integrity: sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==}
engines: {node: '>=6.9.0'}
'@bcoe/v8-coverage@0.2.3':
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
'@esbuild-plugins/node-modules-polyfill@0.2.2':
resolution: {integrity: sha512-LXV7QsWJxRuMYvKbiznh+U1ilIop3g2TeKRzUxOG5X3YITc8JyyTa90BmLwqqv0YnX4v32CSlG+vsziZp9dMvA==}
peerDependencies:
esbuild: '*'
'@esbuild/android-arm64@0.17.19':
resolution: {integrity: sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [android]
'@esbuild/android-arm@0.17.19':
resolution: {integrity: sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==}
engines: {node: '>=12'}
cpu: [arm]
os: [android]
'@esbuild/android-x64@0.17.19':
resolution: {integrity: sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==}
engines: {node: '>=12'}
cpu: [x64]
os: [android]
'@esbuild/darwin-arm64@0.17.19':
resolution: {integrity: sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==}
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
'@esbuild/darwin-x64@0.17.19':
resolution: {integrity: sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==}
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
'@esbuild/freebsd-arm64@0.17.19':
resolution: {integrity: sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==}
engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
'@esbuild/freebsd-x64@0.17.19':
resolution: {integrity: sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
'@esbuild/linux-arm64@0.17.19':
resolution: {integrity: sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==}
engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
'@esbuild/linux-arm@0.17.19':
resolution: {integrity: sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==}
engines: {node: '>=12'}
cpu: [arm]
os: [linux]
'@esbuild/linux-ia32@0.17.19':
resolution: {integrity: sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==}
engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
'@esbuild/linux-loong64@0.17.19':
resolution: {integrity: sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==}
engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
'@esbuild/linux-mips64el@0.17.19':
resolution: {integrity: sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==}
engines: {node: '>=12'}
cpu: [mips64el]
os: [linux]
'@esbuild/linux-ppc64@0.17.19':
resolution: {integrity: sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [linux]
'@esbuild/linux-riscv64@0.17.19':
resolution: {integrity: sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==}
engines: {node: '>=12'}
cpu: [riscv64]
os: [linux]
'@esbuild/linux-s390x@0.17.19':
resolution: {integrity: sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==}
engines: {node: '>=12'}
cpu: [s390x]
os: [linux]
'@esbuild/linux-x64@0.17.19':
resolution: {integrity: sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==}
engines: {node: '>=12'}
cpu: [x64]
os: [linux]
'@esbuild/netbsd-x64@0.17.19':
resolution: {integrity: sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==}
engines: {node: '>=12'}
cpu: [x64]
os: [netbsd]
'@esbuild/openbsd-x64@0.17.19':
resolution: {integrity: sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==}
engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
'@esbuild/sunos-x64@0.17.19':
resolution: {integrity: sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==}
engines: {node: '>=12'}
cpu: [x64]
os: [sunos]
'@esbuild/win32-arm64@0.17.19':
resolution: {integrity: sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==}
engines: {node: '>=12'}
cpu: [arm64]
os: [win32]
'@esbuild/win32-ia32@0.17.19':
resolution: {integrity: sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==}
engines: {node: '>=12'}
cpu: [ia32]
os: [win32]
'@esbuild/win32-x64@0.17.19':
resolution: {integrity: sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==}
engines: {node: '>=12'}
cpu: [x64]
os: [win32]
'@eslint-community/eslint-utils@4.4.0':
resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
'@eslint-community/regexpp@4.10.0':
resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
'@eslint/eslintrc@3.0.2':
resolution: {integrity: sha512-wV19ZEGEMAC1eHgrS7UQPqsdEiCIbTKTasEfcXAigzoXICcqZSjBZEHlZwNVvKg6UBCjSlos84XiLqsRJnIcIg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/js@9.0.0':
resolution: {integrity: sha512-RThY/MnKrhubF6+s1JflwUjPEsnCEmYCWwqa/aRISKWNXGZ9epUwft4bUMM35SdKF9xvBrLydAM1RDHd1Z//ZQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@grpc/grpc-js@1.10.4':
resolution: {integrity: sha512-MqBisuxTkYvPFnEiu+dag3xG/NBUDzSbAFAWlzfkGnQkjVZ6by3h4atbBc+Ikqup1z5BfB4BN18gKWR1YyppNw==}
engines: {node: '>=12.10.0'}
'@grpc/proto-loader@0.7.11':
resolution: {integrity: sha512-amjhSfJ+xYnTP+hncJMmkchoRtjIdi+uO3FaymGSCr07yu5xfpXFEnhZkTU1mj2lPJB3oVToau7j9YkqB+YNdg==}
engines: {node: '>=6'}
hasBin: true
'@hapi/hoek@9.3.0':
resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==}
'@hapi/topo@5.1.0':
resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==}
'@humanwhocodes/config-array@0.12.3':
resolution: {integrity: sha512-jsNnTBlMWuTpDkeE3on7+dWJi0D6fdDfeANj/w7MpS8ztROCoLvIO2nG0CcFj+E4k8j4QrSTh4Oryi3i2G669g==}
engines: {node: '>=10.10.0'}
'@humanwhocodes/module-importer@1.0.1':
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
engines: {node: '>=12.22'}
'@humanwhocodes/object-schema@2.0.3':
resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==}
'@istanbuljs/load-nyc-config@1.1.0':
resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==}
engines: {node: '>=8'}
'@istanbuljs/schema@0.1.3':
resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==}
engines: {node: '>=8'}
'@jest/console@29.7.0':
resolution: {integrity: sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
'@jest/core@29.7.0':
resolution: {integrity: sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
peerDependenciesMeta:
node-notifier:
optional: true
'@jest/environment@29.7.0':
resolution: {integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
'@jest/expect-utils@29.7.0':
resolution: {integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
'@jest/expect@29.7.0':
resolution: {integrity: sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
'@jest/fake-timers@29.7.0':
resolution: {integrity: sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
'@jest/globals@29.7.0':
resolution: {integrity: sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
'@jest/reporters@29.7.0':
resolution: {integrity: sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
peerDependenciesMeta:
node-notifier:
optional: true
'@jest/schemas@29.6.3':
resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
'@jest/source-map@29.6.3':
resolution: {integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
'@jest/test-result@29.7.0':
resolution: {integrity: sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
'@jest/test-sequencer@29.7.0':
resolution: {integrity: sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
'@jest/transform@29.7.0':
resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
'@jest/types@29.6.3':
resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
'@jridgewell/gen-mapping@0.3.5':
resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
engines: {node: '>=6.0.0'}
'@jridgewell/resolve-uri@3.1.2':
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
engines: {node: '>=6.0.0'}
'@jridgewell/set-array@1.2.1':
resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
engines: {node: '>=6.0.0'}
'@jridgewell/sourcemap-codec@1.4.15':
resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
'@jridgewell/trace-mapping@0.3.25':
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
'@js-sdsl/ordered-map@4.4.2':
resolution: {integrity: sha512-iUKgm52T8HOE/makSxjqoWhe95ZJA1/G1sYsGev2JDKUSS14KAgg1LHb+Ba+IPow0xflbnSkOsZcO08C7w1gYw==}
'@koa/router@10.1.1':
resolution: {integrity: sha512-ORNjq5z4EmQPriKbR0ER3k4Gh7YGNhWDL7JBW+8wXDrHLbWYKYSJaOJ9aN06npF5tbTxe2JBOsurpJDAvjiXKw==}
engines: {node: '>= 8.0.0'}
deprecated: '**IMPORTANT 10x+ PERFORMANCE UPGRADE**: Please upgrade to v12.0.1+ as we have fixed an issue with debuglog causing 10x slower router benchmark performance, see https://github.com/koajs/router/pull/173'
'@locker/babel-plugin-transform-unforgeables@0.20.0':
resolution: {integrity: sha512-7bz3Zw/y+3n0zISjOwhVXF7j1DmEqFBVFup5Y27E3VyCOVNu6EVH4WWyYV2gjGPfhN7CkljIOZuk5ouiujIcrw==}
'@locker/distortion@0.21.4':
resolution: {integrity: sha512-izJl1WmjBE583GSErTFe44atjdtijECfBxOfI3vZWIMzJlbN2qvpdmDtEiFI4Qzl2QXfH5GwYGhkQ5SJVm1EoQ==}
'@locker/html-sanitizer@0.21.4':
resolution: {integrity: sha512-XSTilK9EqQrolA1MzZk07JQY1eTrsIJsYcjC7YxTrmEeGaPNqWkHSmhT0p5bTrmo7gblETyGeWMWetYRKvVo+w==}
'@locker/internal-policy@0.21.4':
resolution: {integrity: sha512-UjIr7IqMT24nrxDsXB/njfru901d1IbBK5BpN3KqDjWitfWT3amgpThKnt+KjYHxOJSm5Ov9r/kPBXy8LfZRMA==}
'@locker/sandbox@0.21.4':
resolution: {integrity: sha512-/1PrnId2qUQG+5EuCnojCSsZyRkyLZv8otQ3lA5FMDLhyp0iV8aOK9jaGFSbOjuLSNz2UI+5cb0SjWTn1I++Jw==}
'@locker/shared-dom@0.21.4':
resolution: {integrity: sha512-SRBIuG7zlwH/BoHcejXGTKDJ6n8XpMjIbuR0w9Thko9QdZajlk/4UY+faLRJ6rUEErxkaYTR+vSxtUlJJqwA8g==}
'@locker/shared-url@0.21.4':
resolution: {integrity: sha512-OaU/pJGIbBIsLoCcpQ2hXSn/eesepogZ28zL544h/owWU/oM2DN64E3lPWpJiyGuyjhaK/W6wbT2Zvikmi9RFg==}
'@locker/shared@0.21.4':
resolution: {integrity: sha512-iiIzs8Cegc3TTEi0GWh+ibCH9rxGm3zUpn8zc+0wWMCmIwywzgOdSQq0MJzqzKgIidxvMkqu/KDSvK4VBDITVw==}
'@locker/trusted-types@0.21.4':
resolution: {integrity: sha512-JLLH5Ob1AXz+tFkJ8DS3zuB/3vf1pXA3z1+GkD8O/ZotAVx4m48waLPV9j99LLYYngnOo04g5XS+Ayfv+t6S5g==}
'@lukethacoder/lwc-module-resolver@6.5.0':
resolution: {integrity: sha512-bEs1b2ZCx8wUI1p5dT5hfHWDlastNnse8mrKavV0WQvqrvt1SSY5IMzc8UTGnlC3EdV+oTEW+uu9gh2INGLR2A==}
'@lukethacoder/lwc-webpack-plugin@4.3.0':
resolution: {integrity: sha512-4Vh+IwwIN8VOE5ljZcuLiOswvbybNaW9TP41huFmxPZx30ZGwlm0h6W5U/siDbAIdVzv5gW1Tl+/n9G0Wntlgw==}
peerDependencies:
'@lwc/engine-dom': ^6.5.0
'@lwc/synthetic-shadow': ^6.5.0
'@lwc/wire-service': ^6.5.0
lwc: ^6.5.0
'@lukethacoder/lwrjs-lwc-module-provider@0.12.2':
resolution: {integrity: sha512-RMI8EEDqaWkMuVnjOt2AfkBw1tGF9TEePrCfeuM/XFCoXwq61uy/tWbXsoCLjOH0j2sM9UyWqgkK4mIkZcHsRQ==}
engines: {node: '>=18.0.0'}
peerDependencies:
'@lukethacoder/lwc-module-resolver': '>= 6.x'
'@lwc/compiler': '>= 2.x'
'@lwc-garden/core@1.0.1':
resolution: {integrity: sha512-jSd8SoZOV4gnK4q2ijsSgTukG4IUHQ84NWMAb8o8bne2pvF8jiY6o1EwWB37v0eanroi+u57TE4qebty2FD4gw==}
hasBin: true
peerDependencies:
'@lwrjs/client-modules': '>= 0.11.x'
'@lwrjs/config': '>= 0.11.x'
'@lwrjs/core': '>= 0.11.x'
'@lwrjs/label-module-provider': '>= 0.11.x'
'@lwrjs/loader': '>= 0.11.x'
'@lwrjs/o11y': '>= 0.11.x'
'@lwrjs/router': '>= 0.11.x'
'@lwrjs/types': '>=0.11.x'
'@salesforce-ux/design-system': ^2.23.2
lwc: '>= 6.x'
lwr: '>= 0.11.x'
'@lwc/aria-reflection@6.5.2':
resolution: {integrity: sha512-88aXe4raFFufcrd45B16DvJpcDc78oqqtAWkoBqQxRnkunOY/uVLSoV+a9A6dMBNCA5eOTHOdX/mCe6JOYn5ZA==}
'@lwc/babel-plugin-component@6.5.0':
resolution: {integrity: sha512-6BPdcOZe8CeyqgVTCDxrzce0b79lLOSxSHiz9gqJJld8LbJHj872Wq8BfFQg3yl81hDtNFlpsfUo7Oremz+OKA==}
peerDependencies:
'@babel/core': ^7
'@lwc/babel-plugin-component@6.5.2':
resolution: {integrity: sha512-elJ+3HUrEReSCDDWuPzNTK27fwrNYSZv6+gBAPFUwO3gaX8yfu/pLsHhHenUu0t0r67xd8ZjO+ICn49qK6MmJg==}
peerDependencies:
'@babel/core': ^7
'@lwc/compiler@6.5.0':
resolution: {integrity: sha512-xO8LHoV77LQtE0QBUUwuOWgsxWCK/H3mxxgWeikuTCzoEhtzST+arrLovFwoto65bv+pzCRzcmFG2hZc3Atbdw==}
'@lwc/compiler@6.5.2':
resolution: {integrity: sha512-1vwIYMb2n45oaQdFJS7bzHZ72GrgSAxjts0KlOr7lYuiLmSgK3FzEn2gOLNyzzhabaLiT8DL0PyqoDsXRagMFw==}
'@lwc/engine-core@6.5.2':
resolution: {integrity: sha512-klJ35rK1s1fYaplIY47tLYNP1N5qUA/IbN0v1gGLqldXJ83Ci9t0uBUD+FYX0wlp05K5qbA7uc+VUsIMGrg4bA==}
'@lwc/engine-dom@6.5.0':
resolution: {integrity: sha512-BnW69DPT/Ct74G0ATAEyEE5Y1JxHnAfFQBEvE0ILdGENWJ+Uc25q+e0OiIIoAgWUlp2pAxXb9C2LgYXde3kpIg==}
'@lwc/engine-dom@6.5.2':
resolution: {integrity: sha512-SBsT9kG4wLGPH4R+BcUOzZbzWh+C0BkD9t1t6LHxQMaXUWlhR7ve4CvizgvNXZBsUfrtYL8/9K+QtSWaA4riQw==}
'@lwc/engine-server@6.5.0':
resolution: {integrity: sha512-6S1GNsL0uBQRLq7u9bYnpN+taqDLkFb9SmaVQwN0RTRHjxY2Flx4yd0ebu+LqCjd6DcCm4DidsbUC8GsR5iBfg==}
'@lwc/engine-server@6.5.2':
resolution: {integrity: sha512-zxCwhRJNjqAeh9FO7tbb3aWUZkG9wytLbRYXKdspEUo8ddavKZywHroQP2Y15THSHgJNQHKBSmQSCsyjLPpIlQ==}
'@lwc/errors@6.5.0':
resolution: {integrity: sha512-hbtrIz86IAfmZ+qSa/LPOrPsirHIncotfSfgZoBb+u7q9bqlzUmoKmNKPaNvwtjQSARnCqPa+4DrFUXIGHW7gA==}
'@lwc/errors@6.5.2':
resolution: {integrity: sha512-YruPeUkkp3JDygMqm52cLXl8ob6/Z7SuISpyiPdTXY3k/kU/0uIAB2Qrcfm5WruaBe5z4srpJjcOpEBJruhZ2Q==}
'@lwc/eslint-plugin-lwc@1.7.2':
resolution: {integrity: sha512-fvdW/yvkNfqgt2Cc4EJCRYE55QJVNXdDaVTHRk5i1kkKP2Xj3GG0nAsYwXYqApEeRpUTpUZljPlO29/SWRXJoA==}
engines: {node: '>=10.0.0'}
peerDependencies:
'@babel/eslint-parser': ^7
eslint: ^7 || ^8
'@lwc/features@6.5.2':
resolution: {integrity: sha512-+gskA4QJGe875ML/GusCQTZ93Z+w7OVt6mLJfraFMOjCIrvB3f7GU3ficEpdYiZj3fVb816y880hcbERylQyfQ==}
'@lwc/jest-preset@15.0.0':
resolution: {integrity: sha512-qwLO9d5WEpG3GTJ4TLmkN53FBZHUlyxr4At6/qsWtv7NXPzVJVxFRdFZDgW+sut2TIfbpD5Ptg3Ex7a+5ul1pA==}
engines: {node: '>=10'}
peerDependencies:
'@lwc/compiler': '>=5.0.0'
'@lwc/engine-dom': '>=5.0.0'
'@lwc/engine-server': '>=5.0.0'
'@lwc/synthetic-shadow': '>=5.0.0'
jest: ^26 || ^27 || ^28 || ^29
'@lwc/jest-preset@16.0.0':
resolution: {integrity: sha512-3mBI3HzU+0KvDSTWAhcSpX139gkyzmCIpsJb67x/Jwm2en4+3q8i5/aCc7I2QJwIw/25T2LJUcDbz4Z5zD3VDw==}
engines: {node: '>=10'}
peerDependencies:
'@lwc/compiler': '>=5.0.0'
'@lwc/engine-dom': '>=5.0.0'
'@lwc/engine-server': '>=5.0.0'
'@lwc/synthetic-shadow': '>=5.0.0'
jest: ^26 || ^27 || ^28 || ^29
'@lwc/jest-resolver@15.0.0':
resolution: {integrity: sha512-vCZfo1ybbYrALlRI3lZc4tbvFq5XsmVT214CVCTUoQ9QzJpiEZwCefULywpX2sW0xoqp89AXuLzeHdek6gSE4Q==}
engines: {node: '>=10'}
peerDependencies:
jest: ^26 || ^27 || ^28 || ^29
'@lwc/jest-resolver@16.0.0':
resolution: {integrity: sha512-REEN9cBHdppEcC0yYmCS9AmFiBPOFiH6VAfR5IbggfL4ykF2D90oE6p35oFSWZV7fqFBeWuc2jxAmE/bv/Dl1A==}
engines: {node: '>=10'}
peerDependencies:
jest: ^26 || ^27 || ^28 || ^29
'@lwc/jest-serializer@15.0.0':
resolution: {integrity: sha512-d4cqeiG58h9wuQnA3XvtUcUOmJw8VOBxL4MpsWdABA35rN7Wt5BFWm4mEOZ3L+pnIO7J0Eo9JdZ1w88hJLNjVQ==}
engines: {node: '>=10'}
peerDependencies:
jest: ^26 || ^27 || ^28 || ^29
'@lwc/jest-serializer@16.0.0':
resolution: {integrity: sha512-VDVnsxBpS+WwviNieH4bZzq+N0EMdAM3RCbc4L9d4HbSOF8slD/kdsTXkhcaDW6hCXP8TKztMPNTvOzY+qH9+A==}
engines: {node: '>=10'}
peerDependencies:
jest: ^26 || ^27 || ^28 || ^29
'@lwc/jest-shared@15.0.0':
resolution: {integrity: sha512-RUlT789k4xH9NYJsB5uvVo6c+EY5pwrly5aOQje6+jQBHWcBPp7Z/vQFDM/gvft4pmHjyniqR6XCFaJ/BJ702g==}
engines: {node: '>=10'}
'@lwc/jest-shared@16.0.0':
resolution: {integrity: sha512-S1LiCi2ToC20va1KBcuWqH3Bm9t96k2inVCeGN96+Q4sZSrebBHwfyBEBKq75uwph7FbhHmYv7chLPDZUQIoVg==}
engines: {node: '>=10'}
'@lwc/jest-transformer@15.0.0':
resolution: {integrity: sha512-ZsP8eytxZYt5zR6ysLmREiArpmeTUAoom22RbNdiIHytYcC2AcrZWrwju0VleMxJ1pVVkB3xE9nOlGOywdFf1Q==}
engines: {node: '>=10'}
peerDependencies:
'@lwc/compiler': '>=2.48.0'
jest: ^26 || ^27 || ^28 || ^29
'@lwc/jest-transformer@16.0.0':
resolution: {integrity: sha512-//iiLVPdaOnzg/HN8mox+xeSKmebzVervoaJWhvmICIDagtZz9S88dSVsnFKsnY03yOLA7XM8Wz/11ZaZ8bhUg==}
engines: {node: '>=10'}
peerDependencies:
'@lwc/compiler': '>=2.48.0'
jest: ^26 || ^27 || ^28 || ^29
'@lwc/module-resolver@6.5.0':
resolution: {integrity: sha512-bgxCdRygdDQjM9q9r43U5O+qDnod7XiNye8KmAItfogsOE8j278A3BobF6a3sgG9qifpE0IhAQeNw1mejBPXsg==}
'@lwc/module-resolver@6.5.2':
resolution: {integrity: sha512-b5Uoj/eRDVh1nn3lmLxVZabVJ95LL7J+4sIYDRgASnAo8R3F1Y4n+HJzCR2vnNg63iciPLlSBi+LMvmFErbMAw==}
'@lwc/rollup-plugin@6.5.2':
resolution: {integrity: sha512-QfyvHOM/wrp0MEZVOdpQBv+U7vsw1GUwAD1wOh7A8KjcP7g2P8jkjRVMfk2csWMhxaVchqOLdWnfRHrZ5whL6w==}
peerDependencies:
rollup: ^1.2.0||^2.0.0||^3.0.0||^4.0.0
'@lwc/shared@6.5.0':
resolution: {integrity: sha512-GkModrLxc7LYZ8Kh9adGwKZHpzlpceCpNlfQPcVvB9EdmOuQVwNwU7+DW3+wFdTm2DdAD8uToSftBsuT4gLwTw==}
'@lwc/shared@6.5.2':
resolution: {integrity: sha512-jIQaYzU3eQHweMB5A6WMMwkhbjDrJMNuKTY8f7m6fnsQnXWiuQ2ApHXSnqH1Sj3+Aq3c+ReTxuwc98hERLtmxw==}
'@lwc/signals@6.5.2':
resolution: {integrity: sha512-2vDQdtBq7lQZL70h+fh6R8Y2RTMcHILiZ9KXliKOVi3ASkpltNPWjTX9InvNZxhGm0gMW1IOEk0UymO6oMRlMA==}
'@lwc/style-compiler@6.5.0':
resolution: {integrity: sha512-PCxU6IeXLhNoj/de1kzjzOo8SECZLHJ30TrLx50ISwCIr2XfZ7Ay0hItNtZuxj4j+1cZ285SU+eq22hAJCptoQ==}
'@lwc/style-compiler@6.5.2':
resolution: {integrity: sha512-9Z0DCPXF/ZH0TepH9yJbVmu20o1ORA0K5ckWyjiG0AaZn5JfJ6QYVwuvLVcuki3yMwcndU/J7Qj9LfNZKmc9mA==}
'@lwc/synthetic-shadow@6.5.0':
resolution: {integrity: sha512-0Xn+q0QwTI5DaOawHA9E+/QXTz2+DhOTqcfmYFENPvuqDLnETyiWnnbu9bFoBUMgh1U6eyBN+3sco69oL6xY5Q==}
'@lwc/synthetic-shadow@6.5.2':
resolution: {integrity: sha512-pk8ytZMf/vf8+Iztau6qhbJ9+rGk4Z9hnIWSPVTVY19szx4SF5tAaQsJNJfXb3jfConyxOTm3yp/15sKoN9n3Q==}
'@lwc/template-compiler@6.5.0':
resolution: {integrity: sha512-n6zQOatVzjxN1PHmErvN2VoQY9XzPTSh+j5CgzXQlu0bdEU5/KGFMQF3jN8aUvHK49o++t91Q8BN1cKkPcG62g==}
'@lwc/template-compiler@6.5.2':
resolution: {integrity: sha512-6rKmsC6YM9o4KcQrM85l1FYyYwuMWPe6KtiCepp0SBmygZWyMt6fa0BMWYT2ZJS8N18JJOQLxPrZeFYrAsSuvQ==}
'@lwc/wire-service@6.5.0':
resolution: {integrity: sha512-mKkqDyR7DRxEqjDX3rl8jEod13CJX7WNf3uOuq6sqacYTZhD6uADypLUOwlalAkucy3b88JuLrQ9IyPluwswUQ==}
'@lwc/wire-service@6.5.2':
resolution: {integrity: sha512-H0/erhLUpk10PbbFR9UP9PrJV0aygVPdbYJlT0ImKxaPmzh4fnLJELa4I5ZgroPqlGcQL7eCAEYhUU7wd1QF3g==}
'@lwrjs/app-service@0.12.2':
resolution: {integrity: sha512-JMiduy0gJjlGZIKSAYSf2mr061Yrs+4kNEfr18nOPzo93lVMnp3LVx9WDKjqzDCz7jod+wsDR82LAIr0csHxeA==}
engines: {node: '>=18.0.0'}
'@lwrjs/asset-registry@0.12.2':
resolution: {integrity: sha512-9rH5p6wwPYAci0G66bcVGj8kr1ZB9wnwsOCUZk0u/es2C3L6HHXDDr08eOJZ19AMsTYsKW/cy4D9IuAzkxHQQw==}
engines: {node: '>=18.0.0'}
'@lwrjs/asset-transformer@0.12.2':
resolution: {integrity: sha512-e5Z3WBte5DBnwhWMgRiLUF3SI/lOAehQ1rGygLrAglFuH1c6LiEilM0fJVjjQtiqIRLZs0aaEaZaMWYhhYuzag==}
engines: {node: '>=18.0.0'}
'@lwrjs/base-view-provider@0.12.2':
resolution: {integrity: sha512-ZCDer1Cr2LepDpYMjMsRg25VkK0ys2kZCIf3opjKOjUBjF/1kFR0f5NP0o972iqR8mzzVXZnV6qu2F1NFrdlCQ==}
engines: {node: '>=18.0.0'}
'@lwrjs/base-view-transformer@0.12.2':
resolution: {integrity: sha512-tmfg3uPHKYUn9ByZdR0tcGL+4xDCUffdQ9jPiGDh/Y/9n6F0YNJtadLZbSlR0Az1RzJ6Xk+WOYrvp7cf+oUFiA==}
engines: {node: '>=18.0.0'}
'@lwrjs/client-modules@0.12.2':
resolution: {integrity: sha512-KtyOSSEJuF963Dc5nkJj2+f20hH15/glylHmkN5PxrszR1CgkbOCQVTJ/+XM8f12dmGQBGuuulSJVQGUrcWUpw==}
engines: {node: '>=18.0.0'}
'@lwrjs/config@0.12.2':
resolution: {integrity: sha512-4qcDlTUT6cj1gIO09TzYB5DW7Vee9UIqzRGC30dWm1oIdvsZxUYXBTVF7+XiNAxT514+DGxS/Vgy775hL8ZkVA==}
engines: {node: '>=18.0.0'}
peerDependencies:
'@lwc/engine-dom': '>= 2.x'
'@lwc/synthetic-shadow': '>= 2.x'
'@lwrjs/esbuild': 0.12.x || >= 0.12.0-alpha
lwc: '>= 2.x'
peerDependenciesMeta:
'@lwrjs/esbuild':
optional: true
'@lwrjs/core@0.12.2':
resolution: {integrity: sha512-bsKcVTvq1g/WEYUErCWZWMpsstJge0I+FhenEMCWNeMcAKfW7VGWkETviUwm0BJB8rO+jTCN4uCwJJYDHWcgyg==}
engines: {node: '>=18.0.0'}
peerDependencies:
lwc: '>= 2.x'
'@lwrjs/dev-proxy-server@0.12.2':
resolution: {integrity: sha512-OjY/13UJvbKo1ymF+IrVjfCwyGWhe5Ip1c//9z2gJDYtPkwNCDGQeWhp7ht6fiRhAWTahlc5FqytVxGIetITwg==}
engines: {node: '>=18.0.0'}
'@lwrjs/diagnostics@0.12.2':
resolution: {integrity: sha512-9TJwiYmelQV8+qEfarcahK/mOcFgu9jcinhuxgWVL3fL8x1zLtcc9tlgceUBusFDZGooMEn9b5m2cBsU4/NZxg==}
engines: {node: '>=18.0.0'}
'@lwrjs/esbuild@0.12.2':
resolution: {integrity: sha512-qp7qvEOgCDKlo0BFCl88SAHAYeMElXAL2CAr+m3OptoTxTbC2vqsaTzfmeyStMUNpKWE5Pqu+S+qUchCz+YlvA==}
engines: {node: '>=18.0.0'}
'@lwrjs/fs-asset-provider@0.12.2':
resolution: {integrity: sha512-9w+KI46Y5KUJ1/4QfrFeK/4sv6IF3+ZwXZfW895ABD0Nd9ZaebRwDUBbX0US8rzx29H+6fyJDrGRCIoPyhUxkA==}
engines: {node: '>=18.0.0'}
'@lwrjs/fs-watch@0.12.2':
resolution: {integrity: sha512-r/3MTZHJn2rHIbBn1rb9HDvzBZY0khJNhXUTM6/cLfs2rxX1d+k5HarV+2e2FPqKFuDg0Q8wevBS1jOZTt7zNg==}
engines: {node: '>=18.0.0'}
'@lwrjs/html-view-provider@0.12.2':