-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathpnpm-lock.yaml
7448 lines (5765 loc) · 237 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
importers:
.:
dependencies:
'@ckpack/vue-color':
specifier: ^1.4.1
version: 1.4.1(vue@3.2.47)
'@element-plus/icons-vue':
specifier: ^2.0.10
version: 2.0.10(vue@3.2.47)
'@leafer-in/editor':
specifier: 1.0.0-rc.23
version: 1.0.0-rc.23
'@leafer-in/view':
specifier: 1.0.0-rc.23
version: 1.0.0-rc.23
'@vueuse/core':
specifier: ^10.9.0
version: 10.9.0(vue@3.2.47)
'@webav/av-canvas':
specifier: 0.9.0-beta.21
version: 0.9.0-beta.21
'@webav/av-cliper':
specifier: 0.9.0-beta.21
version: 0.9.0-beta.21
axios:
specifier: ^1.3.2
version: 1.3.2
element-plus:
specifier: ^2.2.29
version: 2.2.29(vue@3.2.47)
leafer-ui:
specifier: 1.0.0-rc.23
version: 1.0.0-rc.23
lodash-es:
specifier: ^4.17.21
version: 4.17.21
opfs-tools:
specifier: ^0.4.1
version: 0.4.1
pinia:
specifier: ^2.0.28
version: 2.0.30(typescript@4.7.4)(vue@3.2.47)
spark-md5:
specifier: ^3.0.2
version: 3.0.2
vue:
specifier: ^3.2.45
version: 3.2.47
vue-hooks-plus:
specifier: 1.6.0-alpha.2
version: 1.6.0-alpha.2(vue@3.2.47)
vue-router:
specifier: ^4.1.6
version: 4.1.6(vue@3.2.47)
vue3-moveable:
specifier: ^0.18.1
version: 0.18.1
wavesurfer.js:
specifier: ^7.7.11
version: 7.7.11
devDependencies:
'@rushstack/eslint-patch':
specifier: ^1.1.4
version: 1.2.0
'@tailwindcss/aspect-ratio':
specifier: ^0.4.2
version: 0.4.2(tailwindcss@3.2.4(postcss@8.4.21))
'@tailwindcss/forms':
specifier: ^0.5.3
version: 0.5.3(tailwindcss@3.2.4(postcss@8.4.21))
'@tailwindcss/line-clamp':
specifier: ^0.4.2
version: 0.4.2(tailwindcss@3.2.4(postcss@8.4.21))
'@tailwindcss/typography':
specifier: ^0.5.9
version: 0.5.9(tailwindcss@3.2.4(postcss@8.4.21))
'@types/jsdom':
specifier: ^20.0.1
version: 20.0.1
'@types/lodash-es':
specifier: ^4.17.6
version: 4.17.6
'@types/node':
specifier: ^18.11.18
version: 18.11.18
'@types/spark-md5':
specifier: ^3.0.4
version: 3.0.4
'@types/webpack-env':
specifier: ^1.18.0
version: 1.18.0
'@vitejs/plugin-basic-ssl':
specifier: ^1.0.1
version: 1.0.1(vite@4.1.1(@types/node@18.11.18)(sass@1.75.0))
'@vitejs/plugin-vue':
specifier: ^4.0.0
version: 4.0.0(vite@4.1.1(@types/node@18.11.18)(sass@1.75.0))(vue@3.2.47)
'@vue-hooks-plus/resolvers':
specifier: ^1.2.1
version: 1.2.1(vue-hooks-plus@1.6.0-alpha.2(vue@3.2.47))
'@vue/eslint-config-typescript':
specifier: ^11.0.0
version: 11.0.2(eslint-plugin-vue@9.9.0(eslint@8.33.0))(eslint@8.33.0)(typescript@4.7.4)
'@vue/test-utils':
specifier: ^2.2.6
version: 2.2.10(vue@3.2.47)
'@vue/tsconfig':
specifier: ^0.1.3
version: 0.1.3(@types/node@18.11.18)
autoprefixer:
specifier: ^10.4.13
version: 10.4.13(postcss@8.4.21)
cssnano:
specifier: ^5.1.14
version: 5.1.14(postcss@8.4.21)
eslint:
specifier: ^8.22.0
version: 8.33.0
eslint-plugin-vue:
specifier: ^9.3.0
version: 9.9.0(eslint@8.33.0)
husky:
specifier: ^8.0.3
version: 8.0.3
jsdom:
specifier: ^20.0.3
version: 20.0.3
npm-run-all:
specifier: ^4.1.5
version: 4.1.5
postcss:
specifier: ^8.4.21
version: 8.4.21
postcss-import:
specifier: ^15.1.0
version: 15.1.0(postcss@8.4.21)
postcss-nesting:
specifier: ^11.1.0
version: 11.1.0(postcss@8.4.21)
sass:
specifier: ^1.75.0
version: 1.75.0
tailwindcss:
specifier: ^3.2.4
version: 3.2.4(postcss@8.4.21)
typescript:
specifier: ~4.7.4
version: 4.7.4
unplugin-auto-import:
specifier: ^0.13.0
version: 0.13.0(@vueuse/core@10.9.0(vue@3.2.47))(rollup@3.13.0)
unplugin-icons:
specifier: ^0.15.2
version: 0.15.2(@vue/compiler-sfc@3.4.21)(vue-template-compiler@2.7.14)
unplugin-vue-components:
specifier: ^0.23.0
version: 0.23.0(@babel/parser@7.24.4)(rollup@3.13.0)(vue@3.2.47)
vite:
specifier: ^4.0.0
version: 4.1.1(@types/node@18.11.18)(sass@1.75.0)
vite-plugin-vue-devtools:
specifier: ^7.0.25
version: 7.0.25(rollup@3.13.0)(vite@4.1.1(@types/node@18.11.18)(sass@1.75.0))(vue@3.2.47)
vitest:
specifier: ^0.25.8
version: 0.25.8(jsdom@20.0.3)(sass@1.75.0)
vue-tsc:
specifier: ^1.0.12
version: 1.0.24(typescript@4.7.4)
packages:
'@ampproject/remapping@2.2.0':
resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==}
engines: {node: '>=6.0.0'}
'@antfu/install-pkg@0.1.1':
resolution: {integrity: sha512-LyB/8+bSfa0DFGC06zpCEfs89/XoWZwws5ygEa5D+Xsm3OfI+aXQ86VgVG7Acyef+rSZ5HE7J8rrxzrQeM3PjQ==}
'@antfu/utils@0.7.2':
resolution: {integrity: sha512-vy9fM3pIxZmX07dL+VX1aZe7ynZ+YyB0jY+jE6r3hOK6GNY2t6W8rzpFC4tgpbXUYABkFQwgJq2XYXlxbXAI0g==}
'@antfu/utils@0.7.7':
resolution: {integrity: sha512-gFPqTG7otEJ8uP6wrhDv6mqwGWYZKNvAcCq6u9hOj0c+IKCEsY4L1oC9trPq2SaWIzAfHvqfBDxF591JkMf+kg==}
'@babel/code-frame@7.18.6':
resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==}
engines: {node: '>=6.9.0'}
'@babel/code-frame@7.24.2':
resolution: {integrity: sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==}
engines: {node: '>=6.9.0'}
'@babel/compat-data@7.20.14':
resolution: {integrity: sha512-0YpKHD6ImkWMEINCyDAD0HLLUH/lPCefG8ld9it8DJB2wnApraKuhgYTvTY1z7UFIfBTGy5LwncZ+5HWWGbhFw==}
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.20.12':
resolution: {integrity: sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg==}
engines: {node: '>=6.9.0'}
'@babel/core@7.24.4':
resolution: {integrity: sha512-MBVlMXP+kkl5394RBLSxxk/iLTeVGuXTV3cIDXavPpMMqnSnt6apKgan/U8O3USWZCWZT/TbgfEpKa4uMgN4Dg==}
engines: {node: '>=6.9.0'}
'@babel/generator@7.20.14':
resolution: {integrity: sha512-AEmuXHdcD3A52HHXxaTmYlb8q/xMEhoRP67B3T4Oq7lbmSoqroMZzjnGj3+i1io3pdnF8iBYVu4Ilj+c4hBxYg==}
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.20.7':
resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.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.18.9':
resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==}
engines: {node: '>=6.9.0'}
'@babel/helper-environment-visitor@7.22.20':
resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==}
engines: {node: '>=6.9.0'}
'@babel/helper-function-name@7.19.0':
resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==}
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.18.6':
resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
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.18.6':
resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==}
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.20.11':
resolution: {integrity: sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg==}
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-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.20.2':
resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==}
engines: {node: '>=6.9.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.18.6':
resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==}
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.19.4':
resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==}
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.19.1':
resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==}
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.18.6':
resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-option@7.23.5':
resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==}
engines: {node: '>=6.9.0'}
'@babel/helpers@7.20.13':
resolution: {integrity: sha512-nzJ0DWCL3gB5RCXbUO3KIMMsBY2Eqbx8mBpKGE/02PgyRQFcPQLbkQ1vyy596mZLaP+dAfD+R4ckASzNVmW3jg==}
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.18.6':
resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==}
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.20.15':
resolution: {integrity: sha512-DI4a1oZuf8wC+oAJA9RW6ga3Zbe8RZFt7kD9i4qAspz3I/yHet1VvC3DiSy/fsUvv5pvJuNPh0LPOdCcqinDPg==}
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-decorators@7.24.1':
resolution: {integrity: sha512-zPEvzFijn+hRvJuX2Vu3KbEBN39LN3f7tW3MQO2LsIs57B26KU+kUc82BdAktS1VCM6libzh45eKGI65lg0cpA==}
engines: {node: '>=6.9.0'}
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-import-attributes@7.24.1':
resolution: {integrity: sha512-zhQTMH0X2nVLnb04tz+s7AMuasX8U0FnpE+nHTOhSOINjWMnopoZTxtIKsd45n4GQ/HIZLyfIpoul8e2m0DnRA==}
engines: {node: '>=6.9.0'}
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-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-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-typescript@7.24.4':
resolution: {integrity: sha512-79t3CQ8+oBGk/80SQ8MN3Bs3obf83zJ0YZjDmDaEZN8MqhMI760apl5z6a20kFeMXBwJX99VpKT8CKxEBp5H1g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/runtime@7.24.7':
resolution: {integrity: sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==}
engines: {node: '>=6.9.0'}
'@babel/standalone@7.20.15':
resolution: {integrity: sha512-B3LmZ1NHlTb2eFEaw8rftZc730Wh9MlmsH8ubb6IjsNoIk9+SQ2aAA0nrm/1806+PftPRAACPClmKTu8PG7Tew==}
engines: {node: '>=6.9.0'}
'@babel/template@7.20.7':
resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==}
engines: {node: '>=6.9.0'}
'@babel/template@7.24.0':
resolution: {integrity: sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==}
engines: {node: '>=6.9.0'}
'@babel/traverse@7.20.13':
resolution: {integrity: sha512-kMJXfF0T6DIS9E8cgdLCSAL+cuCK+YEZHWiLK0SXpTo8YRj5lpJu3CDNKiIBCne4m9hhTIqUg6SYTAI39tAiVQ==}
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.20.7':
resolution: {integrity: sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==}
engines: {node: '>=6.9.0'}
'@babel/types@7.24.0':
resolution: {integrity: sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==}
engines: {node: '>=6.9.0'}
'@ckpack/vue-color@1.4.1':
resolution: {integrity: sha512-PPon4lIyKWgwexN4Gf8iRzqWVPWTa1nMoW37cKQbMakY/iBPiPzOtgGinNhD44STbv6GUnPLBCg6yfkXsPuFpw==}
engines: {node: '>=12'}
peerDependencies:
vue: ^3.2.0
'@csstools/selector-specificity@2.1.1':
resolution: {integrity: sha512-jwx+WCqszn53YHOfvFMJJRd/B2GqkCBt+1MJSG6o5/s8+ytHMvDZXsJgUEWLk12UnLd7HYKac4BYU5i/Ron1Cw==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
postcss-selector-parser: ^6.0.10
'@ctrl/tinycolor@3.5.0':
resolution: {integrity: sha512-tlJpwF40DEQcfR/QF+wNMVyGMaO9FQp6Z1Wahj4Gk3CJQYHwA2xVG7iKDFdW6zuxZY9XWOpGcfNCTsX4McOsOg==}
engines: {node: '>=10'}
'@ctrl/tinycolor@3.6.0':
resolution: {integrity: sha512-/Z3l6pXthq0JvMYdUFyX9j0MaCltlIn6mfh9jLyQwg5aPKxkyNa0PTHtU1AlFXLNk55ZuAeJRcpvq+tmLfKmaQ==}
engines: {node: '>=10'}
'@daybrush/utils@1.10.2':
resolution: {integrity: sha512-fNMWeGUDokdIpebU8oIBUXkyGYITCwwodBfgx277p8d+kvI+k9wdFtKtdY4mvbWxhbAwuWprtVDq8My3KQ24Dg==}
'@egjs/agent@2.4.3':
resolution: {integrity: sha512-XvksSENe8wPeFlEVouvrOhKdx8HMniJ3by7sro2uPF3M6QqWwjzVcmvwoPtdjiX8O1lfRoLhQMp1a7NGlVTdIA==}
'@egjs/children-differ@1.0.1':
resolution: {integrity: sha512-DRvyqMf+CPCOzAopQKHtW+X8iN6Hy6SFol+/7zCUiE5y4P/OB8JP8FtU4NxtZwtafvSL4faD5KoQYPj3JHzPFQ==}
'@egjs/list-differ@1.0.0':
resolution: {integrity: sha512-HsbMKc0ZAQH+EUeCmI/2PvTYSybmkaWwakU8QGDYYgMVIg9BQ5sM0A0Nnombjxo2+JzXHxmH+jw//yGX+y6GYw==}
'@element-plus/icons-vue@2.0.10':
resolution: {integrity: sha512-ygEZ1mwPjcPo/OulhzLE7mtDrQBWI8vZzEWSNB2W/RNCRjoQGwbaK4N8lV4rid7Ts4qvySU3njMN7YCiSlSaTQ==}
peerDependencies:
vue: ^3.2.0
'@esbuild/android-arm64@0.16.17':
resolution: {integrity: sha512-MIGl6p5sc3RDTLLkYL1MyL8BMRN4tLMRCn+yRJJmEDvYZ2M7tmAf80hx1kbNEUX2KJ50RRtxZ4JHLvCfuB6kBg==}
engines: {node: '>=12'}
cpu: [arm64]
os: [android]
'@esbuild/android-arm@0.16.17':
resolution: {integrity: sha512-N9x1CMXVhtWEAMS7pNNONyA14f71VPQN9Cnavj1XQh6T7bskqiLLrSca4O0Vr8Wdcga943eThxnVp3JLnBMYtw==}
engines: {node: '>=12'}
cpu: [arm]
os: [android]
'@esbuild/android-x64@0.16.17':
resolution: {integrity: sha512-a3kTv3m0Ghh4z1DaFEuEDfz3OLONKuFvI4Xqczqx4BqLyuFaFkuaG4j2MtA6fuWEFeC5x9IvqnX7drmRq/fyAQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [android]
'@esbuild/darwin-arm64@0.16.17':
resolution: {integrity: sha512-/2agbUEfmxWHi9ARTX6OQ/KgXnOWfsNlTeLcoV7HSuSTv63E4DqtAc+2XqGw1KHxKMHGZgbVCZge7HXWX9Vn+w==}
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
'@esbuild/darwin-x64@0.16.17':
resolution: {integrity: sha512-2By45OBHulkd9Svy5IOCZt376Aa2oOkiE9QWUK9fe6Tb+WDr8hXL3dpqi+DeLiMed8tVXspzsTAvd0jUl96wmg==}
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
'@esbuild/freebsd-arm64@0.16.17':
resolution: {integrity: sha512-mt+cxZe1tVx489VTb4mBAOo2aKSnJ33L9fr25JXpqQqzbUIw/yzIzi+NHwAXK2qYV1lEFp4OoVeThGjUbmWmdw==}
engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
'@esbuild/freebsd-x64@0.16.17':
resolution: {integrity: sha512-8ScTdNJl5idAKjH8zGAsN7RuWcyHG3BAvMNpKOBaqqR7EbUhhVHOqXRdL7oZvz8WNHL2pr5+eIT5c65kA6NHug==}
engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
'@esbuild/linux-arm64@0.16.17':
resolution: {integrity: sha512-7S8gJnSlqKGVJunnMCrXHU9Q8Q/tQIxk/xL8BqAP64wchPCTzuM6W3Ra8cIa1HIflAvDnNOt2jaL17vaW+1V0g==}
engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
'@esbuild/linux-arm@0.16.17':
resolution: {integrity: sha512-iihzrWbD4gIT7j3caMzKb/RsFFHCwqqbrbH9SqUSRrdXkXaygSZCZg1FybsZz57Ju7N/SHEgPyaR0LZ8Zbe9gQ==}
engines: {node: '>=12'}
cpu: [arm]
os: [linux]
'@esbuild/linux-ia32@0.16.17':
resolution: {integrity: sha512-kiX69+wcPAdgl3Lonh1VI7MBr16nktEvOfViszBSxygRQqSpzv7BffMKRPMFwzeJGPxcio0pdD3kYQGpqQ2SSg==}
engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
'@esbuild/linux-loong64@0.16.17':
resolution: {integrity: sha512-dTzNnQwembNDhd654cA4QhbS9uDdXC3TKqMJjgOWsC0yNCbpzfWoXdZvp0mY7HU6nzk5E0zpRGGx3qoQg8T2DQ==}
engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
'@esbuild/linux-mips64el@0.16.17':
resolution: {integrity: sha512-ezbDkp2nDl0PfIUn0CsQ30kxfcLTlcx4Foz2kYv8qdC6ia2oX5Q3E/8m6lq84Dj/6b0FrkgD582fJMIfHhJfSw==}
engines: {node: '>=12'}
cpu: [mips64el]
os: [linux]
'@esbuild/linux-ppc64@0.16.17':
resolution: {integrity: sha512-dzS678gYD1lJsW73zrFhDApLVdM3cUF2MvAa1D8K8KtcSKdLBPP4zZSLy6LFZ0jYqQdQ29bjAHJDgz0rVbLB3g==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [linux]
'@esbuild/linux-riscv64@0.16.17':
resolution: {integrity: sha512-ylNlVsxuFjZK8DQtNUwiMskh6nT0vI7kYl/4fZgV1llP5d6+HIeL/vmmm3jpuoo8+NuXjQVZxmKuhDApK0/cKw==}
engines: {node: '>=12'}
cpu: [riscv64]
os: [linux]
'@esbuild/linux-s390x@0.16.17':
resolution: {integrity: sha512-gzy7nUTO4UA4oZ2wAMXPNBGTzZFP7mss3aKR2hH+/4UUkCOyqmjXiKpzGrY2TlEUhbbejzXVKKGazYcQTZWA/w==}
engines: {node: '>=12'}
cpu: [s390x]
os: [linux]
'@esbuild/linux-x64@0.16.17':
resolution: {integrity: sha512-mdPjPxfnmoqhgpiEArqi4egmBAMYvaObgn4poorpUaqmvzzbvqbowRllQ+ZgzGVMGKaPkqUmPDOOFQRUFDmeUw==}
engines: {node: '>=12'}
cpu: [x64]
os: [linux]
'@esbuild/netbsd-x64@0.16.17':
resolution: {integrity: sha512-/PzmzD/zyAeTUsduZa32bn0ORug+Jd1EGGAUJvqfeixoEISYpGnAezN6lnJoskauoai0Jrs+XSyvDhppCPoKOA==}
engines: {node: '>=12'}
cpu: [x64]
os: [netbsd]
'@esbuild/openbsd-x64@0.16.17':
resolution: {integrity: sha512-2yaWJhvxGEz2RiftSk0UObqJa/b+rIAjnODJgv2GbGGpRwAfpgzyrg1WLK8rqA24mfZa9GvpjLcBBg8JHkoodg==}
engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
'@esbuild/sunos-x64@0.16.17':
resolution: {integrity: sha512-xtVUiev38tN0R3g8VhRfN7Zl42YCJvyBhRKw1RJjwE1d2emWTVToPLNEQj/5Qxc6lVFATDiy6LjVHYhIPrLxzw==}
engines: {node: '>=12'}
cpu: [x64]
os: [sunos]
'@esbuild/win32-arm64@0.16.17':
resolution: {integrity: sha512-ga8+JqBDHY4b6fQAmOgtJJue36scANy4l/rL97W+0wYmijhxKetzZdKOJI7olaBaMhWt8Pac2McJdZLxXWUEQw==}
engines: {node: '>=12'}
cpu: [arm64]
os: [win32]
'@esbuild/win32-ia32@0.16.17':
resolution: {integrity: sha512-WnsKaf46uSSF/sZhwnqE4L/F89AYNMiD4YtEcYekBt9Q7nj0DiId2XH2Ng2PHM54qi5oPrQ8luuzGszqi/veig==}
engines: {node: '>=12'}
cpu: [ia32]
os: [win32]
'@esbuild/win32-x64@0.16.17':
resolution: {integrity: sha512-y+EHuSchhL7FjHgvQL/0fnnFmO4T1bhvWANX6gcnqTjtnKWbTvUMCpGnv2+t+31d7RzyEAYAd4u2fnIhHL6N/Q==}
engines: {node: '>=12'}
cpu: [x64]
os: [win32]
'@eslint/eslintrc@1.4.1':
resolution: {integrity: sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
'@floating-ui/core@1.2.0':
resolution: {integrity: sha512-GHUXPEhMEmTpnpIfesFA2KAoMJPb1SPQw964tToQwt+BbGXdhqTCWT1rOb0VURGylsxsYxiGMnseJ3IlclVpVA==}
'@floating-ui/dom@1.2.0':
resolution: {integrity: sha512-QXzg57o1cjLz3cGETzKXjI3kx1xyS49DW9l7kV2jw2c8Yftd434t2hllX0sVGn2Q8MtcW/4pNm8bfE1/4n6mng==}
'@humanwhocodes/config-array@0.11.8':
resolution: {integrity: sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==}
engines: {node: '>=10.10.0'}
'@humanwhocodes/module-importer@1.0.1':
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
engines: {node: '>=12.22'}
'@humanwhocodes/object-schema@1.2.1':
resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==}
'@iconify/types@2.0.0':
resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
'@iconify/utils@2.1.1':
resolution: {integrity: sha512-H8xz74JDzDw8f0qLxwIaxFMnFkbXTZNWEufOk3WxaLFHV4h0A2FjIDgNk5LzC0am4jssnjdeJJdRs3UFu3582Q==}
'@jridgewell/gen-mapping@0.1.1':
resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==}
engines: {node: '>=6.0.0'}
'@jridgewell/gen-mapping@0.3.2':
resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==}
engines: {node: '>=6.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.0':
resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==}
engines: {node: '>=6.0.0'}
'@jridgewell/set-array@1.1.2':
resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
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.14':
resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==}
'@jridgewell/sourcemap-codec@1.4.15':
resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
'@jridgewell/trace-mapping@0.3.17':
resolution: {integrity: sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==}
'@jridgewell/trace-mapping@0.3.25':
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
'@leafer-in/editor@1.0.0-rc.23':
resolution: {integrity: sha512-K4lw35AboMfvOD700i9Y0NZOKRlFuw6ZlFJLGAThKjzV9nk8y/UroU+VuZP17SmvcV0kg8Q176Kqptp2zbP08w==}
'@leafer-in/interface@1.0.0-rc.23':
resolution: {integrity: sha512-u2ZHMYv2ZNcy29SnassLcH3Q0iJZtKYNVPPtrvbHpvm1t/pTMHeOmoOOqXMGJw03HZVp39xdAiVyVJc/wDTQsw==}
'@leafer-in/view@1.0.0-rc.23':
resolution: {integrity: sha512-1rxYoFFJAw4pKN393j0EpWDDzBTWTjWG4dCo5rMJTQklt3JHH62O0fWQNflneaqZyWY8xW5U/pPkS+npzjMntg==}
'@leafer-ui/app@1.0.0-rc.23':
resolution: {integrity: sha512-ffKWO2+EPqaRnmhNHXobs+G13SXcV3rH1P7ai2YB9C3tn7kec0QoFKpJpVfTJ6O/6sUDPgONJO1S6Yk+GqY4nQ==}
'@leafer-ui/bounds@1.0.0-rc.23':
resolution: {integrity: sha512-GqhWY0MxACtVAkqWSl0mHOS65mwLXap5I2o69o/HEr+rFePC5BOY2JGlnVBLqHbKZY9do5vnT2dVxGYtGiYF0w==}
'@leafer-ui/color@1.0.0-rc.23':
resolution: {integrity: sha512-6QmEeehzvUQWt9yZTL8zeOLGfMvVUIzaTAytqjtU5WYdZvfxHdqPCoJTMYFF6J0bxEtbuUyl6iePPMZCBLoK1g==}
'@leafer-ui/core@1.0.0-rc.23':
resolution: {integrity: sha512-UB4hNqJTdwK26dv8MIgsDR0KPmkT7pMt2QgEca2fA47XolvuqXqPrvRFUF8lk6vF5XPnMnEWjGpkkE5clAMcIA==}
'@leafer-ui/data@1.0.0-rc.23':
resolution: {integrity: sha512-UBoADZAw7ew805RUq3qt8hkiM/OsBtMb1imK6+7N/z1HOpy6q9r+PaBRm4xa7AiCc9u46LRmjxHyxh0631sfjQ==}
'@leafer-ui/decorator@1.0.0-rc.23':
resolution: {integrity: sha512-3R9jXTHK/8ruO+d+lh7vI78+eRERr6DHjIXeTcs09XUOMe+wMSD97K+q9xtnMvtVEAebdv2S1LBEMmLuEJHOkg==}
'@leafer-ui/display-module@1.0.0-rc.23':
resolution: {integrity: sha512-tE3re/wCDkuF3yos171oWOz/7bTv384X2M/FrmmrWdl4R+GenjJ/ezxToUiQ+KgnqrCFZZrC/hCYk74ojVnsYQ==}
'@leafer-ui/display@1.0.0-rc.23':
resolution: {integrity: sha512-2IEK+NRkyNKn+AOJ2WFqHd4hpETjLrh69FlCWU8O1tLRNHurQQ9WaIh2Z+x7XwVy0FOBy8O5VVphTBHzJkxuxg==}
'@leafer-ui/draw@1.0.0-rc.23':
resolution: {integrity: sha512-naA4/PMpMmMwtgJmVYWclUZg4QiJoBTnP08WgQBgNRpUQWcSsTcOqTmH69YyBR8rdP9a+0hNoJ8BcpaNFs1YJQ==}
'@leafer-ui/effect@1.0.0-rc.23':
resolution: {integrity: sha512-q9I+YvVnH+DyfCkGecOIrNowNhnc7AG8plfQFe1ekISTeMtICE5gyjcme2qr3ymvFFpZm29DJ5dxOVcyVsqkmg==}
'@leafer-ui/event@1.0.0-rc.23':
resolution: {integrity: sha512-YCKwagS+5pg3KhXm38ofVe13b8rKxc+imhW2KnTNKf8kZ3MsL+BFtTZJT4ETnD8PYDMukSG/j3G9Pf+28f/S6w==}
'@leafer-ui/export@1.0.0-rc.23':
resolution: {integrity: sha512-xsAzMa1x8LZMXdebs42957fvDybUg0lmb2Bh8s9wU+CzEG7HOLxuHm24YyOlEneOkSE3uz/90b4TO6ZK387kBA==}
'@leafer-ui/external@1.0.0-rc.23':
resolution: {integrity: sha512-n5QK4p1vJmQBa3XaOhyBldeBkqAgTJYpb0h0FXsPQhQv1kMdUKgHhHH1GhqwGMbyCH2LnR4Wuxz7Pqdkz/69Ig==}
'@leafer-ui/hit@1.0.0-rc.23':
resolution: {integrity: sha512-5MwKEcHj/UM6KZJhGIkQl/vFHvu9lT4OQgof+Wq+9/zYcL8PZFYfhuDqcqkkXX4npQ4qvvVUbjFC2CaizD2bMg==}
'@leafer-ui/interaction-web@1.0.0-rc.23':
resolution: {integrity: sha512-neJSDd2iGCXVqknj8gzuOtzdPcjm65oZFeA4lMshEIz18syzG6lopOMmbLLMfryNoxPDU1ObaZxTKa74QwEdDg==}
'@leafer-ui/interaction@1.0.0-rc.23':
resolution: {integrity: sha512-+rzQQsvd6A3bv8QwBmuHLCE5V1utNz4IbZ0lzpQz6uqnkUGvALXyvJdeBtqpHwb5wFmFp+8kJf/HB/F/EG+m5A==}
'@leafer-ui/interface@1.0.0-rc.23':
resolution: {integrity: sha512-3tuiuCdKeX8620TNDu5zjjO7dSkO6hbu1WdhWGARVc1skCOjTiEao0I3zzXXSuF9V5+h3EbK4kuiLwiRSPCBfQ==}
'@leafer-ui/paint@1.0.0-rc.23':
resolution: {integrity: sha512-9WV6uE7BXRwFAgnlBo9sGamMvuyB4WeOx8MLvKv+bXe+yd3Q3jmW9t5Zf5UKRN2Yf1w1IXtcc8AsK865sw2YZg==}
'@leafer-ui/partner@1.0.0-rc.23':
resolution: {integrity: sha512-lB8KnoqExEMrqzm+xfzG9VTxw+2mfvgTwbQRheOND1nKsvXYW6vupkDY7JyccfpIFr2k4E85pUxQGXH1PqHrOA==}
'@leafer-ui/render@1.0.0-rc.23':
resolution: {integrity: sha512-KAmfqYU9tdjFZSm0ElHhJ+3kQu7cP0T/JOcnA5gY1LNelyvUY+IOlbF+55RBYHF/SIXh7Kv8Xu53B6szJGPkZg==}
'@leafer-ui/scale@1.0.0-rc.23':
resolution: {integrity: sha512-75A3NMzTPGGknn4GJTE4LNZNsdZbZtrAPGfgdf1ROi0ezD7UFqZc9l/p5qKwcrEiZwgVWG6823tt+G09sNYMJw==}
'@leafer-ui/text@1.0.0-rc.23':
resolution: {integrity: sha512-OgBNGajI6/Cd4u2xoQAHsu/+rBOkzFhKotnySZnnABhWtcaSmF7esUPxUm6MT8E9Or3WvB9RGgq6q0L6nlGlQA==}
'@leafer-ui/type@1.0.0-rc.23':
resolution: {integrity: sha512-cKVclKs541302Eek83uTZbFbC3ieOsCO2ePOfNpIyS6GK+rOO13BdNJDB9A/DHhhcDy7O166W/1hvTJB+xz6SQ==}
'@leafer-ui/web@1.0.0-rc.23':
resolution: {integrity: sha512-fpFHEfQPHBipsvvBbigqgZFUEgD1OMTjRKrx/VfQeHUmsixrOChLU07KUDqiDGOr6020h2KZgSA06H8u4KESJw==}
'@leafer/canvas-web@1.0.0-rc.23':
resolution: {integrity: sha512-rBtwbtICRRbArc1POr0OCLRnb27HhEGO5znwqrB24leUe3x6ZgbalPthydOBgUB23bw6BEwwkEui98/pascT6g==}
'@leafer/canvas@1.0.0-rc.23':
resolution: {integrity: sha512-D7Peoe7syKeVqav+cK7oLAx9PlGjS89Gl8WRBGPlQ8Ml48yivSgWUx4Yu0p72bJJzF+o1/mAgpLqzX8voyoDbA==}
'@leafer/core@1.0.0-rc.23':
resolution: {integrity: sha512-ovlMVog3cryBUgdzBnSiGNMBdDTcdajz7vr7ENkgN/1z9odmpQ5GprIGNdnSel4bdVUg5ElJy2wxXVuuX7z4BQ==}
'@leafer/data@1.0.0-rc.23':
resolution: {integrity: sha512-zfeMcLElbnU1q4V86rH5+13mEWuRuCGufj3wAcRW7cCNGjnim6QqKcgq7sVG+ouYfSd5F2pfFo3uGudZZEIxGA==}
'@leafer/debug@1.0.0-rc.23':
resolution: {integrity: sha512-5pTakixjqT4txGqgPE4PhrJPxHDOO2V1JZ4VQXqoJckEhpM6SCOech+sFNCNKjnfxo8OJy9+BFChBinCQEDEuw==}
'@leafer/decorator@1.0.0-rc.23':
resolution: {integrity: sha512-JwKSKtb9KGi8ggy9E+DI/ISTjJJPvM+dusTghwX8he1ox52l9ct3m3EJyhtIQ7HvYNfLtE+bGlU61S3wtLj+sA==}
'@leafer/display-module@1.0.0-rc.23':
resolution: {integrity: sha512-Y8hujn8WoZ+nsqDNXnOmOyQm+Pr7rsg9hPqFVJ1EXyJ2CXJeKdtCR24fQwsDLu1UikCsT5w3iQCb1qmU6gjFKQ==}
'@leafer/display@1.0.0-rc.23':
resolution: {integrity: sha512-ID7d5lz4FHFeFK1/SWlZFrZCILvudLTHGLC34/j78HJcYQtNKZLgohrtRHnHSRQGK4wrRxHqX8qfBFPGJhZADw==}
'@leafer/event@1.0.0-rc.23':
resolution: {integrity: sha512-J+kkNbgNmh4UZ+0CAJcVKL3baR0IrehKpaZ2+nzSIy8o5uVrHCf4Wa5wBsetJKBuq4VN3C5KafZHI9AxQwVi+w==}
'@leafer/file@1.0.0-rc.23':
resolution: {integrity: sha512-Cot+XG2q+Xyvrd3B6gdjDKEBwF2gb2OCMtkwV8RxInvUFAh1s17EAs/3DiOd9LQwo4rZcAqVr/gyEd1jotAypw==}
'@leafer/helper@1.0.0-rc.23':
resolution: {integrity: sha512-GqfhANNmDKDnbUz7FHT/hPfE0mSjqbhy8h0RsCPuTf+xI43kgeWoh1R4SKY3eI9CKKLAUFiLg8rEUxQqf2MrEA==}
'@leafer/image-web@1.0.0-rc.23':
resolution: {integrity: sha512-p2z5rMoviYhLa1RD6X3V/I0SkgzyMwO/cvF5wWgpSziMt3dlDvxz2+JoY8rEgp5GFHPx9J9i7EuIZdJoxmfPsA==}
'@leafer/image@1.0.0-rc.23':
resolution: {integrity: sha512-L2p8JxDBdwYtJ0i9ZMgkJ+mRk1qcvDbHuxeBDgZ4fqYQMRmRPz5lyDUgbw0fnTwxnzUoOW3l7rWKIOp+1PqH0g==}
'@leafer/interface@1.0.0-rc.23':
resolution: {integrity: sha512-WdoJQ/oGACNWhc+pUiRRP0Vf0Lv3KYNkfWx30C2OLv0eHYYjdCNxUmVhvlUNPOl3USMzYu1GLwBUFx7JRco9xQ==}
'@leafer/layout@1.0.0-rc.23':
resolution: {integrity: sha512-SBz7k3DHdbGESBZvpghkLI36+TqqzAXvgMWyup/UluDsngBcdRbal52m5UQ4obsCM1s/aA3asuS2fYemoP9VKw==}
'@leafer/layouter@1.0.0-rc.23':
resolution: {integrity: sha512-vr+Pjn/Yq733UJRIeE/xIAYX0rtlPZ2XTz0Ouqc/ASee2dBRhSbMInrqTZvt9S7ls5URhBa7FsOSginPPXWomQ==}
'@leafer/list@1.0.0-rc.23':
resolution: {integrity: sha512-Y1DYbY1CvRc2CfGvcjGPtgaGJZi2FKMkafoyVSV+Vg7DPvEAE6Ts1u8URpnPxIsmXN+jKA+2h2cWKRwI2nJdcg==}
'@leafer/math@1.0.0-rc.23':
resolution: {integrity: sha512-aZ9swEALp+jRExxJgyFnn8gqeV/HQQXDL3pubrRs8L0GFpF80KJ03PoK4A2HGZgTMHNyZfTV5heCWvQiktjMfQ==}
'@leafer/partner@1.0.0-rc.23':
resolution: {integrity: sha512-0oWuxYRbjHuOhFBugmh/Y/UblDg1ooQur3ykGX+N38Pp12b6GlurWtkN4tz0OqYDIQywssSIZOo/0P6IaccWfA==}
'@leafer/path@1.0.0-rc.23':
resolution: {integrity: sha512-pZrJbgs0WM5W28H+tykubmQqK7GPqxAHzBfO52zF/3gJTstQ+BBNU8uLYDdnAwV8IUxaWm/zI0RuEQEgJ2Z0Bw==}
'@leafer/platform@1.0.0-rc.23':
resolution: {integrity: sha512-y3CoViYLY3huq5iZQNvZG6tu1KtHMG9nhs+N9+oN1lVnvg12UXH7LGEZ4LOBgdYYJviOjVTceAgQJxyB7HnO8A==}
'@leafer/renderer@1.0.0-rc.23':
resolution: {integrity: sha512-n4jTr0k2UzEiBagFRNSwUj0KV+DVUkkInWBAqROtclH3EgMjZ8nQuM9Wq4sCxuFz16h2jabtVRycTAO6i4B8sQ==}
'@leafer/selector@1.0.0-rc.23':
resolution: {integrity: sha512-+TVpr5YzHkTx1WvNoHOivn55J56UYOG6lUXgZK+6bpraS0h5rewTeRwUM5X+bb/AUaYjfytgxC9xNEEzYYAfcQ==}
'@leafer/task@1.0.0-rc.23':
resolution: {integrity: sha512-bMBP97bAIfp1qvWLMKDu8zh/mzexyI173FL3XuG8y75io3y+Lf7yellSPFwTsvFWyTdTf3G62jybuoYTc8yoNA==}
'@leafer/watcher@1.0.0-rc.23':
resolution: {integrity: sha512-N1UXzkd1gapB198T9EdYyU1M1CwjvzUXO6K6OpkANr/uWZWlPY7WjU7kyX9bXDGZFXLKH/sdYF/5cAsEt30Npg==}
'@leafer/web@1.0.0-rc.23':
resolution: {integrity: sha512-u5NIJubqT1K8FW8K2fz2i+pwGMCvCyI/U9Vyy5ERZBMskS4fN9/ERUJ3XXZZl07z7AZ+PEzVOOJ6etxI3vMAoQ==}
'@nodelib/fs.scandir@2.1.5':
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
engines: {node: '>= 8'}
'@nodelib/fs.stat@2.0.5':
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
engines: {node: '>= 8'}
'@nodelib/fs.walk@1.2.8':
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
'@nuxt/kit@3.1.2':
resolution: {integrity: sha512-m8/AF8hBJiG7aTx2CpiDGeLYYz30fUoPbJ9XiSmHqRIXv1goAFWHSkzWfRNEsoAAbMHf76oB917wVUQ3VSSQHg==}
engines: {node: ^14.16.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0}
'@nuxt/schema@3.1.2':
resolution: {integrity: sha512-wru9LhRXTa6WQlx7c0oYrtvJY7TiVlkBKXY5Rsmfo0StJuWohgZiReu9fu6z6GU4MzZlX25TVjwvq9Q7bNVbSQ==}
engines: {node: ^14.16.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0}
'@polka/url@1.0.0-next.25':
resolution: {integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==}
'@rollup/pluginutils@5.0.2':
resolution: {integrity: sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==}
engines: {node: '>=14.0.0'}
peerDependencies:
rollup: ^1.20.0||^2.0.0||^3.0.0
peerDependenciesMeta:
rollup:
optional: true
'@rollup/pluginutils@5.1.0':
resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==}
engines: {node: '>=14.0.0'}
peerDependencies:
rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
peerDependenciesMeta:
rollup:
optional: true
'@rushstack/eslint-patch@1.2.0':
resolution: {integrity: sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==}
'@scena/dragscroll@1.4.0':
resolution: {integrity: sha512-3O8daaZD9VXA9CP3dra6xcgt/qrm0mg0xJCwiX6druCteQ9FFsXffkF8PrqxY4Z4VJ58fFKEa0RlKqbsi/XnRA==}
'@scena/event-emitter@1.0.5':
resolution: {integrity: sha512-AzY4OTb0+7ynefmWFQ6hxDdk0CySAq/D4efljfhtRHCOP7MBF9zUfhKG3TJiroVjASqVgkRJFdenS8ArZo6Olg==}
'@scena/matrix@1.1.1':
resolution: {integrity: sha512-JVKBhN0tm2Srl+Yt+Ywqu0oLgLcdemDQlD1OxmN9jaCTwaFPZ7tY8n6dhVgMEaR9qcR7r+kAlMXnSfNyYdE+Vg==}
'@sxzz/popperjs-es@2.11.7':
resolution: {integrity: sha512-Ccy0NlLkzr0Ex2FKvh2X+OyERHXJ88XJ1MXtsI9y9fGexlaXaVTPzBCRBwIxFkORuOb+uBqeu+RqnpgYTEZRUQ==}
'@tailwindcss/aspect-ratio@0.4.2':
resolution: {integrity: sha512-8QPrypskfBa7QIMuKHg2TA7BqES6vhBrDLOv8Unb6FcFyd3TjKbc6lcmb9UPQHxfl24sXoJ41ux/H7qQQvfaSQ==}
peerDependencies:
tailwindcss: '>=2.0.0 || >=3.0.0 || >=3.0.0-alpha.1'
'@tailwindcss/forms@0.5.3':
resolution: {integrity: sha512-y5mb86JUoiUgBjY/o6FJSFZSEttfb3Q5gllE4xoKjAAD+vBrnIhE4dViwUuow3va8mpH4s9jyUbUbrRGoRdc2Q==}
peerDependencies:
tailwindcss: '>=3.0.0 || >= 3.0.0-alpha.1'
'@tailwindcss/line-clamp@0.4.2':
resolution: {integrity: sha512-HFzAQuqYCjyy/SX9sLGB1lroPzmcnWv1FHkIpmypte10hptf4oPUfucryMKovZh2u0uiS9U5Ty3GghWfEJGwVw==}
peerDependencies:
tailwindcss: '>=2.0.0 || >=3.0.0 || >=3.0.0-alpha.1'
'@tailwindcss/typography@0.5.9':
resolution: {integrity: sha512-t8Sg3DyynFysV9f4JDOVISGsjazNb48AeIYQwcL+Bsq5uf4RYL75C1giZ43KISjeDGBaTN3Kxh7Xj/vRSMJUUg==}
peerDependencies:
tailwindcss: '>=3.0.0 || insiders'
'@tootallnate/once@2.0.0':
resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==}
engines: {node: '>= 10'}
'@trysound/sax@0.2.0':
resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
engines: {node: '>=10.13.0'}
'@types/chai-subset@1.3.3':
resolution: {integrity: sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw==}
'@types/chai@4.3.4':
resolution: {integrity: sha512-KnRanxnpfpjUTqTCXslZSEdLfXExwgNxYPdiO2WGUj8+HDjFi8R3k5RVKPeSCzLjCcshCAtVO2QBbVuAV4kTnw==}
'@types/dom-webcodecs@0.1.11':
resolution: {integrity: sha512-yPEZ3z7EohrmOxbk/QTAa0yonMFkNkjnVXqbGb7D4rMr+F1dGQ8ZUFxXkyLLJuiICPejZ0AZE9Rrk9wUCczx4A==}
'@types/estree@1.0.0':
resolution: {integrity: sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==}
'@types/js-cookie@3.0.2':
resolution: {integrity: sha512-6+0ekgfusHftJNYpihfkMu8BWdeHs9EOJuGcSofErjstGPfPGEu9yTu4t460lTzzAMl2cM5zngQJqPMHbbnvYA==}
'@types/jsdom@20.0.1':
resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==}
'@types/json-schema@7.0.11':
resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==}
'@types/lodash-es@4.17.6':
resolution: {integrity: sha512-R+zTeVUKDdfoRxpAryaQNRKk3105Rrgx2CFRClIgRGaqDTdjsm8h6IYA8ir584W3ePzkZfst5xIgDwYrlh9HLg==}
'@types/lodash@4.14.191':
resolution: {integrity: sha512-BdZ5BCCvho3EIXw6wUCXHe7rS53AIDPLE+JzwgT+OsJk53oBfbSmZZ7CX4VaRoN78N+TJpFi9QPlfIVNmJYWxQ==}
'@types/node@18.11.18':
resolution: {integrity: sha512-DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA==}
'@types/semver@7.3.13':
resolution: {integrity: sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==}
'@types/spark-md5@3.0.4':
resolution: {integrity: sha512-qtOaDz+IXiNndPgYb6t1YoutnGvFRtWSNzpVjkAPCfB2UzTyybuD4Tjgs7VgRawum3JnJNRwNQd4N//SvrHg1Q==}
'@types/tough-cookie@4.0.2':
resolution: {integrity: sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw==}
'@types/web-bluetooth@0.0.16':
resolution: {integrity: sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ==}
'@types/web-bluetooth@0.0.20':
resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==}
'@types/webpack-env@1.18.0':
resolution: {integrity: sha512-56/MAlX5WMsPVbOg7tAxnYvNYMMWr/QJiIp6BxVSW3JJXUVzzOn64qW8TzQyMSqSUFM2+PVI4aUHcHOzIz/1tg==}
'@typescript-eslint/eslint-plugin@5.50.0':
resolution: {integrity: sha512-vwksQWSFZiUhgq3Kv7o1Jcj0DUNylwnIlGvKvLLYsq8pAWha6/WCnXUeaSoNNha/K7QSf2+jvmkxggC1u3pIwQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
'@typescript-eslint/parser': ^5.0.0
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
'@typescript-eslint/parser@5.50.0':
resolution: {integrity: sha512-KCcSyNaogUDftK2G9RXfQyOCt51uB5yqC6pkUYqhYh8Kgt+DwR5M0EwEAxGPy/+DH6hnmKeGsNhiZRQxjH71uQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
'@typescript-eslint/scope-manager@5.50.0':
resolution: {integrity: sha512-rt03kaX+iZrhssaT974BCmoUikYtZI24Vp/kwTSy841XhiYShlqoshRFDvN1FKKvU2S3gK+kcBW1EA7kNUrogg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}