-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpnpm-lock.yaml
11336 lines (8947 loc) · 368 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:
.: {}
packages/blocks:
devDependencies:
'@sveltejs/adapter-auto':
specifier: ^3.0.0
version: 3.0.0(@sveltejs/kit@2.0.3(@sveltejs/vite-plugin-svelte@3.0.1(svelte@4.2.17)(vite@5.2.11(@types/node@20.10.5)(less@4.2.0)(terser@5.26.0)))(svelte@4.2.17)(vite@5.2.11(@types/node@20.10.5)(less@4.2.0)(terser@5.26.0)))
'@sveltejs/kit':
specifier: ^2.0.3
version: 2.0.3(@sveltejs/vite-plugin-svelte@3.0.1(svelte@4.2.17)(vite@5.2.11(@types/node@20.10.5)(less@4.2.0)(terser@5.26.0)))(svelte@4.2.17)(vite@5.2.11(@types/node@20.10.5)(less@4.2.0)(terser@5.26.0))
'@sveltejs/package':
specifier: ^2.2.3
version: 2.2.3(svelte@4.2.17)(typescript@5.4.5)
'@sveltejs/vite-plugin-svelte':
specifier: ^3.0.0
version: 3.0.1(svelte@4.2.17)(vite@5.2.11(@types/node@20.10.5)(less@4.2.0)(terser@5.26.0))
'@testing-library/dom':
specifier: ^9.3.3
version: 9.3.3
'@testing-library/jest-dom':
specifier: ^6.1.5
version: 6.1.5(vitest@1.1.0(@types/node@20.10.5)(jsdom@23.0.1)(less@4.2.0)(terser@5.26.0))
'@testing-library/svelte':
specifier: ^4.1.0
version: 4.1.0(svelte@4.2.17)
'@threlte/core':
specifier: ^7.3.1
version: 7.3.1(svelte@4.2.17)(three@0.167.1)
'@threlte/extras':
specifier: ^8.11.5
version: 8.11.5(@types/three@0.167.2)(svelte@4.2.17)(three@0.167.1)
'@types/three':
specifier: ^0.167.2
version: 0.167.2
'@typescript-eslint/eslint-plugin':
specifier: ^6.15.0
version: 6.15.0(@typescript-eslint/parser@6.15.0(eslint@8.56.0)(typescript@5.4.5))(eslint@8.56.0)(typescript@5.4.5)
'@typescript-eslint/parser':
specifier: ^6.15.0
version: 6.15.0(eslint@8.56.0)(typescript@5.4.5)
'@viamrobotics/eslint-config':
specifier: ^0.3.0
version: 0.3.0(@typescript-eslint/eslint-plugin@6.15.0(@typescript-eslint/parser@6.15.0(eslint@8.56.0)(typescript@5.4.5))(eslint@8.56.0)(typescript@5.4.5))(@typescript-eslint/parser@6.15.0(eslint@8.56.0)(typescript@5.4.5))(eslint-config-prettier@9.1.0(eslint@8.56.0))(eslint-plugin-sonarjs@0.23.0(eslint@8.56.0))(eslint-plugin-svelte@2.35.1(eslint@8.56.0)(svelte@4.2.17))(eslint-plugin-tailwindcss@3.13.0(tailwindcss@3.4.3))(eslint-plugin-unicorn@49.0.0(eslint@8.56.0))(eslint@8.56.0)
'@viamrobotics/prettier-config':
specifier: ^0.3.4
version: 0.3.4(prettier-plugin-svelte@3.1.2(prettier@3.1.1)(svelte@4.2.17))(prettier-plugin-tailwindcss@0.5.9(prettier-plugin-svelte@3.1.2(prettier@3.1.1)(svelte@4.2.17))(prettier@3.1.1))(prettier@3.1.1)
'@viamrobotics/prime-core':
specifier: workspace:*
version: link:../core
'@viamrobotics/three':
specifier: ^0.0.4
version: 0.0.4(three@0.167.1)
'@viamrobotics/typescript-config':
specifier: ^0.1.0
version: 0.1.0(typescript@5.4.5)
autoprefixer:
specifier: ^10.4.16
version: 10.4.16(postcss@8.4.38)
classnames:
specifier: ^2.3.2
version: 2.3.2
concurrently:
specifier: ^8.2.2
version: 8.2.2
eslint:
specifier: ^8.56.0
version: 8.56.0
eslint-config-prettier:
specifier: ^9.1.0
version: 9.1.0(eslint@8.56.0)
eslint-plugin-sonarjs:
specifier: ^0.23.0
version: 0.23.0(eslint@8.56.0)
eslint-plugin-svelte:
specifier: ^2.35.1
version: 2.35.1(eslint@8.56.0)(svelte@4.2.17)
eslint-plugin-tailwindcss:
specifier: ^3.13.0
version: 3.13.0(tailwindcss@3.4.3)
eslint-plugin-unicorn:
specifier: ^49.0.0
version: 49.0.0(eslint@8.56.0)
jsdom:
specifier: ^23.0.1
version: 23.0.1
maplibre-gl:
specifier: ^4.5.0
version: 4.5.0
postcss:
specifier: ^8.4.32
version: 8.4.38
prettier:
specifier: ^3.1.1
version: 3.1.1
prettier-plugin-svelte:
specifier: ^3.1.2
version: 3.1.2(prettier@3.1.1)(svelte@4.2.17)
prettier-plugin-tailwindcss:
specifier: ^0.5.9
version: 0.5.9(prettier-plugin-svelte@3.1.2(prettier@3.1.1)(svelte@4.2.17))(prettier@3.1.1)
publint:
specifier: ^0.2.6
version: 0.2.6
svelte:
specifier: ^4.2.8
version: 4.2.17
svelte-check:
specifier: ^3.6.2
version: 3.6.2(@babel/core@7.24.6)(less@4.2.0)(postcss-load-config@4.0.2(postcss@8.4.38))(postcss@8.4.38)(svelte@4.2.17)
tailwindcss:
specifier: ^3.3.7
version: 3.4.3
three:
specifier: ^0.167.1
version: 0.167.1
tslib:
specifier: ^2.6.2
version: 2.6.2
typescript:
specifier: ^5.3.3
version: 5.4.5
vite:
specifier: ^5.0.10
version: 5.2.11(@types/node@20.10.5)(less@4.2.0)(terser@5.26.0)
vitest:
specifier: ^1.1.0
version: 1.1.0(@types/node@20.10.5)(jsdom@23.0.1)(less@4.2.0)(terser@5.26.0)
packages/core:
dependencies:
'@floating-ui/dom':
specifier: ^1.5.3
version: 1.5.3
'@mdi/js':
specifier: ^7.3.67
version: 7.3.67
classnames:
specifier: ^2.3.2
version: 2.3.2
lodash-es:
specifier: ^4.17.21
version: 4.17.21
nanoid:
specifier: ^5.0.4
version: 5.0.4
prism-themes:
specifier: ^1.9.0
version: 1.9.0
prismjs:
specifier: ^1.29.0
version: 1.29.0
devDependencies:
'@sveltejs/adapter-auto':
specifier: ^3.0.0
version: 3.0.0(@sveltejs/kit@2.0.3(@sveltejs/vite-plugin-svelte@3.0.1(svelte@4.2.17)(vite@5.2.11(@types/node@20.10.5)(less@4.2.0)(terser@5.26.0)))(svelte@4.2.17)(vite@5.2.11(@types/node@20.10.5)(less@4.2.0)(terser@5.26.0)))
'@sveltejs/kit':
specifier: ^2.0.3
version: 2.0.3(@sveltejs/vite-plugin-svelte@3.0.1(svelte@4.2.17)(vite@5.2.11(@types/node@20.10.5)(less@4.2.0)(terser@5.26.0)))(svelte@4.2.17)(vite@5.2.11(@types/node@20.10.5)(less@4.2.0)(terser@5.26.0))
'@sveltejs/package':
specifier: ^2.2.3
version: 2.2.3(svelte@4.2.17)(typescript@5.4.5)
'@sveltejs/vite-plugin-svelte':
specifier: ^3.0.0
version: 3.0.1(svelte@4.2.17)(vite@5.2.11(@types/node@20.10.5)(less@4.2.0)(terser@5.26.0))
'@testing-library/dom':
specifier: ^9.3.3
version: 9.3.3
'@testing-library/jest-dom':
specifier: ^6.1.5
version: 6.1.5(vitest@1.1.0(@types/node@20.10.5)(jsdom@23.0.1)(less@4.2.0)(terser@5.26.0))
'@testing-library/svelte':
specifier: ^5.2.6
version: 5.2.6(svelte@4.2.17)(vite@5.2.11(@types/node@20.10.5)(less@4.2.0)(terser@5.26.0))(vitest@1.1.0(@types/node@20.10.5)(jsdom@23.0.1)(less@4.2.0)(terser@5.26.0))
'@testing-library/user-event':
specifier: ^14.5.1
version: 14.5.1(@testing-library/dom@9.3.3)
'@types/lodash-es':
specifier: ^4.17.12
version: 4.17.12
'@types/prismjs':
specifier: ^1.26.3
version: 1.26.3
'@typescript-eslint/eslint-plugin':
specifier: ^6.15.0
version: 6.15.0(@typescript-eslint/parser@6.15.0(eslint@8.56.0)(typescript@5.4.5))(eslint@8.56.0)(typescript@5.4.5)
'@typescript-eslint/parser':
specifier: ^6.15.0
version: 6.15.0(eslint@8.56.0)(typescript@5.4.5)
'@viamrobotics/eslint-config':
specifier: ^0.3.0
version: 0.3.0(@typescript-eslint/eslint-plugin@6.15.0(@typescript-eslint/parser@6.15.0(eslint@8.56.0)(typescript@5.4.5))(eslint@8.56.0)(typescript@5.4.5))(@typescript-eslint/parser@6.15.0(eslint@8.56.0)(typescript@5.4.5))(eslint-config-prettier@9.1.0(eslint@8.56.0))(eslint-plugin-sonarjs@0.23.0(eslint@8.56.0))(eslint-plugin-svelte@2.35.1(eslint@8.56.0)(svelte@4.2.17))(eslint-plugin-tailwindcss@3.13.0(tailwindcss@3.4.3))(eslint-plugin-unicorn@49.0.0(eslint@8.56.0))(eslint@8.56.0)
'@viamrobotics/prettier-config':
specifier: ^0.3.4
version: 0.3.4(prettier-plugin-svelte@3.1.2(prettier@3.1.1)(svelte@4.2.17))(prettier-plugin-tailwindcss@0.5.9(prettier-plugin-svelte@3.1.2(prettier@3.1.1)(svelte@4.2.17))(prettier@3.1.1))(prettier@3.1.1)
'@viamrobotics/typescript-config':
specifier: ^0.1.0
version: 0.1.0(typescript@5.4.5)
autoprefixer:
specifier: ^10.4.16
version: 10.4.16(postcss@8.4.38)
concurrently:
specifier: ^8.2.2
version: 8.2.2
eslint:
specifier: ^8.56.0
version: 8.56.0
eslint-config-prettier:
specifier: ^9.1.0
version: 9.1.0(eslint@8.56.0)
eslint-plugin-sonarjs:
specifier: ^0.23.0
version: 0.23.0(eslint@8.56.0)
eslint-plugin-svelte:
specifier: ^2.35.1
version: 2.35.1(eslint@8.56.0)(svelte@4.2.17)
eslint-plugin-tailwindcss:
specifier: ^3.13.0
version: 3.13.0(tailwindcss@3.4.3)
eslint-plugin-unicorn:
specifier: ^49.0.0
version: 49.0.0(eslint@8.56.0)
jsdom:
specifier: ^23.0.1
version: 23.0.1
postcss:
specifier: ^8.4.32
version: 8.4.38
prettier:
specifier: ^3.1.1
version: 3.1.1
prettier-plugin-svelte:
specifier: ^3.1.2
version: 3.1.2(prettier@3.1.1)(svelte@4.2.17)
prettier-plugin-tailwindcss:
specifier: ^0.5.9
version: 0.5.9(prettier-plugin-svelte@3.1.2(prettier@3.1.1)(svelte@4.2.17))(prettier@3.1.1)
publint:
specifier: ^0.2.6
version: 0.2.6
svelte:
specifier: ^4.2.8
version: 4.2.17
svelte-check:
specifier: ^3.6.2
version: 3.6.2(@babel/core@7.24.6)(less@4.2.0)(postcss-load-config@4.0.2(postcss@8.4.38))(postcss@8.4.38)(svelte@4.2.17)
tailwindcss:
specifier: ^3.3.7
version: 3.4.3
tslib:
specifier: ^2.6.2
version: 2.6.2
type-fest:
specifier: ^4.8.3
version: 4.8.3
typescript:
specifier: ^5.3.3
version: 5.4.5
vite:
specifier: ^5.0.10
version: 5.2.11(@types/node@20.10.5)(less@4.2.0)(terser@5.26.0)
vitest:
specifier: ^1.1.0
version: 1.1.0(@types/node@20.10.5)(jsdom@23.0.1)(less@4.2.0)(terser@5.26.0)
packages/docs:
dependencies:
'@astrojs/check':
specifier: ^0.7.0
version: 0.7.0(prettier@3.1.1)(typescript@5.4.5)
'@astrojs/mdx':
specifier: ^3.0.1
version: 3.0.1(astro@4.9.1(@types/node@20.10.5)(less@4.2.0)(terser@5.26.0)(typescript@5.4.5))
'@astrojs/svelte':
specifier: ^5.4.0
version: 5.4.0(astro@4.9.1(@types/node@20.10.5)(less@4.2.0)(terser@5.26.0)(typescript@5.4.5))(svelte@4.2.17)(typescript@5.4.5)(vite@5.2.11(@types/node@20.10.5)(less@4.2.0)(terser@5.26.0))
'@astrojs/tailwind':
specifier: ^5.1.0
version: 5.1.0(astro@4.9.1(@types/node@20.10.5)(less@4.2.0)(terser@5.26.0)(typescript@5.4.5))(tailwindcss@3.4.3)
astro:
specifier: ^4.9.1
version: 4.9.1(@types/node@20.10.5)(less@4.2.0)(terser@5.26.0)(typescript@5.4.5)
svelte:
specifier: ^4.2.17
version: 4.2.17
tailwindcss:
specifier: ^3.4.3
version: 3.4.3
typescript:
specifier: ^5.4.5
version: 5.4.5
devDependencies:
'@viamrobotics/prime-core':
specifier: workspace:*
version: link:../core
packages/editor:
devDependencies:
'@codemirror/lang-json':
specifier: ^6.0.1
version: 6.0.1
'@codemirror/merge':
specifier: ^6.6.1
version: 6.6.7
'@codemirror/state':
specifier: ^6.3.1
version: 6.4.1
'@codemirror/view':
specifier: ^6.22.0
version: 6.32.0
'@sveltejs/adapter-auto':
specifier: ^3.0.0
version: 3.0.0(@sveltejs/kit@2.0.3(@sveltejs/vite-plugin-svelte@3.0.1(svelte@4.2.17)(vite@5.2.11(@types/node@20.10.5)(less@4.2.0)(terser@5.26.0)))(svelte@4.2.17)(vite@5.2.11(@types/node@20.10.5)(less@4.2.0)(terser@5.26.0)))
'@sveltejs/kit':
specifier: ^2.0.3
version: 2.0.3(@sveltejs/vite-plugin-svelte@3.0.1(svelte@4.2.17)(vite@5.2.11(@types/node@20.10.5)(less@4.2.0)(terser@5.26.0)))(svelte@4.2.17)(vite@5.2.11(@types/node@20.10.5)(less@4.2.0)(terser@5.26.0))
'@sveltejs/package':
specifier: ^2.2.3
version: 2.2.3(svelte@4.2.17)(typescript@5.4.5)
'@sveltejs/vite-plugin-svelte':
specifier: ^3.0.0
version: 3.0.1(svelte@4.2.17)(vite@5.2.11(@types/node@20.10.5)(less@4.2.0)(terser@5.26.0))
'@testing-library/dom':
specifier: ^9.3.3
version: 9.3.3
'@testing-library/jest-dom':
specifier: ^6.1.5
version: 6.1.5(vitest@1.1.0(@types/node@20.10.5)(jsdom@23.0.1)(less@4.2.0)(terser@5.26.0))
'@testing-library/svelte':
specifier: ^4.1.0
version: 4.1.0(svelte@4.2.17)
'@testing-library/user-event':
specifier: ^14.5.1
version: 14.5.1(@testing-library/dom@9.3.3)
'@types/lodash-es':
specifier: ^4.17.12
version: 4.17.12
'@types/prismjs':
specifier: ^1.26.3
version: 1.26.3
'@typescript-eslint/eslint-plugin':
specifier: ^6.15.0
version: 6.15.0(@typescript-eslint/parser@6.15.0(eslint@8.56.0)(typescript@5.4.5))(eslint@8.56.0)(typescript@5.4.5)
'@typescript-eslint/parser':
specifier: ^6.15.0
version: 6.15.0(eslint@8.56.0)(typescript@5.4.5)
'@viamrobotics/eslint-config':
specifier: ^0.3.0
version: 0.3.0(@typescript-eslint/eslint-plugin@6.15.0(@typescript-eslint/parser@6.15.0(eslint@8.56.0)(typescript@5.4.5))(eslint@8.56.0)(typescript@5.4.5))(@typescript-eslint/parser@6.15.0(eslint@8.56.0)(typescript@5.4.5))(eslint-config-prettier@9.1.0(eslint@8.56.0))(eslint-plugin-sonarjs@0.23.0(eslint@8.56.0))(eslint-plugin-svelte@2.35.1(eslint@8.56.0)(svelte@4.2.17))(eslint-plugin-tailwindcss@3.13.0(tailwindcss@3.4.3))(eslint-plugin-unicorn@49.0.0(eslint@8.56.0))(eslint@8.56.0)
'@viamrobotics/prettier-config':
specifier: ^0.3.4
version: 0.3.4(prettier-plugin-svelte@3.1.2(prettier@3.1.1)(svelte@4.2.17))(prettier-plugin-tailwindcss@0.5.9(prettier-plugin-svelte@3.1.2(prettier@3.1.1)(svelte@4.2.17))(prettier@3.1.1))(prettier@3.1.1)
'@viamrobotics/prime-core':
specifier: workspace:^
version: link:../core
'@viamrobotics/typescript-config':
specifier: ^0.1.0
version: 0.1.0(typescript@5.4.5)
autoprefixer:
specifier: ^10.4.16
version: 10.4.16(postcss@8.4.38)
classnames:
specifier: ^2.3.2
version: 2.3.2
codemirror:
specifier: ^6.0.1
version: 6.0.1(@lezer/common@1.2.1)
concurrently:
specifier: ^8.2.2
version: 8.2.2
eslint:
specifier: ^8.56.0
version: 8.56.0
eslint-config-prettier:
specifier: ^9.1.0
version: 9.1.0(eslint@8.56.0)
eslint-plugin-sonarjs:
specifier: ^0.23.0
version: 0.23.0(eslint@8.56.0)
eslint-plugin-svelte:
specifier: ^2.35.1
version: 2.35.1(eslint@8.56.0)(svelte@4.2.17)
eslint-plugin-tailwindcss:
specifier: ^3.13.0
version: 3.13.0(tailwindcss@3.4.3)
eslint-plugin-unicorn:
specifier: ^49.0.0
version: 49.0.0(eslint@8.56.0)
jsdom:
specifier: ^23.0.1
version: 23.0.1
lodash-es:
specifier: ^4.17.21
version: 4.17.21
postcss:
specifier: ^8.4.32
version: 8.4.38
prettier:
specifier: ^3.1.1
version: 3.1.1
prettier-plugin-svelte:
specifier: ^3.1.2
version: 3.1.2(prettier@3.1.1)(svelte@4.2.17)
prettier-plugin-tailwindcss:
specifier: ^0.5.9
version: 0.5.9(prettier-plugin-svelte@3.1.2(prettier@3.1.1)(svelte@4.2.17))(prettier@3.1.1)
publint:
specifier: ^0.2.6
version: 0.2.6
svelte:
specifier: ^4.2.8
version: 4.2.17
svelte-check:
specifier: ^3.6.2
version: 3.6.2(@babel/core@7.24.6)(less@4.2.0)(postcss-load-config@4.0.2(postcss@8.4.38))(postcss@8.4.38)(svelte@4.2.17)
tailwindcss:
specifier: ^3.3.7
version: 3.4.3
tslib:
specifier: ^2.6.2
version: 2.6.2
type-fest:
specifier: ^4.8.3
version: 4.8.3
typescript:
specifier: ^5.3.3
version: 5.4.5
vite:
specifier: ^5.0.10
version: 5.2.11(@types/node@20.10.5)(less@4.2.0)(terser@5.26.0)
vitest:
specifier: ^1.1.0
version: 1.1.0(@types/node@20.10.5)(jsdom@23.0.1)(less@4.2.0)(terser@5.26.0)
packages/legacy:
devDependencies:
'@floating-ui/dom':
specifier: ^1.2.6
version: 1.5.3
'@floating-ui/vue':
specifier: ^1.0.0
version: 1.0.2(vue@3.3.4)
'@mdi/js':
specifier: ^7.2.96
version: 7.3.67
'@playwright/test':
specifier: ^1.32.3
version: 1.36.2
'@sveltejs/vite-plugin-svelte':
specifier: ^2.4.2
version: 2.5.3(svelte@4.2.17)(vite@4.5.1(@types/node@20.10.5)(less@4.2.0)(terser@5.26.0))
'@types/prismjs':
specifier: ^1.26.0
version: 1.26.3
'@typescript-eslint/eslint-plugin':
specifier: ^6.7.0
version: 6.15.0(@typescript-eslint/parser@6.15.0(eslint@8.56.0)(typescript@5.4.5))(eslint@8.56.0)(typescript@5.4.5)
'@typescript-eslint/parser':
specifier: ^6.7.0
version: 6.15.0(eslint@8.56.0)(typescript@5.4.5)
'@viamrobotics/eslint-config':
specifier: ^0.2.4
version: 0.2.4(@typescript-eslint/eslint-plugin@6.15.0(@typescript-eslint/parser@6.15.0(eslint@8.56.0)(typescript@5.4.5))(eslint@8.56.0)(typescript@5.4.5))(@typescript-eslint/parser@6.15.0(eslint@8.56.0)(typescript@5.4.5))(eslint-config-prettier@9.1.0(eslint@8.56.0))(eslint-plugin-sonarjs@0.21.0(eslint@8.56.0))(eslint-plugin-svelte@2.35.1(eslint@8.56.0)(svelte@4.2.17))(eslint-plugin-tailwindcss@3.13.0(tailwindcss@3.4.3))(eslint-plugin-unicorn@48.0.1(eslint@8.56.0))(eslint@8.56.0)
'@viamrobotics/prettier-config':
specifier: ^0.3.2
version: 0.3.4(prettier-plugin-svelte@3.1.2(prettier@3.1.1)(svelte@4.2.17))(prettier-plugin-tailwindcss@0.5.9(prettier-plugin-svelte@3.1.2(prettier@3.1.1)(svelte@4.2.17))(prettier@3.1.1))(prettier@3.1.1)
'@viamrobotics/prime-core':
specifier: workspace:*
version: link:../core
'@viamrobotics/typescript-config':
specifier: ^0.1.0
version: 0.1.0(typescript@5.4.5)
'@vitejs/plugin-vue':
specifier: ^4.1.0
version: 4.2.3(vite@4.5.1(@types/node@20.10.5)(less@4.2.0)(terser@5.26.0))(vue@3.3.4)
classnames:
specifier: ^2.3.2
version: 2.3.2
concurrently:
specifier: ^8.0.1
version: 8.2.2
element-internals-polyfill:
specifier: ^1.3.0
version: 1.3.5
eslint:
specifier: ^8.49.0
version: 8.56.0
eslint-config-prettier:
specifier: ^9.0.0
version: 9.1.0(eslint@8.56.0)
eslint-import-resolver-typescript:
specifier: ^3.6.0
version: 3.6.0(@typescript-eslint/parser@6.15.0(eslint@8.56.0)(typescript@5.4.5))(eslint-plugin-import@2.28.0)(eslint@8.56.0)
eslint-plugin-import:
specifier: ^2.28.0
version: 2.28.0(@typescript-eslint/parser@6.15.0(eslint@8.56.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.0)(eslint@8.56.0)
eslint-plugin-jsx-a11y:
specifier: ^6.7.1
version: 6.7.1(eslint@8.56.0)
eslint-plugin-prefer-arrow:
specifier: ^1.2.3
version: 1.2.3(eslint@8.56.0)
eslint-plugin-sonarjs:
specifier: ^0.21.0
version: 0.21.0(eslint@8.56.0)
eslint-plugin-svelte:
specifier: ^2.33.1
version: 2.35.1(eslint@8.56.0)(svelte@4.2.17)
eslint-plugin-tailwindcss:
specifier: ^3.13.0
version: 3.13.0(tailwindcss@3.4.3)
eslint-plugin-unicorn:
specifier: ^48.0.1
version: 48.0.1(eslint@8.56.0)
mdi-svelte-ts:
specifier: ^1.0.0
version: 1.0.0
monaco-editor:
specifier: ^0.37.1
version: 0.37.1
postcss:
specifier: ^8.4.23
version: 8.4.38
prettier:
specifier: ^3.0.3
version: 3.1.1
prettier-plugin-svelte:
specifier: ^3.0.3
version: 3.1.2(prettier@3.1.1)(svelte@4.2.17)
prettier-plugin-tailwindcss:
specifier: ^0.5.4
version: 0.5.9(prettier-plugin-svelte@3.1.2(prettier@3.1.1)(svelte@4.2.17))(prettier@3.1.1)
prismjs:
specifier: ^1.29.0
version: 1.29.0
react:
specifier: ^18.2.0
version: 18.2.0
remark-gfm:
specifier: ^3.0.1
version: 3.0.1
svelte:
specifier: ^4.0.5
version: 4.2.17
svelte-check:
specifier: ^3.4.3
version: 3.6.2(@babel/core@7.24.6)(less@4.2.0)(postcss-load-config@4.0.2(postcss@8.4.38))(postcss@8.4.38)(svelte@4.2.17)
svelte-preprocess:
specifier: ^5.0.3
version: 5.1.3(@babel/core@7.24.6)(less@4.2.0)(postcss-load-config@4.0.2(postcss@8.4.38))(postcss@8.4.38)(svelte@4.2.17)(typescript@5.4.5)
tailwindcss:
specifier: ^3.3.1
version: 3.4.3
typescript:
specifier: ^5.2.2
version: 5.4.5
vite:
specifier: ^4.4.9
version: 4.5.1(@types/node@20.10.5)(less@4.2.0)(terser@5.26.0)
vue:
specifier: ^3.2.45
version: 3.3.4
vue-tsc:
specifier: ^1.2.0
version: 1.8.8(typescript@5.4.5)
packages:
'@aashutoshrathi/word-wrap@1.2.6':
resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==}
engines: {node: '>=0.10.0'}
'@adobe/css-tools@4.3.2':
resolution: {integrity: sha512-DA5a1C0gD/pLOvhv33YMrbf2FK3oUzwNl9oOJqE4XVjuEtt6XIakRcsd7eLiOSPkp1kTRQGICTA8cKra/vFbjw==}
'@alloc/quick-lru@5.2.0':
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
engines: {node: '>=10'}
'@ampproject/remapping@2.2.1':
resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==}
engines: {node: '>=6.0.0'}
'@astrojs/check@0.7.0':
resolution: {integrity: sha512-UTqwOeKNu9IYZmJXEeWnQuTdSd/pX58Hl4TUARsMlT97SVDL//kLBE4T/ctxRz6J573N87oE5ddtW/uOOnQTug==}
hasBin: true
peerDependencies:
typescript: ^5.0.0
'@astrojs/compiler@2.8.0':
resolution: {integrity: sha512-yrpD1WRGqsJwANaDIdtHo+YVjvIOFAjC83lu5qENIgrafwZcJgSXDuwVMXOgok4tFzpeKLsFQ6c3FoUdloLWBQ==}
'@astrojs/internal-helpers@0.4.0':
resolution: {integrity: sha512-6B13lz5n6BrbTqCTwhXjJXuR1sqiX/H6rTxzlXx+lN1NnV4jgnq/KJldCQaUWJzPL5SiWahQyinxAbxQtwgPHA==}
'@astrojs/language-server@2.10.0':
resolution: {integrity: sha512-crHXpqYfA5qWioiuZnZFpTsNItgBlF1f0S9MzDYS7/pfCALkHNJ7K3w9U/j0uMKymsT4hC7BfMaX0DYlfdSzHg==}
hasBin: true
peerDependencies:
prettier: ^3.0.0
prettier-plugin-astro: '>=0.11.0'
peerDependenciesMeta:
prettier:
optional: true
prettier-plugin-astro:
optional: true
'@astrojs/markdown-remark@5.1.0':
resolution: {integrity: sha512-S6Z3K2hOB7MfjeDoHsotnP/q2UsnEDB8NlNAaCjMDsGBZfTUbWxyLW3CaphEWw08f6KLZi2ibK9yC3BaMhh2NQ==}
'@astrojs/mdx@3.0.1':
resolution: {integrity: sha512-UcPja14Qt6OEm7Wjak41Qa5f7G1M0oB2ARCsyIkXy6+Z65fJ6c1648UqEOqnEgR6Xtqq+V47wtK2qSP6KQKrAg==}
engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0}
peerDependencies:
astro: ^4.8.0
'@astrojs/prism@3.1.0':
resolution: {integrity: sha512-Z9IYjuXSArkAUx3N6xj6+Bnvx8OdUSHA8YoOgyepp3+zJmtVYJIl/I18GozdJVW1p5u/CNpl3Km7/gwTJK85cw==}
engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0}
'@astrojs/svelte@5.4.0':
resolution: {integrity: sha512-D9/CVJ+Fy3fu+FzJ7x+0GnRUhHsJKsU6tW/xQQ1QzrFMABuEoM5U4YKTYtxWkqB4B4jNb7gbA4p9ZtEhYZ3/+w==}
engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0}
peerDependencies:
astro: ^4.0.0
svelte: ^4.0.0 || ^5.0.0-next.90
typescript: ^5.3.3
'@astrojs/tailwind@5.1.0':
resolution: {integrity: sha512-BJoCDKuWhU9FT2qYg+fr6Nfb3qP4ShtyjXGHKA/4mHN94z7BGcmauQK23iy+YH5qWvTnhqkd6mQPQ1yTZTe9Ig==}
peerDependencies:
astro: ^3.0.0 || ^4.0.0
tailwindcss: ^3.0.24
'@astrojs/telemetry@3.1.0':
resolution: {integrity: sha512-/ca/+D8MIKEC8/A9cSaPUqQNZm+Es/ZinRv0ZAzvu2ios7POQSsVD+VOj7/hypWNsNM3T7RpfgNq7H2TU1KEHA==}
engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0}
'@babel/code-frame@7.24.6':
resolution: {integrity: sha512-ZJhac6FkEd1yhG2AHOmfcXG4ceoLltoCVJjN5XsWN9BifBQr+cHJbWi0h68HZuSORq+3WtJ2z0hwF2NG1b5kcA==}
engines: {node: '>=6.9.0'}
'@babel/compat-data@7.24.6':
resolution: {integrity: sha512-aC2DGhBq5eEdyXWqrDInSqQjO0k8xtPRf5YylULqx8MCd6jBtzqfta/3ETMRpuKIc5hyswfO80ObyA1MvkCcUQ==}
engines: {node: '>=6.9.0'}
'@babel/core@7.24.6':
resolution: {integrity: sha512-qAHSfAdVyFmIvl0VHELib8xar7ONuSHrE2hLnsaWkYNTI68dmi1x8GYDhJjMI/e7XWal9QBlZkwbOnkcw7Z8gQ==}
engines: {node: '>=6.9.0'}
'@babel/generator@7.24.6':
resolution: {integrity: sha512-S7m4eNa6YAPJRHmKsLHIDJhNAGNKoWNiWefz1MBbpnt8g9lvMDl1hir4P9bo/57bQEmuwEhnRU/AMWsD0G/Fbg==}
engines: {node: '>=6.9.0'}
'@babel/helper-annotate-as-pure@7.24.6':
resolution: {integrity: sha512-DitEzDfOMnd13kZnDqns1ccmftwJTS9DMkyn9pYTxulS7bZxUxpMly3Nf23QQ6NwA4UB8lAqjbqWtyvElEMAkg==}
engines: {node: '>=6.9.0'}
'@babel/helper-compilation-targets@7.24.6':
resolution: {integrity: sha512-VZQ57UsDGlX/5fFA7GkVPplZhHsVc+vuErWgdOiysI9Ksnw0Pbbd6pnPiR/mmJyKHgyIW0c7KT32gmhiF+cirg==}
engines: {node: '>=6.9.0'}
'@babel/helper-environment-visitor@7.24.6':
resolution: {integrity: sha512-Y50Cg3k0LKLMjxdPjIl40SdJgMB85iXn27Vk/qbHZCFx/o5XO3PSnpi675h1KEmmDb6OFArfd5SCQEQ5Q4H88g==}
engines: {node: '>=6.9.0'}
'@babel/helper-function-name@7.24.6':
resolution: {integrity: sha512-xpeLqeeRkbxhnYimfr2PC+iA0Q7ljX/d1eZ9/inYbmfG2jpl8Lu3DyXvpOAnrS5kxkfOWJjioIMQsaMBXFI05w==}
engines: {node: '>=6.9.0'}
'@babel/helper-hoist-variables@7.24.6':
resolution: {integrity: sha512-SF/EMrC3OD7dSta1bLJIlrsVxwtd0UpjRJqLno6125epQMJ/kyFmpTT4pbvPbdQHzCHg+biQ7Syo8lnDtbR+uA==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-imports@7.24.6':
resolution: {integrity: sha512-a26dmxFJBF62rRO9mmpgrfTLsAuyHk4e1hKTUkD/fcMfynt8gvEKwQPQDVxWhca8dHoDck+55DFt42zV0QMw5g==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-transforms@7.24.6':
resolution: {integrity: sha512-Y/YMPm83mV2HJTbX1Qh2sjgjqcacvOlhbzdCCsSlblOKjSYmQqEbO6rUniWQyRo9ncyfjT8hnUjlG06RXDEmcA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-plugin-utils@7.24.6':
resolution: {integrity: sha512-MZG/JcWfxybKwsA9N9PmtF2lOSFSEMVCpIRrbxccZFLJPrJciJdG/UhSh5W96GEteJI2ARqm5UAHxISwRDLSNg==}
engines: {node: '>=6.9.0'}
'@babel/helper-simple-access@7.24.6':
resolution: {integrity: sha512-nZzcMMD4ZhmB35MOOzQuiGO5RzL6tJbsT37Zx8M5L/i9KSrukGXWTjLe1knIbb/RmxoJE9GON9soq0c0VEMM5g==}
engines: {node: '>=6.9.0'}
'@babel/helper-split-export-declaration@7.24.6':
resolution: {integrity: sha512-CvLSkwXGWnYlF9+J3iZUvwgAxKiYzK3BWuo+mLzD/MDGOZDj7Gq8+hqaOkMxmJwmlv0iu86uH5fdADd9Hxkymw==}
engines: {node: '>=6.9.0'}
'@babel/helper-string-parser@7.24.6':
resolution: {integrity: sha512-WdJjwMEkmBicq5T9fm/cHND3+UlFa2Yj8ALLgmoSQAJZysYbBjw+azChSGPN4DSPLXOcooGRvDwZWMcF/mLO2Q==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-identifier@7.24.6':
resolution: {integrity: sha512-4yA7s865JHaqUdRbnaxarZREuPTHrjpDT+pXoAZ1yhyo6uFnIEpS8VMu16siFOHDpZNKYv5BObhsB//ycbICyw==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-option@7.24.6':
resolution: {integrity: sha512-Jktc8KkF3zIkePb48QO+IapbXlSapOW9S+ogZZkcO6bABgYAxtZcjZ/O005111YLf+j4M84uEgwYoidDkXbCkQ==}
engines: {node: '>=6.9.0'}
'@babel/helpers@7.24.6':
resolution: {integrity: sha512-V2PI+NqnyFu1i0GyTd/O/cTpxzQCYioSkUIRmgo7gFEHKKCg5w46+r/A6WeUR1+P3TeQ49dspGPNd/E3n9AnnA==}
engines: {node: '>=6.9.0'}
'@babel/highlight@7.24.6':
resolution: {integrity: sha512-2YnuOp4HAk2BsBrJJvYCbItHx0zWscI1C3zgWkz+wDyD9I7GIVrfnLyrR4Y1VR+7p+chAEcrgRQYZAGIKMV7vQ==}
engines: {node: '>=6.9.0'}
'@babel/parser@7.24.6':
resolution: {integrity: sha512-eNZXdfU35nJC2h24RznROuOpO94h6x8sg9ju0tT9biNtLZ2vuP8SduLqqV+/8+cebSLV9SJEAN5Z3zQbJG/M+Q==}
engines: {node: '>=6.0.0'}
hasBin: true
'@babel/plugin-syntax-jsx@7.24.6':
resolution: {integrity: sha512-lWfvAIFNWMlCsU0DRUun2GpFwZdGTukLaHJqRh1JRb80NdAP5Sb1HDHB5X9P9OtgZHQl089UzQkpYlBq2VTPRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-react-jsx@7.24.6':
resolution: {integrity: sha512-pCtPHhpRZHfwdA5G1Gpk5mIzMA99hv0R8S/Ket50Rw+S+8hkt3wBWqdqHaPw0CuUYxdshUgsPiLQ5fAs4ASMhw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/runtime@7.23.6':
resolution: {integrity: sha512-zHd0eUrf5GZoOWVCXp6koAKQTfZV07eit6bGPmJgnZdnSAvvZee6zniW2XMF7Cmc4ISOOnPy3QaSiIJGJkVEDQ==}
engines: {node: '>=6.9.0'}
'@babel/template@7.24.6':
resolution: {integrity: sha512-3vgazJlLwNXi9jhrR1ef8qiB65L1RK90+lEQwv4OxveHnqC3BfmnHdgySwRLzf6akhlOYenT+b7AfWq+a//AHw==}
engines: {node: '>=6.9.0'}
'@babel/traverse@7.24.6':
resolution: {integrity: sha512-OsNjaJwT9Zn8ozxcfoBc+RaHdj3gFmCmYoQLUII1o6ZrUwku0BMg80FoOTPx+Gi6XhcQxAYE4xyjPTo4SxEQqw==}
engines: {node: '>=6.9.0'}
'@babel/types@7.24.6':
resolution: {integrity: sha512-WaMsgi6Q8zMgMth93GvWPXkhAIEobfsIkLTacoVZoK1J0CevIPGYY2Vo5YvJGqyHqXM6P4ppOYGsIRU8MM9pFQ==}
engines: {node: '>=6.9.0'}
'@codemirror/autocomplete@6.18.0':
resolution: {integrity: sha512-5DbOvBbY4qW5l57cjDsmmpDh3/TeK1vXfTHa+BUMrRzdWdcxKZ4U4V7vQaTtOpApNU4kLS4FQ6cINtLg245LXA==}
peerDependencies:
'@codemirror/language': ^6.0.0
'@codemirror/state': ^6.0.0
'@codemirror/view': ^6.0.0
'@lezer/common': ^1.0.0
'@codemirror/commands@6.6.0':
resolution: {integrity: sha512-qnY+b7j1UNcTS31Eenuc/5YJB6gQOzkUoNmJQc0rznwqSRpeaWWpjkWy2C/MPTcePpsKJEM26hXrOXl1+nceXg==}
'@codemirror/lang-json@6.0.1':
resolution: {integrity: sha512-+T1flHdgpqDDlJZ2Lkil/rLiRy684WMLc74xUnjJH48GQdfJo/pudlTRreZmKwzP8/tGdKf83wlbAdOCzlJOGQ==}
'@codemirror/language@6.10.2':
resolution: {integrity: sha512-kgbTYTo0Au6dCSc/TFy7fK3fpJmgHDv1sG1KNQKJXVi+xBTEeBPY/M30YXiU6mMXeH+YIDLsbrT4ZwNRdtF+SA==}
'@codemirror/lint@6.8.1':
resolution: {integrity: sha512-IZ0Y7S4/bpaunwggW2jYqwLuHj0QtESf5xcROewY6+lDNwZ/NzvR4t+vpYgg9m7V8UXLPYqG+lu3DF470E5Oxg==}
'@codemirror/merge@6.6.7':
resolution: {integrity: sha512-fgZHAuLuxIQi1U/oeszzJHAGlQfkGC3Rmd9/Lxs4yO9GUC798h9640aiPWTuAyY3+H2XmlzQcg5wfG9mObKqRQ==}
'@codemirror/search@6.5.6':
resolution: {integrity: sha512-rpMgcsh7o0GuCDUXKPvww+muLA1pDJaFrpq/CCHtpQJYz8xopu4D1hPcKRoDD0YlF8gZaqTNIRa4VRBWyhyy7Q==}
'@codemirror/state@6.4.1':
resolution: {integrity: sha512-QkEyUiLhsJoZkbumGZlswmAhA7CBU02Wrz7zvH4SrcifbsqwlXShVXg65f3v/ts57W3dqyamEriMhij1Z3Zz4A==}
'@codemirror/view@6.32.0':
resolution: {integrity: sha512-AgVNvED2QTsZp5e3syoHLsrWtwJFYWdx1Vr/m3f4h1ATQz0ax60CfXF3Htdmk69k2MlYZw8gXesnQdHtzyVmAw==}
'@emmetio/abbreviation@2.3.3':
resolution: {integrity: sha512-mgv58UrU3rh4YgbE/TzgLQwJ3pFsHHhCLqY20aJq+9comytTXUDNGG/SMtSeMJdkpxgXSXunBGLD8Boka3JyVA==}
'@emmetio/css-abbreviation@2.1.8':
resolution: {integrity: sha512-s9yjhJ6saOO/uk1V74eifykk2CBYi01STTK3WlXWGOepyKa23ymJ053+DNQjpFcy1ingpaO7AxCcwLvHFY9tuw==}
'@emmetio/css-parser@0.4.0':
resolution: {integrity: sha512-z7wkxRSZgrQHXVzObGkXG+Vmj3uRlpM11oCZ9pbaz0nFejvCDmAiNDpY75+wgXOcffKpj4rzGtwGaZxfJKsJxw==}
'@emmetio/html-matcher@1.3.0':
resolution: {integrity: sha512-NTbsvppE5eVyBMuyGfVu2CRrLvo7J4YHb6t9sBFLyY03WYhXET37qA4zOYUjBWFCRHO7pS1B9khERtY0f5JXPQ==}
'@emmetio/scanner@1.0.4':
resolution: {integrity: sha512-IqRuJtQff7YHHBk4G8YZ45uB9BaAGcwQeVzgj/zj8/UdOhtQpEIupUhSk8dys6spFIWVZVeK20CzGEnqR5SbqA==}
'@emmetio/stream-reader-utils@0.1.0':
resolution: {integrity: sha512-ZsZ2I9Vzso3Ho/pjZFsmmZ++FWeEd/txqybHTm4OgaZzdS8V9V/YYWQwg5TC38Z7uLWUV1vavpLLbjJtKubR1A==}
'@emmetio/stream-reader@2.2.0':
resolution: {integrity: sha512-fXVXEyFA5Yv3M3n8sUGT7+fvecGrZP4k6FnWWMSZVQf69kAq0LLpaBQLGcPR30m3zMmKYhECP4k/ZkzvhEW5kw==}
'@emnapi/runtime@1.2.0':
resolution: {integrity: sha512-bV21/9LQmcQeCPEg3BDFtvwL6cwiTMksYNWQQ4KOxCZikEGalWtenoZ0wCiukJINlGCIi2KXx01g4FoH/LxpzQ==}
'@esbuild/aix-ppc64@0.20.2':
resolution: {integrity: sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [aix]
'@esbuild/aix-ppc64@0.21.3':
resolution: {integrity: sha512-yTgnwQpFVYfvvo4SvRFB0SwrW8YjOxEoT7wfMT7Ol5v7v5LDNvSGo67aExmxOb87nQNeWPVvaGBNfQ7BXcrZ9w==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [aix]
'@esbuild/android-arm64@0.18.20':
resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==}
engines: {node: '>=12'}
cpu: [arm64]
os: [android]
'@esbuild/android-arm64@0.20.2':
resolution: {integrity: sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==}
engines: {node: '>=12'}
cpu: [arm64]
os: [android]
'@esbuild/android-arm64@0.21.3':
resolution: {integrity: sha512-c+ty9necz3zB1Y+d/N+mC6KVVkGUUOcm4ZmT5i/Fk5arOaY3i6CA3P5wo/7+XzV8cb4GrI/Zjp8NuOQ9Lfsosw==}
engines: {node: '>=12'}
cpu: [arm64]
os: [android]
'@esbuild/android-arm@0.18.20':
resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==}
engines: {node: '>=12'}
cpu: [arm]
os: [android]
'@esbuild/android-arm@0.20.2':
resolution: {integrity: sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==}
engines: {node: '>=12'}
cpu: [arm]
os: [android]
'@esbuild/android-arm@0.21.3':
resolution: {integrity: sha512-bviJOLMgurLJtF1/mAoJLxDZDL6oU5/ztMHnJQRejbJrSc9FFu0QoUoFhvi6qSKJEw9y5oGyvr9fuDtzJ30rNQ==}
engines: {node: '>=12'}
cpu: [arm]
os: [android]
'@esbuild/android-x64@0.18.20':
resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==}
engines: {node: '>=12'}
cpu: [x64]
os: [android]
'@esbuild/android-x64@0.20.2':
resolution: {integrity: sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==}
engines: {node: '>=12'}
cpu: [x64]
os: [android]
'@esbuild/android-x64@0.21.3':
resolution: {integrity: sha512-JReHfYCRK3FVX4Ra+y5EBH1b9e16TV2OxrPAvzMsGeES0X2Ndm9ImQRI4Ket757vhc5XBOuGperw63upesclRw==}
engines: {node: '>=12'}
cpu: [x64]
os: [android]
'@esbuild/darwin-arm64@0.18.20':
resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
'@esbuild/darwin-arm64@0.20.2':
resolution: {integrity: sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
'@esbuild/darwin-arm64@0.21.3':
resolution: {integrity: sha512-U3fuQ0xNiAkXOmQ6w5dKpEvXQRSpHOnbw7gEfHCRXPeTKW9sBzVck6C5Yneb8LfJm0l6le4NQfkNPnWMSlTFUQ==}
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
'@esbuild/darwin-x64@0.18.20':
resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
'@esbuild/darwin-x64@0.20.2':
resolution: {integrity: sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==}
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
'@esbuild/darwin-x64@0.21.3':
resolution: {integrity: sha512-3m1CEB7F07s19wmaMNI2KANLcnaqryJxO1fXHUV5j1rWn+wMxdUYoPyO2TnAbfRZdi7ADRwJClmOwgT13qlP3Q==}
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
'@esbuild/freebsd-arm64@0.18.20':
resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==}
engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
'@esbuild/freebsd-arm64@0.20.2':
resolution: {integrity: sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==}
engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
'@esbuild/freebsd-arm64@0.21.3':
resolution: {integrity: sha512-fsNAAl5pU6wmKHq91cHWQT0Fz0vtyE1JauMzKotrwqIKAswwP5cpHUCxZNSTuA/JlqtScq20/5KZ+TxQdovU/g==}
engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
'@esbuild/freebsd-x64@0.18.20':
resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
'@esbuild/freebsd-x64@0.20.2':
resolution: {integrity: sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==}
engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
'@esbuild/freebsd-x64@0.21.3':
resolution: {integrity: sha512-tci+UJ4zP5EGF4rp8XlZIdq1q1a/1h9XuronfxTMCNBslpCtmk97Q/5qqy1Mu4zIc0yswN/yP/BLX+NTUC1bXA==}
engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
'@esbuild/linux-arm64@0.18.20':
resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
'@esbuild/linux-arm64@0.20.2':
resolution: {integrity: sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==}
engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
'@esbuild/linux-arm64@0.21.3':
resolution: {integrity: sha512-vvG6R5g5ieB4eCJBQevyDMb31LMHthLpXTc2IGkFnPWS/GzIFDnaYFp558O+XybTmYrVjxnryru7QRleJvmZ6Q==}
engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
'@esbuild/linux-arm@0.18.20':
resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==}
engines: {node: '>=12'}
cpu: [arm]
os: [linux]
'@esbuild/linux-arm@0.20.2':
resolution: {integrity: sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==}
engines: {node: '>=12'}
cpu: [arm]
os: [linux]
'@esbuild/linux-arm@0.21.3':
resolution: {integrity: sha512-f6kz2QpSuyHHg01cDawj0vkyMwuIvN62UAguQfnNVzbge2uWLhA7TCXOn83DT0ZvyJmBI943MItgTovUob36SQ==}
engines: {node: '>=12'}
cpu: [arm]
os: [linux]
'@esbuild/linux-ia32@0.18.20':
resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==}
engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
'@esbuild/linux-ia32@0.20.2':
resolution: {integrity: sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==}
engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
'@esbuild/linux-ia32@0.21.3':
resolution: {integrity: sha512-HjCWhH7K96Na+66TacDLJmOI9R8iDWDDiqe17C7znGvvE4sW1ECt9ly0AJ3dJH62jHyVqW9xpxZEU1jKdt+29A==}