-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpnpm-lock.yaml
More file actions
8829 lines (7011 loc) · 309 KB
/
pnpm-lock.yaml
File metadata and controls
8829 lines (7011 loc) · 309 KB
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:
'@babel/runtime@<7.26.10': '>=7.26.10'
'@itwin/appui-abstract': ^5.1.7
'@itwin/core-bentley': ^5.1.7
'@itwin/core-quantity': ^5.1.7
'@itwin/core-react': ^5.15.0
axios: '>=1.12.2'
dompurify@<3.2.4: '>=3.2.4'
esbuild@<=0.24.2: '>=0.25.0'
eslint-plugin-prettier: '>=5.5.3'
eslint-config-prettier: '>=10.1.8'
form-data: '>=4.0.4'
synckit: '>=0.11.11'
'@pkgr/core': '>=0.2.9'
path-to-regexp: 0.1.12
importers:
.:
dependencies:
'@changesets/cli':
specifier: ^2.27.11
version: 2.29.5
'@changesets/types':
specifier: 6.0.0
version: 6.0.0
'@types/node':
specifier: ^18.11.9
version: 18.19.119
'@typescript-eslint/eslint-plugin':
specifier: ^7.4.0
version: 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1)(typescript@5.5.4)
'@typescript-eslint/parser':
specifier: ^7.4.0
version: 7.18.0(eslint@8.57.1)(typescript@5.5.4)
eslint:
specifier: ^8.57.0
version: 8.57.1
eslint-plugin-react:
specifier: ^7.35.2
version: 7.37.5(eslint@8.57.1)
eslint-plugin-react-hooks:
specifier: ^4.6.2
version: 4.6.2(eslint@8.57.1)
npm-run-all:
specifier: ^4.1.5
version: 4.1.5
ts-node:
specifier: ^10.9.1
version: 10.9.2(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@18.19.119)(typescript@5.5.4)
typescript:
specifier: ~5.5.4
version: 5.5.4
devDependencies:
eslint-config-prettier:
specifier: '>=10.1.8'
version: 10.1.8(eslint@8.57.1)
packages/changed-elements-react:
dependencies:
'@itwin/itwinui-icons-color-react':
specifier: ^2.1.0
version: 2.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@itwin/itwinui-icons-react':
specifier: ^2.9.0
version: 2.10.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@itwin/itwinui-react':
specifier: ^3.16.6
version: 3.19.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
clsx:
specifier: ^2.1.1
version: 2.1.1
react-table:
specifier: ^7.8.0
version: 7.8.0(react@18.3.1)
react-window:
specifier: ^1.8.10
version: 1.8.11(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react-window-infinite-loader:
specifier: ^1.0.9
version: 1.0.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
devDependencies:
'@itwin/appui-abstract':
specifier: ^5.1.7
version: 5.1.7(@itwin/core-bentley@5.1.7)
'@itwin/components-react':
specifier: ^5.15.0
version: 5.15.0(@itwin/appui-abstract@5.1.7(@itwin/core-bentley@5.1.7))(@itwin/core-bentley@5.1.7)(@itwin/core-react@5.15.0(@itwin/appui-abstract@5.1.7(@itwin/core-bentley@5.1.7))(@itwin/core-bentley@5.1.7)(@itwin/itwinui-react@3.19.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@itwin/itwinui-react@3.19.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@itwin/core-bentley':
specifier: ^5.1.7
version: 5.1.7
'@itwin/core-common':
specifier: ^5.1.7
version: 5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-geometry@5.1.7)
'@itwin/core-frontend':
specifier: ^5.1.7
version: 5.1.7(@itwin/appui-abstract@5.1.7(@itwin/core-bentley@5.1.7))(@itwin/core-bentley@5.1.7)(@itwin/core-common@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-geometry@5.1.7))(@itwin/core-geometry@5.1.7)(@itwin/core-orbitgt@5.1.7)(@itwin/core-quantity@5.1.7(@itwin/core-bentley@5.1.7))(@itwin/ecschema-metadata@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-quantity@5.1.7(@itwin/core-bentley@5.1.7)))(@itwin/ecschema-rpcinterface-common@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-common@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-geometry@5.1.7))(@itwin/core-geometry@5.1.7)(@itwin/ecschema-metadata@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-quantity@5.1.7(@itwin/core-bentley@5.1.7))))(inversify@6.0.3)(reflect-metadata@0.1.14)
'@itwin/core-geometry':
specifier: ^5.1.7
version: 5.1.7
'@itwin/core-orbitgt':
specifier: ^5.1.7
version: 5.1.7
'@itwin/core-react':
specifier: ^5.15.0
version: 5.15.0(@itwin/appui-abstract@5.1.7(@itwin/core-bentley@5.1.7))(@itwin/core-bentley@5.1.7)(@itwin/itwinui-react@3.19.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@itwin/presentation-common':
specifier: ^5.1.7
version: 5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-common@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-geometry@5.1.7))(@itwin/core-quantity@5.1.7(@itwin/core-bentley@5.1.7))(@itwin/ecschema-metadata@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-quantity@5.1.7(@itwin/core-bentley@5.1.7)))
'@itwin/presentation-components':
specifier: ^5.12.8
version: 5.12.8(4ab7db9b253a533c4ac9286fe1e433eb)
'@itwin/presentation-core-interop':
specifier: ^1.3.4
version: 1.3.4(@itwin/core-bentley@5.1.7)(@itwin/core-common@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-geometry@5.1.7))(@itwin/core-geometry@5.1.7)(@itwin/core-quantity@5.1.7(@itwin/core-bentley@5.1.7))(@itwin/ecschema-metadata@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-quantity@5.1.7(@itwin/core-bentley@5.1.7)))
'@itwin/presentation-frontend':
specifier: ^5.1.7
version: 5.1.7(7422efa7e272cb0d813637cc4e15a58f)
'@itwin/unified-selection':
specifier: ^1.5.1
version: 1.5.1
'@itwin/unified-selection-react':
specifier: ^1.0.1
version: 1.0.1(@itwin/unified-selection@1.5.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@testing-library/react':
specifier: ^16.2.0
version: 16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@types/react':
specifier: ^18.0.0
version: 18.3.23
'@types/react-redux':
specifier: ^7.1.25
version: 7.1.34
'@types/react-table':
specifier: ^7.7.14
version: 7.7.20
'@types/react-window':
specifier: ^1.8.5
version: 1.8.8
'@types/react-window-infinite-loader':
specifier: ^1.0.6
version: 1.0.9
'@vitejs/plugin-react-swc':
specifier: ^3.7.1
version: 3.10.2(@swc/helpers@0.5.17)(vite@5.4.19(@types/node@18.19.119)(sass@1.89.2))
'@vitest/coverage-v8':
specifier: ^2.1.1
version: 2.1.9(vitest@2.1.9(@types/node@18.19.119)(happy-dom@15.11.7)(sass@1.89.2))
cpx2:
specifier: ^5.0.0
version: 5.0.0
happy-dom:
specifier: ^15.11.7
version: 15.11.7
npm-run-all:
specifier: ^4.1.5
version: 4.1.5
react:
specifier: ^18.0.0
version: 18.3.1
react-dom:
specifier: ^18.0.2
version: 18.3.1(react@18.3.1)
react-redux:
specifier: ^7.2.2
version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
redux:
specifier: ^4.1.0
version: 4.2.1
typescript:
specifier: ~5.5.4
version: 5.5.4
vite:
specifier: ^5.4.18
version: 5.4.19(@types/node@18.19.119)(sass@1.89.2)
vitest:
specifier: ^2.1.9
version: 2.1.9(@types/node@18.19.119)(happy-dom@15.11.7)(sass@1.89.2)
packages/test-app-backend:
dependencies:
'@itwin/core-backend':
specifier: ^5.1.7
version: 5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-common@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-geometry@5.1.7))(@itwin/core-geometry@5.1.7)(@itwin/ecschema-metadata@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-quantity@5.1.7(@itwin/core-bentley@5.1.7)))
'@itwin/core-bentley':
specifier: ^5.1.7
version: 5.1.7
'@itwin/core-common':
specifier: ^5.1.7
version: 5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-geometry@5.1.7)
'@itwin/core-quantity':
specifier: ^5.1.7
version: 5.1.7(@itwin/core-bentley@5.1.7)
'@itwin/ecschema-rpcinterface-common':
specifier: ^5.1.7
version: 5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-common@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-geometry@5.1.7))(@itwin/core-geometry@5.1.7)(@itwin/ecschema-metadata@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-quantity@5.1.7(@itwin/core-bentley@5.1.7)))
'@itwin/ecschema-rpcinterface-impl':
specifier: ^5.1.7
version: 5.1.7(@itwin/core-backend@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-common@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-geometry@5.1.7))(@itwin/core-geometry@5.1.7)(@itwin/ecschema-metadata@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-quantity@5.1.7(@itwin/core-bentley@5.1.7))))(@itwin/core-bentley@5.1.7)(@itwin/core-common@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-geometry@5.1.7))(@itwin/core-geometry@5.1.7)(@itwin/ecschema-metadata@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-quantity@5.1.7(@itwin/core-bentley@5.1.7)))(@itwin/ecschema-rpcinterface-common@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-common@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-geometry@5.1.7))(@itwin/core-geometry@5.1.7)(@itwin/ecschema-metadata@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-quantity@5.1.7(@itwin/core-bentley@5.1.7))))
'@itwin/express-server':
specifier: ^5.1.7
version: 5.1.7(@itwin/core-backend@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-common@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-geometry@5.1.7))(@itwin/core-geometry@5.1.7)(@itwin/ecschema-metadata@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-quantity@5.1.7(@itwin/core-bentley@5.1.7))))(@itwin/core-common@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-geometry@5.1.7))
'@itwin/imodels-access-backend':
specifier: ^6.0.1
version: 6.0.1(@itwin/core-backend@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-common@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-geometry@5.1.7))(@itwin/core-geometry@5.1.7)(@itwin/ecschema-metadata@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-quantity@5.1.7(@itwin/core-bentley@5.1.7))))(@itwin/core-bentley@5.1.7)(@itwin/core-common@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-geometry@5.1.7))(inversify@7.10.0(reflect-metadata@0.2.2))(reflect-metadata@0.2.2)
'@itwin/imodels-client-authoring':
specifier: ^6.0.1
version: 6.0.1(inversify@7.10.0(reflect-metadata@0.2.2))(reflect-metadata@0.2.2)
'@itwin/object-storage-azure':
specifier: ^3.0.2
version: 3.0.2(inversify@7.10.0(reflect-metadata@0.2.2))(reflect-metadata@0.2.2)
'@itwin/presentation-backend':
specifier: ^5.1.7
version: 5.1.7(@itwin/core-backend@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-common@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-geometry@5.1.7))(@itwin/core-geometry@5.1.7)(@itwin/ecschema-metadata@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-quantity@5.1.7(@itwin/core-bentley@5.1.7))))(@itwin/core-bentley@5.1.7)(@itwin/core-common@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-geometry@5.1.7))(@itwin/core-quantity@5.1.7(@itwin/core-bentley@5.1.7))(@itwin/ecschema-metadata@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-quantity@5.1.7(@itwin/core-bentley@5.1.7)))(@itwin/presentation-common@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-common@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-geometry@5.1.7))(@itwin/core-quantity@5.1.7(@itwin/core-bentley@5.1.7))(@itwin/ecschema-metadata@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-quantity@5.1.7(@itwin/core-bentley@5.1.7))))
'@itwin/presentation-common':
specifier: ^5.1.7
version: 5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-common@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-geometry@5.1.7))(@itwin/core-quantity@5.1.7(@itwin/core-bentley@5.1.7))(@itwin/ecschema-metadata@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-quantity@5.1.7(@itwin/core-bentley@5.1.7)))
'@types/dotenv-flow':
specifier: ^3.2.0
version: 3.3.3
'@types/node':
specifier: ^18.0.0
version: 18.19.119
dotenv-flow:
specifier: ^3.2.0
version: 3.3.0
express:
specifier: 4.21.0
version: 4.21.0
inversify:
specifier: ^7.9.1
version: 7.10.0(reflect-metadata@0.2.2)
reflect-metadata:
specifier: ^0.2.2
version: 0.2.2
ts-node-dev:
specifier: ^2.0.0
version: 2.0.0(@swc/core@1.12.14(@swc/helpers@0.5.17))(@types/node@18.19.119)(typescript@5.5.4)
typescript:
specifier: ~5.5.4
version: 5.5.4
devDependencies:
'@types/express':
specifier: 5.0.0
version: 5.0.0
packages/test-app-frontend:
dependencies:
'@bentley/icons-generic-webfont':
specifier: ^1.0.34
version: 1.0.34
'@itwin/appui-abstract':
specifier: ^5.1.7
version: 5.1.7(@itwin/core-bentley@5.1.7)
'@itwin/appui-layout-react':
specifier: ^4.8.3
version: 4.8.3(@itwin/appui-abstract@5.1.7(@itwin/core-bentley@5.1.7))(@itwin/core-bentley@5.1.7)(@itwin/core-react@5.15.0(@itwin/appui-abstract@5.1.7(@itwin/core-bentley@5.1.7))(@itwin/core-bentley@5.1.7)(@itwin/itwinui-react@3.19.4(react-dom@18.0.0(react@18.3.1))(react@18.3.1))(react-dom@18.0.0(react@18.3.1))(react@18.3.1))(@types/react@18.3.23)(react-dom@18.0.0(react@18.3.1))(react@18.3.1)
'@itwin/appui-react':
specifier: ^5.15.0
version: 5.15.0(34023513270025ca41b1821a63b8da5f)
'@itwin/changed-elements-react':
specifier: workspace:*
version: link:../changed-elements-react
'@itwin/components-react':
specifier: ^5.15.0
version: 5.15.0(@itwin/appui-abstract@5.1.7(@itwin/core-bentley@5.1.7))(@itwin/core-bentley@5.1.7)(@itwin/core-react@5.15.0(@itwin/appui-abstract@5.1.7(@itwin/core-bentley@5.1.7))(@itwin/core-bentley@5.1.7)(@itwin/itwinui-react@3.19.4(react-dom@18.0.0(react@18.3.1))(react@18.3.1))(react-dom@18.0.0(react@18.3.1))(react@18.3.1))(@itwin/itwinui-react@3.19.4(react-dom@18.0.0(react@18.3.1))(react@18.3.1))(react-dom@18.0.0(react@18.3.1))(react@18.3.1)
'@itwin/core-bentley':
specifier: ^5.1.7
version: 5.1.7
'@itwin/core-common':
specifier: ^5.1.7
version: 5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-geometry@5.1.7)
'@itwin/core-frontend':
specifier: ^5.1.7
version: 5.1.7(@itwin/appui-abstract@5.1.7(@itwin/core-bentley@5.1.7))(@itwin/core-bentley@5.1.7)(@itwin/core-common@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-geometry@5.1.7))(@itwin/core-geometry@5.1.7)(@itwin/core-orbitgt@5.1.7)(@itwin/core-quantity@5.1.7(@itwin/core-bentley@5.1.7))(@itwin/ecschema-metadata@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-quantity@5.1.7(@itwin/core-bentley@5.1.7)))(@itwin/ecschema-rpcinterface-common@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-common@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-geometry@5.1.7))(@itwin/core-geometry@5.1.7)(@itwin/ecschema-metadata@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-quantity@5.1.7(@itwin/core-bentley@5.1.7))))(inversify@6.0.3)(reflect-metadata@0.1.14)
'@itwin/core-i18n':
specifier: ^5.1.7
version: 5.1.7(@itwin/core-bentley@5.1.7)
'@itwin/core-orbitgt':
specifier: ^5.1.7
version: 5.1.7
'@itwin/core-react':
specifier: ^5.15.0
version: 5.15.0(@itwin/appui-abstract@5.1.7(@itwin/core-bentley@5.1.7))(@itwin/core-bentley@5.1.7)(@itwin/itwinui-react@3.19.4(react-dom@18.0.0(react@18.3.1))(react@18.3.1))(react-dom@18.0.0(react@18.3.1))(react@18.3.1)
'@itwin/ecschema-metadata':
specifier: ^5.1.7
version: 5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-quantity@5.1.7(@itwin/core-bentley@5.1.7))
'@itwin/ecschema-rpcinterface-common':
specifier: ^5.1.7
version: 5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-common@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-geometry@5.1.7))(@itwin/core-geometry@5.1.7)(@itwin/ecschema-metadata@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-quantity@5.1.7(@itwin/core-bentley@5.1.7)))
'@itwin/imodel-components-react':
specifier: ^5.15.0
version: 5.15.0(3a39819c327d2af6316bd333dab7fe89)
'@itwin/imodels-access-frontend':
specifier: ^6.0.1
version: 6.0.1(@itwin/core-bentley@5.1.7)(@itwin/core-frontend@5.1.7(@itwin/appui-abstract@5.1.7(@itwin/core-bentley@5.1.7))(@itwin/core-bentley@5.1.7)(@itwin/core-common@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-geometry@5.1.7))(@itwin/core-geometry@5.1.7)(@itwin/core-orbitgt@5.1.7)(@itwin/core-quantity@5.1.7(@itwin/core-bentley@5.1.7))(@itwin/ecschema-metadata@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-quantity@5.1.7(@itwin/core-bentley@5.1.7)))(@itwin/ecschema-rpcinterface-common@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-common@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-geometry@5.1.7))(@itwin/core-geometry@5.1.7)(@itwin/ecschema-metadata@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-quantity@5.1.7(@itwin/core-bentley@5.1.7))))(inversify@6.0.3)(reflect-metadata@0.1.14))
'@itwin/imodels-client-management':
specifier: ^6.0.1
version: 6.0.1
'@itwin/itwinui-icons-react':
specifier: ^2.11.0
version: 2.11.0(react-dom@18.0.0(react@18.3.1))(react@18.3.1)
'@itwin/itwinui-illustrations-react':
specifier: ^2.1.0
version: 2.1.0(react-dom@18.0.0(react@18.3.1))(react@18.3.1)
'@itwin/itwinui-layouts-css':
specifier: ^0.4.0
version: 0.4.0
'@itwin/itwinui-layouts-react':
specifier: ^0.4.1
version: 0.4.1(react-dom@18.0.0(react@18.3.1))(react@18.3.1)
'@itwin/itwinui-react':
specifier: ^3.19.4
version: 3.19.4(react-dom@18.0.0(react@18.3.1))(react@18.3.1)
'@itwin/presentation-common':
specifier: ^5.1.7
version: 5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-common@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-geometry@5.1.7))(@itwin/core-quantity@5.1.7(@itwin/core-bentley@5.1.7))(@itwin/ecschema-metadata@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-quantity@5.1.7(@itwin/core-bentley@5.1.7)))
'@itwin/presentation-components':
specifier: ^5.12.8
version: 5.12.8(a577cdd53e981fdb92f87ae8ed89d2d9)
'@itwin/presentation-core-interop':
specifier: ^1.3.4
version: 1.3.4(@itwin/core-bentley@5.1.7)(@itwin/core-common@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-geometry@5.1.7))(@itwin/core-geometry@5.1.7)(@itwin/core-quantity@5.1.7(@itwin/core-bentley@5.1.7))(@itwin/ecschema-metadata@5.1.7(@itwin/core-bentley@5.1.7)(@itwin/core-quantity@5.1.7(@itwin/core-bentley@5.1.7)))
'@itwin/presentation-frontend':
specifier: ^5.1.7
version: 5.1.7(7422efa7e272cb0d813637cc4e15a58f)
'@itwin/presentation-shared':
specifier: ^1.2.3
version: 1.2.3
'@itwin/unified-selection':
specifier: ^1.5.1
version: 1.5.1
'@itwin/unified-selection-react':
specifier: ^1.0.1
version: 1.0.1(@itwin/unified-selection@1.5.1)(react-dom@18.0.0(react@18.3.1))(react@18.3.1)
'@types/dotenv-flow':
specifier: ^3.2.0
version: 3.3.3
'@types/react':
specifier: ^18.0.0
version: 18.3.23
'@types/react-dom':
specifier: ^18.0.0
version: 18.3.7(@types/react@18.3.23)
'@types/react-redux':
specifier: ^7.1.25
version: 7.1.34
'@vitejs/plugin-react-swc':
specifier: ^3.7.1
version: 3.10.2(@swc/helpers@0.5.17)(vite@5.4.19(@types/node@18.19.119)(sass@1.89.2))
dotenv-flow:
specifier: ^3.2.0
version: 3.3.0
oidc-client-ts:
specifier: ^2.2.4
version: 2.4.1
react:
specifier: ^18.0.0
version: 18.3.1
react-dom:
specifier: 18.0.0
version: 18.0.0(react@18.3.1)
react-redux:
specifier: ^7.2.2
version: 7.2.9(react-dom@18.0.0(react@18.3.1))(react@18.3.1)
react-router-dom:
specifier: ^6.11.2
version: 6.30.1(react-dom@18.0.0(react@18.3.1))(react@18.3.1)
redux:
specifier: ^4.1.0
version: 4.2.1
sass:
specifier: ^1.62.1
version: 1.89.2
typescript:
specifier: ~5.5.4
version: 5.5.4
vite:
specifier: ^5.4.18
version: 5.4.19(@types/node@18.19.119)(sass@1.89.2)
vite-plugin-static-copy:
specifier: ^1.0.6
version: 1.0.6(vite@5.4.19(@types/node@18.19.119)(sass@1.89.2))
vite-tsconfig-paths:
specifier: ^5.1.4
version: 5.1.4(typescript@5.5.4)(vite@5.4.19(@types/node@18.19.119)(sass@1.89.2))
packages:
'@ampproject/remapping@2.3.0':
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
'@azure/abort-controller@2.1.2':
resolution: {integrity: sha512-nBrLsEWm4J2u5LpAPjxADTlq3trDgVZZXHNKabeXZtpq3d3AbN/KGO82R87rdDz5/lYB024rtEf10/q0urNgsA==}
engines: {node: '>=18.0.0'}
'@azure/core-auth@1.10.0':
resolution: {integrity: sha512-88Djs5vBvGbHQHf5ZZcaoNHo6Y8BKZkt3cw2iuJIQzLEgH4Ox6Tm4hjFhbqOxyYsgIG/eJbFEHpxRIfEEWv5Ow==}
engines: {node: '>=20.0.0'}
'@azure/core-client@1.10.0':
resolution: {integrity: sha512-O4aP3CLFNodg8eTHXECaH3B3CjicfzkxVtnrfLkOq0XNP7TIECGfHpK/C6vADZkWP75wzmdBnsIA8ksuJMk18g==}
engines: {node: '>=20.0.0'}
'@azure/core-http-compat@2.3.0':
resolution: {integrity: sha512-qLQujmUypBBG0gxHd0j6/Jdmul6ttl24c8WGiLXIk7IHXdBlfoBqW27hyz3Xn6xbfdyVSarl1Ttbk0AwnZBYCw==}
engines: {node: '>=18.0.0'}
'@azure/core-lro@2.7.2':
resolution: {integrity: sha512-0YIpccoX8m/k00O7mDDMdJpbr6mf1yWo2dfmxt5A8XVZVVMz2SSKaEbMCeJRvgQ0IaSlqhjT47p4hVIRRy90xw==}
engines: {node: '>=18.0.0'}
'@azure/core-paging@1.6.2':
resolution: {integrity: sha512-YKWi9YuCU04B55h25cnOYZHxXYtEvQEbKST5vqRga7hWY9ydd3FZHdeQF8pyh+acWZvppw13M/LMGx0LABUVMA==}
engines: {node: '>=18.0.0'}
'@azure/core-rest-pipeline@1.22.0':
resolution: {integrity: sha512-OKHmb3/Kpm06HypvB3g6Q3zJuvyXcpxDpCS1PnU8OV6AJgSFaee/covXBcPbWc6XDDxtEPlbi3EMQ6nUiPaQtw==}
engines: {node: '>=20.0.0'}
'@azure/core-tracing@1.3.0':
resolution: {integrity: sha512-+XvmZLLWPe67WXNZo9Oc9CrPj/Tm8QnHR92fFAFdnbzwNdCH1h+7UdpaQgRSBsMY+oW1kHXNUZQLdZ1gHX3ROw==}
engines: {node: '>=20.0.0'}
'@azure/core-util@1.13.0':
resolution: {integrity: sha512-o0psW8QWQ58fq3i24Q1K2XfS/jYTxr7O1HRcyUE9bV9NttLU+kYOH82Ixj8DGlMTOWgxm1Sss2QAfKK5UkSPxw==}
engines: {node: '>=20.0.0'}
'@azure/core-xml@1.5.0':
resolution: {integrity: sha512-D/sdlJBMJfx7gqoj66PKVmhDDaU6TKA49ptcolxdas29X7AfvLTmfAGLjAcIMBK7UZ2o4lygHIqVckOlQU3xWw==}
engines: {node: '>=20.0.0'}
'@azure/logger@1.3.0':
resolution: {integrity: sha512-fCqPIfOcLE+CGqGPd66c8bZpwAji98tZ4JI9i/mlTNTlsIWslCfpg48s/ypyLxZTump5sypjrKn2/kY7q8oAbA==}
engines: {node: '>=20.0.0'}
'@azure/storage-blob@12.27.0':
resolution: {integrity: sha512-IQjj9RIzAKatmNca3D6bT0qJ+Pkox1WZGOg2esJF2YLHb45pQKOwGPIAV+w3rfgkj7zV3RMxpn/c6iftzSOZJQ==}
engines: {node: '>=18.0.0'}
'@babel/code-frame@7.27.1':
resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
engines: {node: '>=6.9.0'}
'@babel/helper-string-parser@7.27.1':
resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-identifier@7.27.1':
resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==}
engines: {node: '>=6.9.0'}
'@babel/parser@7.28.0':
resolution: {integrity: sha512-jVZGvOxOuNSsuQuLRTh13nU0AogFlw32w/MT+LV6D3sP5WdbW61E77RnkbaO2dUvmPAYrBDJXGn5gGS6tH4j8g==}
engines: {node: '>=6.0.0'}
hasBin: true
'@babel/runtime@7.27.6':
resolution: {integrity: sha512-vbavdySgbTTrmFE+EsiqUTzlOr5bzlnJtUv9PynGCAKvfQqjIXbvFdumPM/GxMDfyuGMJaJAU6TO4zc1Jf1i8Q==}
engines: {node: '>=6.9.0'}
'@babel/types@7.28.1':
resolution: {integrity: sha512-x0LvFTekgSX+83TI28Y9wYPUfzrnl2aT5+5QLnO6v7mSJYtEEevuDRN0F0uSHRk1G1IWZC43o00Y0xDDrpBGPQ==}
engines: {node: '>=6.9.0'}
'@bcoe/v8-coverage@0.2.3':
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
'@bentley/icons-generic-webfont@1.0.34':
resolution: {integrity: sha512-5zZgs+himE2vjf39CVlDXMHCFAwSfcoORqJBk3Vji8QVCF8AIX4IX2DO6HlsIAM7szxMNqhz1kd07Xfppro6MA==}
'@bentley/imodeljs-native@5.1.72':
resolution: {integrity: sha512-/btzYNckaZ0gule13PhbpgeTwPEv/NW29jtTuXV8Ng/lpyW5SSydv0/OqCH+x92CaOyrvt65jnMsR5bCZjT8uA==}
'@changesets/apply-release-plan@7.0.12':
resolution: {integrity: sha512-EaET7As5CeuhTzvXTQCRZeBUcisoYPDDcXvgTE/2jmmypKp0RC7LxKj/yzqeh/1qFTZI7oDGFcL1PHRuQuketQ==}
'@changesets/assemble-release-plan@6.0.9':
resolution: {integrity: sha512-tPgeeqCHIwNo8sypKlS3gOPmsS3wP0zHt67JDuL20P4QcXiw/O4Hl7oXiuLnP9yg+rXLQ2sScdV1Kkzde61iSQ==}
'@changesets/changelog-git@0.2.1':
resolution: {integrity: sha512-x/xEleCFLH28c3bQeQIyeZf8lFXyDFVn1SgcBiR2Tw/r4IAWlk1fzxCEZ6NxQAjF2Nwtczoen3OA2qR+UawQ8Q==}
'@changesets/cli@2.29.5':
resolution: {integrity: sha512-0j0cPq3fgxt2dPdFsg4XvO+6L66RC0pZybT9F4dG5TBrLA3jA/1pNkdTXH9IBBVHkgsKrNKenI3n1mPyPlIydg==}
hasBin: true
'@changesets/config@3.1.1':
resolution: {integrity: sha512-bd+3Ap2TKXxljCggI0mKPfzCQKeV/TU4yO2h2C6vAihIo8tzseAn2e7klSuiyYYXvgu53zMN1OeYMIQkaQoWnA==}
'@changesets/errors@0.2.0':
resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==}
'@changesets/get-dependents-graph@2.1.3':
resolution: {integrity: sha512-gphr+v0mv2I3Oxt19VdWRRUxq3sseyUpX9DaHpTUmLj92Y10AGy+XOtV+kbM6L/fDcpx7/ISDFK6T8A/P3lOdQ==}
'@changesets/get-release-plan@4.0.13':
resolution: {integrity: sha512-DWG1pus72FcNeXkM12tx+xtExyH/c9I1z+2aXlObH3i9YA7+WZEVaiHzHl03thpvAgWTRaH64MpfHxozfF7Dvg==}
'@changesets/get-version-range-type@0.4.0':
resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==}
'@changesets/git@3.0.4':
resolution: {integrity: sha512-BXANzRFkX+XcC1q/d27NKvlJ1yf7PSAgi8JG6dt8EfbHFHi4neau7mufcSca5zRhwOL8j9s6EqsxmT+s+/E6Sw==}
'@changesets/logger@0.1.1':
resolution: {integrity: sha512-OQtR36ZlnuTxKqoW4Sv6x5YIhOmClRd5pWsjZsddYxpWs517R0HkyiefQPIytCVh4ZcC5x9XaG8KTdd5iRQUfg==}
'@changesets/parse@0.4.1':
resolution: {integrity: sha512-iwksMs5Bf/wUItfcg+OXrEpravm5rEd9Bf4oyIPL4kVTmJQ7PNDSd6MDYkpSJR1pn7tz/k8Zf2DhTCqX08Ou+Q==}
'@changesets/pre@2.0.2':
resolution: {integrity: sha512-HaL/gEyFVvkf9KFg6484wR9s0qjAXlZ8qWPDkTyKF6+zqjBe/I2mygg3MbpZ++hdi0ToqNUF8cjj7fBy0dg8Ug==}
'@changesets/read@0.6.5':
resolution: {integrity: sha512-UPzNGhsSjHD3Veb0xO/MwvasGe8eMyNrR/sT9gR8Q3DhOQZirgKhhXv/8hVsI0QpPjR004Z9iFxoJU6in3uGMg==}
'@changesets/should-skip-package@0.1.2':
resolution: {integrity: sha512-qAK/WrqWLNCP22UDdBTMPH5f41elVDlsNyat180A33dWxuUDyNpg6fPi/FyTZwRriVjg0L8gnjJn2F9XAoF0qw==}
'@changesets/types@4.1.0':
resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==}
'@changesets/types@6.0.0':
resolution: {integrity: sha512-b1UkfNulgKoWfqyHtzKS5fOZYSJO+77adgL7DLRDr+/7jhChN+QcHnbjiQVOz/U+Ts3PGNySq7diAItzDgugfQ==}
'@changesets/types@6.1.0':
resolution: {integrity: sha512-rKQcJ+o1nKNgeoYRHKOS07tAMNd3YSN0uHaJOZYjBAgxfV7TUE7JE+z4BzZdQwb5hKaYbayKN5KrYV7ODb2rAA==}
'@changesets/write@0.4.0':
resolution: {integrity: sha512-CdTLvIOPiCNuH71pyDu3rA+Q0n65cmAbXnwWH84rKGiFumFzkmHNT8KHTMEchcxN+Kl8I54xGUhJ7l3E7X396Q==}
'@cspotcode/source-map-support@0.8.1':
resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
engines: {node: '>=12'}
'@esbuild/aix-ppc64@0.25.6':
resolution: {integrity: sha512-ShbM/3XxwuxjFiuVBHA+d3j5dyac0aEVVq1oluIDf71hUw0aRF59dV/efUsIwFnR6m8JNM2FjZOzmaZ8yG61kw==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
'@esbuild/android-arm64@0.25.6':
resolution: {integrity: sha512-hd5zdUarsK6strW+3Wxi5qWws+rJhCCbMiC9QZyzoxfk5uHRIE8T287giQxzVpEvCwuJ9Qjg6bEjcRJcgfLqoA==}
engines: {node: '>=18'}
cpu: [arm64]
os: [android]
'@esbuild/android-arm@0.25.6':
resolution: {integrity: sha512-S8ToEOVfg++AU/bHwdksHNnyLyVM+eMVAOf6yRKFitnwnbwwPNqKr3srzFRe7nzV69RQKb5DgchIX5pt3L53xg==}
engines: {node: '>=18'}
cpu: [arm]
os: [android]
'@esbuild/android-x64@0.25.6':
resolution: {integrity: sha512-0Z7KpHSr3VBIO9A/1wcT3NTy7EB4oNC4upJ5ye3R7taCc2GUdeynSLArnon5G8scPwaU866d3H4BCrE5xLW25A==}
engines: {node: '>=18'}
cpu: [x64]
os: [android]
'@esbuild/darwin-arm64@0.25.6':
resolution: {integrity: sha512-FFCssz3XBavjxcFxKsGy2DYK5VSvJqa6y5HXljKzhRZ87LvEi13brPrf/wdyl/BbpbMKJNOr1Sd0jtW4Ge1pAA==}
engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
'@esbuild/darwin-x64@0.25.6':
resolution: {integrity: sha512-GfXs5kry/TkGM2vKqK2oyiLFygJRqKVhawu3+DOCk7OxLy/6jYkWXhlHwOoTb0WqGnWGAS7sooxbZowy+pK9Yg==}
engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
'@esbuild/freebsd-arm64@0.25.6':
resolution: {integrity: sha512-aoLF2c3OvDn2XDTRvn8hN6DRzVVpDlj2B/F66clWd/FHLiHaG3aVZjxQX2DYphA5y/evbdGvC6Us13tvyt4pWg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
'@esbuild/freebsd-x64@0.25.6':
resolution: {integrity: sha512-2SkqTjTSo2dYi/jzFbU9Plt1vk0+nNg8YC8rOXXea+iA3hfNJWebKYPs3xnOUf9+ZWhKAaxnQNUf2X9LOpeiMQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
'@esbuild/linux-arm64@0.25.6':
resolution: {integrity: sha512-b967hU0gqKd9Drsh/UuAm21Khpoh6mPBSgz8mKRq4P5mVK8bpA+hQzmm/ZwGVULSNBzKdZPQBRT3+WuVavcWsQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [linux]
'@esbuild/linux-arm@0.25.6':
resolution: {integrity: sha512-SZHQlzvqv4Du5PrKE2faN0qlbsaW/3QQfUUc6yO2EjFcA83xnwm91UbEEVx4ApZ9Z5oG8Bxz4qPE+HFwtVcfyw==}
engines: {node: '>=18'}
cpu: [arm]
os: [linux]
'@esbuild/linux-ia32@0.25.6':
resolution: {integrity: sha512-aHWdQ2AAltRkLPOsKdi3xv0mZ8fUGPdlKEjIEhxCPm5yKEThcUjHpWB1idN74lfXGnZ5SULQSgtr5Qos5B0bPw==}
engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
'@esbuild/linux-loong64@0.25.6':
resolution: {integrity: sha512-VgKCsHdXRSQ7E1+QXGdRPlQ/e08bN6WMQb27/TMfV+vPjjTImuT9PmLXupRlC90S1JeNNW5lzkAEO/McKeJ2yg==}
engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
'@esbuild/linux-mips64el@0.25.6':
resolution: {integrity: sha512-WViNlpivRKT9/py3kCmkHnn44GkGXVdXfdc4drNmRl15zVQ2+D2uFwdlGh6IuK5AAnGTo2qPB1Djppj+t78rzw==}
engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
'@esbuild/linux-ppc64@0.25.6':
resolution: {integrity: sha512-wyYKZ9NTdmAMb5730I38lBqVu6cKl4ZfYXIs31Baf8aoOtB4xSGi3THmDYt4BTFHk7/EcVixkOV2uZfwU3Q2Jw==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
'@esbuild/linux-riscv64@0.25.6':
resolution: {integrity: sha512-KZh7bAGGcrinEj4qzilJ4hqTY3Dg2U82c8bv+e1xqNqZCrCyc+TL9AUEn5WGKDzm3CfC5RODE/qc96OcbIe33w==}
engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
'@esbuild/linux-s390x@0.25.6':
resolution: {integrity: sha512-9N1LsTwAuE9oj6lHMyyAM+ucxGiVnEqUdp4v7IaMmrwb06ZTEVCIs3oPPplVsnjPfyjmxwHxHMF8b6vzUVAUGw==}
engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
'@esbuild/linux-x64@0.25.6':
resolution: {integrity: sha512-A6bJB41b4lKFWRKNrWoP2LHsjVzNiaurf7wyj/XtFNTsnPuxwEBWHLty+ZE0dWBKuSK1fvKgrKaNjBS7qbFKig==}
engines: {node: '>=18'}
cpu: [x64]
os: [linux]
'@esbuild/netbsd-arm64@0.25.6':
resolution: {integrity: sha512-IjA+DcwoVpjEvyxZddDqBY+uJ2Snc6duLpjmkXm/v4xuS3H+3FkLZlDm9ZsAbF9rsfP3zeA0/ArNDORZgrxR/Q==}
engines: {node: '>=18'}
cpu: [arm64]
os: [netbsd]
'@esbuild/netbsd-x64@0.25.6':
resolution: {integrity: sha512-dUXuZr5WenIDlMHdMkvDc1FAu4xdWixTCRgP7RQLBOkkGgwuuzaGSYcOpW4jFxzpzL1ejb8yF620UxAqnBrR9g==}
engines: {node: '>=18'}
cpu: [x64]
os: [netbsd]
'@esbuild/openbsd-arm64@0.25.6':
resolution: {integrity: sha512-l8ZCvXP0tbTJ3iaqdNf3pjaOSd5ex/e6/omLIQCVBLmHTlfXW3zAxQ4fnDmPLOB1x9xrcSi/xtCWFwCZRIaEwg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
'@esbuild/openbsd-x64@0.25.6':
resolution: {integrity: sha512-hKrmDa0aOFOr71KQ/19JC7az1P0GWtCN1t2ahYAf4O007DHZt/dW8ym5+CUdJhQ/qkZmI1HAF8KkJbEFtCL7gw==}
engines: {node: '>=18'}
cpu: [x64]
os: [openbsd]
'@esbuild/openharmony-arm64@0.25.6':
resolution: {integrity: sha512-+SqBcAWoB1fYKmpWoQP4pGtx+pUUC//RNYhFdbcSA16617cchuryuhOCRpPsjCblKukAckWsV+aQ3UKT/RMPcA==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openharmony]
'@esbuild/sunos-x64@0.25.6':
resolution: {integrity: sha512-dyCGxv1/Br7MiSC42qinGL8KkG4kX0pEsdb0+TKhmJZgCUDBGmyo1/ArCjNGiOLiIAgdbWgmWgib4HoCi5t7kA==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
'@esbuild/win32-arm64@0.25.6':
resolution: {integrity: sha512-42QOgcZeZOvXfsCBJF5Afw73t4veOId//XD3i+/9gSkhSV6Gk3VPlWncctI+JcOyERv85FUo7RxuxGy+z8A43Q==}
engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
'@esbuild/win32-ia32@0.25.6':
resolution: {integrity: sha512-4AWhgXmDuYN7rJI6ORB+uU9DHLq/erBbuMoAuB4VWJTu5KtCgcKYPynF0YI1VkBNuEfjNlLrFr9KZPJzrtLkrQ==}
engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
'@esbuild/win32-x64@0.25.6':
resolution: {integrity: sha512-NgJPHHbEpLQgDH2MjQu90pzW/5vvXIZ7KOnPyNBm92A6WgZ/7b6fJyUBjoumLqeOQQGqY2QjQxRo97ah4Sj0cA==}
engines: {node: '>=18'}
cpu: [x64]
os: [win32]
'@eslint-community/eslint-utils@4.7.0':
resolution: {integrity: sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==}
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.12.1':
resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
'@eslint/eslintrc@2.1.4':
resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
'@eslint/js@8.57.1':
resolution: {integrity: sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
'@floating-ui/core@1.7.2':
resolution: {integrity: sha512-wNB5ooIKHQc+Kui96jE/n69rHFWAVoxn5CAzL1Xdd8FG03cgY3MLO+GF9U3W737fYDSgPWA6MReKhBQBop6Pcw==}
'@floating-ui/dom@1.7.2':
resolution: {integrity: sha512-7cfaOQuCS27HD7DX+6ib2OrnW+b4ZBwDNnCcT0uTyidcmyWb03FnQqJybDBoCnpdxwBSfA94UAYlRCt7mV+TbA==}
'@floating-ui/react-dom@2.1.4':
resolution: {integrity: sha512-JbbpPhp38UmXDDAu60RJmbeme37Jbgsm7NrHGgzYYFKmblzRUh6Pa641dII6LsjwF4XlScDrde2UAzDo/b9KPw==}
peerDependencies:
react: '>=16.8.0'
react-dom: '>=16.8.0'
'@floating-ui/react@0.27.13':
resolution: {integrity: sha512-Qmj6t9TjgWAvbygNEu1hj4dbHI9CY0ziCMIJrmYoDIn9TUAH5lRmiIeZmRd4c6QEZkzdoH7jNnoNyoY1AIESiA==}
peerDependencies:
react: '>=17.0.0'
react-dom: '>=17.0.0'
'@floating-ui/utils@0.2.10':
resolution: {integrity: sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==}
'@google-cloud/paginator@5.0.2':
resolution: {integrity: sha512-DJS3s0OVH4zFDB1PzjxAsHqJT6sKVbRwwML0ZBP9PbU7Yebtu/7SWMRzvO2J3nUi9pRNITCfu4LJeooM2w4pjg==}
engines: {node: '>=14.0.0'}
'@google-cloud/projectify@4.0.0':
resolution: {integrity: sha512-MmaX6HeSvyPbWGwFq7mXdo0uQZLGBYCwziiLIGq5JVX+/bdI3SAq6bP98trV5eTWfLuvsMcIC1YJOF2vfteLFA==}
engines: {node: '>=14.0.0'}
'@google-cloud/promisify@4.0.0':
resolution: {integrity: sha512-Orxzlfb9c67A15cq2JQEyVc7wEsmFBmHjZWZYQMUyJ1qivXyMwdyNOs9odi79hze+2zqdTtu1E19IM/FtqZ10g==}
engines: {node: '>=14'}
'@google-cloud/storage-control@0.2.1':
resolution: {integrity: sha512-NK2y/xn13t+6WnOFo9WFsIJbOw5slAnN+MJVZmemz+4JEpDBVIQAt2SqRBS/rKulz2qFbxwIyoBLnj4wb7IZcQ==}
engines: {node: '>=14.0.0'}
'@google-cloud/storage@7.16.0':
resolution: {integrity: sha512-7/5LRgykyOfQENcm6hDKP8SX/u9XxE5YOiWOkgkwcoO+cG8xT/cyOvp9wwN3IxfdYgpHs8CE7Nq2PKX2lNaEXw==}
engines: {node: '>=14'}
'@grpc/grpc-js@1.13.4':
resolution: {integrity: sha512-GsFaMXCkMqkKIvwCQjCrwH+GHbPKBjhwo/8ZuUkWHqbI73Kky9I+pQltrlT0+MWpedCoosda53lgjYfyEPgxBg==}
engines: {node: '>=12.10.0'}
'@grpc/proto-loader@0.7.15':
resolution: {integrity: sha512-tMXdRCfYVixjuFK+Hk0Q1s38gV9zDiDJfWL3h1rv4Qc39oILCu1TRTDt7+fGUI8K4G1Fj125Hx/ru3azECWTyQ==}
engines: {node: '>=6'}
hasBin: true
'@humanwhocodes/config-array@0.13.0':
resolution: {integrity: sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==}
engines: {node: '>=10.10.0'}
deprecated: Use @eslint/config-array instead
'@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==}
deprecated: Use @eslint/object-schema instead
'@inversifyjs/common@1.5.2':
resolution: {integrity: sha512-WlzR9xGadABS9gtgZQ+luoZ8V6qm4Ii6RQfcfC9Ho2SOlE6ZuemFo7PKJvKI0ikm8cmKbU8hw5UK6E4qovH21w==}
'@inversifyjs/container@1.13.0':
resolution: {integrity: sha512-bnacT6u3oihcGoUKhy2RTB96QPA/2CQHgiXYNpN4Ydd21SeN4FfDrZKu0TQf0uHMOSDc5mCi3PUifje7M/61qg==}
peerDependencies:
reflect-metadata: ~0.2.2
'@inversifyjs/core@9.0.0':
resolution: {integrity: sha512-V/s1iM4hhUkJfRZoq5LCVKKXztO5rvBJi4og8arcfK1k3DInL08/HJ5rG/dPZz5f2reBbGM0KzVxyz3/rIySvQ==}
'@inversifyjs/plugin@0.2.0':
resolution: {integrity: sha512-R/JAdkTSD819pV1zi0HP54mWHyX+H2m8SxldXRgPQarS3ySV4KPyRdosWcfB8Se0JJZWZLHYiUNiS6JvMWSPjw==}
'@inversifyjs/prototype-utils@0.1.2':
resolution: {integrity: sha512-WZAEycwVd8zVCPCQ7GRzuQmjYF7X5zbjI9cGigDbBoTHJ8y5US9om00IAp0RYislO+fYkMzgcB2SnlIVIzyESA==}
'@inversifyjs/reflect-metadata-utils@1.4.0':
resolution: {integrity: sha512-J+Wb0dcFEkdCtPODH7dG/EwWyaEGIj/RPoBHrH4A8dxaV8QdJ97rSDnHk7nbJ/KKZ2K0lI+7J+POA6EGNd8V3w==}
peerDependencies:
reflect-metadata: 0.2.2
'@isaacs/cliui@8.0.2':
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
engines: {node: '>=12'}
'@istanbuljs/schema@0.1.3':
resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==}
engines: {node: '>=8'}
'@itwin/appui-abstract@5.1.7':
resolution: {integrity: sha512-kApZL9gXNjykfCPeZGyku/Crjw13oE8NQcyiAg07J3pp/l5wyLlLeT2iiXQnR6vtYzeXtqxJYbP/2+fksilMYg==}
peerDependencies:
'@itwin/core-bentley': ^5.1.7
'@itwin/appui-layout-react@4.8.3':
resolution: {integrity: sha512-7jyEefXWeOXMxREE5+dON2IJ3KercWz7xkMvHSXzHZARjedHZRZKgrgMM5QETrEsRNDixxp0em23mIzwCpVSRg==}
peerDependencies:
'@itwin/appui-abstract': ^5.1.7
'@itwin/core-bentley': ^5.1.7
'@itwin/core-react': ^5.15.0
react: ^17.0.0 || ^18.0.0
react-dom: ^17.0.0 || ^18.0.0
'@itwin/appui-react@5.15.0':
resolution: {integrity: sha512-VCYruRL7Uk706wgF672VKMaB5bKsFRQ/D0TUATw5/LGlMYkIKye/uWtjh0zc9CM1eyQBRaXw8QbI4BeMuD+EIA==}
peerDependencies:
'@itwin/appui-abstract': ^5.1.7
'@itwin/components-react': 5.15.0
'@itwin/core-bentley': ^5.1.7
'@itwin/core-common': ^4.0.0 || ^5.0.0
'@itwin/core-frontend': ^4.0.0 || ^5.0.0
'@itwin/core-geometry': ^4.0.0 || ^5.0.0
'@itwin/core-quantity': ^5.1.7
'@itwin/core-react': ^5.15.0
'@itwin/imodel-components-react': 5.15.0
'@itwin/itwinui-react': ^3.15.0
react: ^18.0.0
react-dom: ^18.0.0
react-redux: ^7.2.2 || ^8.0.0 || ^9.0.0
redux: ^4.1.0 || ^5.0.0
'@itwin/cloud-agnostic-core@2.3.0':
resolution: {integrity: sha512-oFSaERSqnuXtpzJ/dX61/p47eFoNoZ3NG0F9NUpndmiErVYba8aEnlVHQqXBQb5kycXBd7c9a5Ihnif1ussLLw==}
peerDependencies:
inversify: ^6.0.1
reflect-metadata: ^0.1.13
peerDependenciesMeta:
inversify:
optional: true
reflect-metadata:
optional: true
'@itwin/cloud-agnostic-core@3.0.1':
resolution: {integrity: sha512-a1us0rMcRPw9st5itdfBHvMszplY5T5E/QQq6oJmPAX1kHsQY6GJMSryOflQ0klVq1sYkyBlLYlVWDYMzqv8YA==}
peerDependencies:
inversify: ^7.5.2
reflect-metadata: ^0.2.2
peerDependenciesMeta:
inversify:
optional: true
reflect-metadata:
optional: true
'@itwin/cloud-agnostic-core@3.0.2':
resolution: {integrity: sha512-olyf+i/iWDjXBFcYHodZKa4inh5bpB54K/phi75ayhmyoViuT1dtKI34E2EHm3Xpdvlj/rUf/CK04rK9mCndNQ==}
peerDependencies:
inversify: ^7.5.2
reflect-metadata: ^0.2.2
peerDependenciesMeta:
inversify:
optional: true
reflect-metadata:
optional: true
'@itwin/components-react@5.15.0':
resolution: {integrity: sha512-bSlzGi/ib4mBrhvVO5A3zikFedsfICOLkn5bxhvfg1MLKY6AzLAkpn3kwdNkMddAsRAe3o6o6aNcrgnzlv8oDg==}
peerDependencies:
'@itwin/appui-abstract': ^5.1.7
'@itwin/core-bentley': ^5.1.7
'@itwin/core-react': ^5.15.0
'@itwin/itwinui-react': ^3.15.0
react: ^18.0.0
react-dom: ^18.0.0
'@itwin/core-backend@5.1.7':
resolution: {integrity: sha512-zm2GuSBEHau+XN0LMyVE5t/5Lp5tZh4Eqe3Hd+Lfmbh6vi9AhuupsbbFmNHzSHw3nZniSlzJ2voWJFTqwWULtw==}
engines: {node: ^20.0.0 || ^22.0.0}
peerDependencies:
'@itwin/core-bentley': ^5.1.7
'@itwin/core-common': 5.1.7
'@itwin/core-geometry': 5.1.7
'@itwin/ecschema-metadata': 5.1.7
'@opentelemetry/api': ^1.0.4
peerDependenciesMeta:
'@opentelemetry/api':
optional: true
'@itwin/core-bentley@5.1.7':
resolution: {integrity: sha512-tmkuYNbJ5lEFMQjdsLCmmo56B60x2PpuK32GWgL0dB5Ea5h5j7NUU/Yjf2ekLNYuXE7KOBa1cSMiHEb1X5wQfQ==}
'@itwin/core-common@5.1.7':
resolution: {integrity: sha512-+irTUPbuPtuLtyh+dIOcwAXQ/jg6JuRrK/vgoFLUtZRx6NOSheJgAow4G2m5LOZh3ngjCq7WFDQqBRrPaW8J5g==}
peerDependencies:
'@itwin/core-bentley': ^5.1.7
'@itwin/core-geometry': 5.1.7
'@itwin/core-frontend@5.1.7':
resolution: {integrity: sha512-DH5DJLxAugc64di9W0xV8G/1UDjErn0Iw4e6hQ5QjuD8/VkqSZlQJ+Ny6WoPPXbB6U9/RgFb5XCRk7pTK6pFqg==}
peerDependencies:
'@itwin/appui-abstract': ^5.1.7
'@itwin/core-bentley': ^5.1.7
'@itwin/core-common': 5.1.7
'@itwin/core-geometry': 5.1.7
'@itwin/core-orbitgt': 5.1.7
'@itwin/core-quantity': ^5.1.7
'@itwin/ecschema-metadata': 5.1.7
'@itwin/ecschema-rpcinterface-common': 5.1.7
'@itwin/core-geometry@5.1.7':
resolution: {integrity: sha512-XqNKiSmAFlMHyHPS51jb4FRocdgPnrtCDGbuYm7VE9rQWw9sTIh4yoBnTCfVSwpZf+PN0r3aS4sbHlNsLy9PmA==}
'@itwin/core-i18n@5.1.7':
resolution: {integrity: sha512-RZfxVIHpedrmYW+JIej1eMwT2nL4TyrLzSVeYUOcZkkJtHU+uU96xm0l/E88Ijl69YUfAUcdgBz4qXF+QevrFg==}
peerDependencies:
'@itwin/core-bentley': ^5.1.7
'@itwin/core-orbitgt@5.1.7':
resolution: {integrity: sha512-MgbfGUAanuZTd9gpkkIqiPbCuv5jZKdJJTQWoR7X/LahYAOKurXe264w1asOl66+xrvlpHi2SqPbwhK/z71xxg==}
'@itwin/core-quantity@5.1.7':
resolution: {integrity: sha512-tz/VwG3pkzv48RSiqXfPDL2z3crJp/LU25bkhLL2jY5Rw/nk04DPVVKOEsKHiCqgNINW9eM5tV0SrzR/+siAjg==}
peerDependencies:
'@itwin/core-bentley': ^5.1.7
'@itwin/core-react@5.15.0':
resolution: {integrity: sha512-2l44xyjeX6oFiNVoeIzT5pvAheoodchtw65xO8EI9KkiUkFU6MGv8M0X7NbXaht51VFXHD5RAoZek75WKkW9hQ==}
peerDependencies:
'@itwin/appui-abstract': ^5.1.7
'@itwin/core-bentley': ^5.1.7
'@itwin/itwinui-react': ^3.15.0
react: ^18.0.0
react-dom: ^18.0.0
'@itwin/ecschema-metadata@5.1.7':
resolution: {integrity: sha512-HhK02ogOPq7+JuDik2hYXZn2NJSDgjqX2SllTETz5KShZXRD+IMnVImPk1/IpNdvm7uJSNoYvMgcz8kPgNOAeg==}
peerDependencies:
'@itwin/core-bentley': ^5.1.7
'@itwin/core-quantity': ^5.1.7
'@itwin/ecschema-rpcinterface-common@5.1.7':
resolution: {integrity: sha512-BqAuSsJ9UjpmDkn2JFF4Js/+R4cKx9uRZMDrFrfmy8kWvj7aGIn6GF5pIjFpVmtvpsDpDMP4HcxgpOC1pgRHoQ==}
peerDependencies:
'@itwin/core-bentley': ^5.1.7
'@itwin/core-common': 5.1.7
'@itwin/core-geometry': 5.1.7
'@itwin/ecschema-metadata': 5.1.7
'@itwin/ecschema-rpcinterface-impl@5.1.7':
resolution: {integrity: sha512-aX0GJS8tGQWdHZ3o+tV+ZQ64Gey9kJe5eK5tfkJ4jWWhnzeREVE9POkC2b3+ykTUD3ZzRBmRfGkPSqYlgYr5lg==}
peerDependencies:
'@itwin/core-backend': 5.1.7
'@itwin/core-bentley': ^5.1.7
'@itwin/core-common': 5.1.7
'@itwin/core-geometry': 5.1.7
'@itwin/ecschema-metadata': 5.1.7
'@itwin/ecschema-rpcinterface-common': 5.1.7
'@itwin/express-server@5.1.7':
resolution: {integrity: sha512-gXNxCkix/7NZyg9UAiEoPtaWVsYzRv6ckerc/l1hxeecP3mjjHo0KKXZRtJxFNTW3mh82xuCzwGtSkxAO+HDZQ==}
engines: {node: ^20.0.0 || ^22.0.0}
peerDependencies:
'@itwin/core-backend': 5.1.7
'@itwin/core-common': 5.1.7
'@itwin/imodel-components-react@5.15.0':
resolution: {integrity: sha512-04uP/FyA5CGzZpPjfcxjpuL9TCvBiE1NK1YrbZP0JkYuRlHQwHJHYDEdi/UEMO///X7MR5x9O2QurAQNQP1fNQ==}
peerDependencies:
'@itwin/appui-abstract': ^5.1.7
'@itwin/components-react': 5.15.0
'@itwin/core-bentley': ^5.1.7
'@itwin/core-common': ^4.0.0 || ^5.0.0
'@itwin/core-frontend': ^4.0.0 || ^5.0.0
'@itwin/core-geometry': ^4.0.0 || ^5.0.0
'@itwin/core-quantity': ^5.1.7
'@itwin/core-react': ^5.15.0
'@itwin/itwinui-react': ^3.15.0
react: ^18.0.0
react-dom: ^18.0.0
'@itwin/imodels-access-backend@6.0.1':
resolution: {integrity: sha512-LTsuD5YlMuPniXZVcjrDlsq83hCdxLoSlur7W1gbWJPzVAUldyPkdZf6nEFuua5l/s5elQxm40Tb9FB9rxH13A==}
peerDependencies:
'@itwin/core-backend': ^5.0.0
'@itwin/core-bentley': ^5.1.7
'@itwin/core-common': ^5.0.0
'@itwin/imodels-access-common@6.0.1':
resolution: {integrity: sha512-gLvCVu3eTUccOYbgeSEzfQom0rKO9AOi4Jbg44vpmvjqEPtom0Cogl+j3nnT3cTIiDc1mHNu3CFZFmyirqgZHQ==}
peerDependencies: