-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage-lock.json
16742 lines (16742 loc) · 619 KB
/
package-lock.json
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
{
"name": "ps",
"version": "0.1.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "ps",
"version": "0.1.0",
"dependencies": {
"@atlaskit/pragmatic-drag-and-drop": "1.4.0",
"@atlaskit/pragmatic-drag-and-drop-flourish": "1.1.3",
"@atlaskit/pragmatic-drag-and-drop-hitbox": "1.0.3",
"@atlaskit/pragmatic-drag-and-drop-live-region": "1.2.0",
"@atlaskit/pragmatic-drag-and-drop-react-drop-indicator": "1.1.4",
"@corbado/react": "2.19.0",
"@css-hooks/react": "3.0.4",
"@cyntler/react-doc-viewer": "1.17.0",
"@electric-sql/pglite": "0.2.16",
"@electric-sql/pglite-react": "0.2.16",
"@fluentui/react-components": "9.58.2",
"@fluentui/react-datepicker-compat": "0.4.62",
"@fluentui/react-icons": "2.0.271",
"@fluentui/react-timepicker-compat-preview": "0.2.0",
"@formkit/tempo": "0.1.2",
"@kripod/uuidv7": "0.3.4",
"@react-leaflet/core": "3.0.0",
"@shopify/react-web-worker": "5.1.6",
"@turf/bbox": "7.2.0",
"@turf/buffer": "7.2.0",
"@turf/convex": "7.2.0",
"@turf/distance": "7.2.0",
"@turf/helpers": "7.2.0",
"@turf/point-to-line-distance": "7.2.0",
"@turf/points-within-polygon": "7.2.0",
"@turf/polygon-to-line": "7.2.0",
"@uploadcare/file-uploader": "1.13.0",
"@uploadcare/react-uploader": "1.4.0",
"allotment": "1.20.2",
"array-move": "4.0.0",
"dayjs": "1.11.13",
"framer-motion": "12.0.6",
"is-uuid": "1.0.2",
"jotai": "2.11.1",
"leaflet": "1.9.4",
"leaflet-draw": "1.0.4",
"lodash": "4.17.21",
"proj4": "2.15.0",
"proj4leaflet": "1.0.2",
"react": "19.0.0",
"react-beautiful-dnd": "13.1.1",
"react-colorful": "5.6.1",
"react-dnd": "16.0.1",
"react-dnd-html5-backend": "16.0.1",
"react-dom": "19.0.0",
"react-error-boundary": "5.0.0",
"react-icons": "5.4.0",
"react-imask": "7.6.1",
"react-leaflet": "5.0.0",
"react-linkify": "1.0.0-alpha",
"react-resize-detector": "12.0.2",
"react-router-dom": "6.28.2",
"react-xml-viewer": "2.0.4",
"recharts": "2.15.1",
"redaxios": "0.5.1",
"remeda": "2.20.0",
"reproject": "1.2.7",
"screenfull": "6.0.2",
"tiny-invariant": "1.3.3",
"use-debounce": "10.0.4",
"wms-capabilities": "0.6.0",
"xlsx": "0.18.5"
},
"devDependencies": {
"@databases/pg-migrations": "5.0.3",
"@eslint/compat": "1.2.5",
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.19.0",
"@types/leaflet": "1.9.16",
"@types/leaflet-draw": "1.0.11",
"@types/proj4": "2.5.6",
"@types/proj4leaflet": "1.0.10",
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3",
"@typescript-eslint/eslint-plugin": "8.22.0",
"@typescript-eslint/parser": "8.22.0",
"@vitejs/plugin-react": "4.3.4",
"eslint": "9.19.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-react-refresh": "0.4.18",
"globals": "15.14.0",
"typescript": "5.7.3",
"vite": "6.0.11",
"vite-plugin-svgr": "4.3.0"
}
},
"node_modules/@ampproject/remapping": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz",
"integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==",
"devOptional": true,
"license": "Apache-2.0",
"dependencies": {
"@jridgewell/gen-mapping": "^0.3.5",
"@jridgewell/trace-mapping": "^0.3.24"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@atlaskit/platform-feature-flags": {
"version": "0.3.0",
"resolved": "https://registry.npmjs.org/@atlaskit/platform-feature-flags/-/platform-feature-flags-0.3.0.tgz",
"integrity": "sha512-/0u5fFJ0Rw2j4M5wzsXgaHO6Ey12oekPCDTRvmmAIp4GO9T2Swbl80bavLAPSOmSHMhHTSuvRxiJveZXfQ21IQ==",
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.0.0"
}
},
"node_modules/@atlaskit/pragmatic-drag-and-drop": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@atlaskit/pragmatic-drag-and-drop/-/pragmatic-drag-and-drop-1.4.0.tgz",
"integrity": "sha512-qRY3PTJIcxfl/QB8Gwswz+BRvlmgAC5pB+J2hL6dkIxgqAgVwOhAamMUKsrOcFU/axG2Q7RbNs1xfoLKDuhoPg==",
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.0.0",
"bind-event-listener": "^3.0.0",
"raf-schd": "^4.0.3"
}
},
"node_modules/@atlaskit/pragmatic-drag-and-drop-flourish": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/@atlaskit/pragmatic-drag-and-drop-flourish/-/pragmatic-drag-and-drop-flourish-1.1.3.tgz",
"integrity": "sha512-pBVwD8oo4dVsOCavIxqitVg3XucG1HYH/qTJP5zRt36r1ErJ23x9iLx9X7Zr62ZJRlsCZzz7esHNGPbfr5TNAQ==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/motion": "^1.9.0",
"@atlaskit/tokens": "^3.0.0",
"@babel/runtime": "^7.0.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
}
},
"node_modules/@atlaskit/pragmatic-drag-and-drop-flourish/node_modules/@atlaskit/motion": {
"version": "1.9.3",
"resolved": "https://registry.npmjs.org/@atlaskit/motion/-/motion-1.9.3.tgz",
"integrity": "sha512-DQplpASqBLtPyZUwRSdLW6z+SmDvyMZtGNw7LPTVtFbIdCEoTSbsI6K0hJJ4in8pdE26xv9NHm0FkbSuk84njw==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/ds-lib": "^3.2.0",
"@babel/runtime": "^7.0.0",
"@emotion/react": "^11.7.1",
"bind-event-listener": "^3.0.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
}
},
"node_modules/@atlaskit/pragmatic-drag-and-drop-flourish/node_modules/@atlaskit/motion/node_modules/@atlaskit/ds-lib": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@atlaskit/ds-lib/-/ds-lib-3.3.0.tgz",
"integrity": "sha512-8bgJRFvL4C9dOc3XQ0nJLze4OSXtfemmE2os2h/T80hSdQO57hPMnXB22Pl6nT/6nEP7kZ4kAH6hDuJ3vBUNPA==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/platform-feature-flags": "^0.3.0",
"@babel/runtime": "^7.0.0",
"bind-event-listener": "^3.0.0",
"react-uid": "^2.2.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
}
},
"node_modules/@atlaskit/pragmatic-drag-and-drop-flourish/node_modules/@atlaskit/tokens": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/@atlaskit/tokens/-/tokens-3.2.0.tgz",
"integrity": "sha512-zOKf/5wvU9TlDkM5qmrPoROTtPrP3OMrzZ5AszWeA/YPRCAbgsR2aVr239wE6m/C0ZReQk5fOKIlogxJlugRnw==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/ds-lib": "^3.3.0",
"@atlaskit/platform-feature-flags": "^0.3.0",
"@babel/runtime": "^7.0.0",
"@babel/traverse": "^7.23.2",
"@babel/types": "^7.20.0",
"bind-event-listener": "^3.0.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
}
},
"node_modules/@atlaskit/pragmatic-drag-and-drop-flourish/node_modules/@atlaskit/tokens/node_modules/@atlaskit/ds-lib": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@atlaskit/ds-lib/-/ds-lib-3.3.0.tgz",
"integrity": "sha512-8bgJRFvL4C9dOc3XQ0nJLze4OSXtfemmE2os2h/T80hSdQO57hPMnXB22Pl6nT/6nEP7kZ4kAH6hDuJ3vBUNPA==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/platform-feature-flags": "^0.3.0",
"@babel/runtime": "^7.0.0",
"bind-event-listener": "^3.0.0",
"react-uid": "^2.2.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
}
},
"node_modules/@atlaskit/pragmatic-drag-and-drop-hitbox": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/@atlaskit/pragmatic-drag-and-drop-hitbox/-/pragmatic-drag-and-drop-hitbox-1.0.3.tgz",
"integrity": "sha512-/Sbu/HqN2VGLYBhnsG7SbRNg98XKkbF6L7XDdBi+izRybfaK1FeMfodPpm/xnBHPJzwYMdkE0qtLyv6afhgMUA==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/pragmatic-drag-and-drop": "^1.1.0",
"@babel/runtime": "^7.0.0"
}
},
"node_modules/@atlaskit/pragmatic-drag-and-drop-live-region": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@atlaskit/pragmatic-drag-and-drop-live-region/-/pragmatic-drag-and-drop-live-region-1.2.0.tgz",
"integrity": "sha512-OXOgal5XC1GGbayHTJ7v7EdCV5Jvl3PFuC8FDxrTcL4xHs/jdgBxAMynQ6tODsOVbm4Ego2iCSKogfESxewKhg==",
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.0.0"
}
},
"node_modules/@atlaskit/pragmatic-drag-and-drop-react-drop-indicator": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/@atlaskit/pragmatic-drag-and-drop-react-drop-indicator/-/pragmatic-drag-and-drop-react-drop-indicator-1.1.4.tgz",
"integrity": "sha512-AgbY3ZcuMgxNzCruhCu/hocv9JDi+VJSwr7QpzJQmVkxWxEkUBZmSHXBMwAZ+pFsxHH97eG/y+nuOxTIUDdnJA==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/pragmatic-drag-and-drop": "^1.4.0",
"@atlaskit/pragmatic-drag-and-drop-hitbox": "^1.0.0",
"@atlaskit/tokens": "^3.0.0",
"@babel/runtime": "^7.0.0",
"@emotion/react": "^11.7.1"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
}
},
"node_modules/@atlaskit/pragmatic-drag-and-drop-react-drop-indicator/node_modules/@atlaskit/tokens": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/@atlaskit/tokens/-/tokens-3.2.0.tgz",
"integrity": "sha512-zOKf/5wvU9TlDkM5qmrPoROTtPrP3OMrzZ5AszWeA/YPRCAbgsR2aVr239wE6m/C0ZReQk5fOKIlogxJlugRnw==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/ds-lib": "^3.3.0",
"@atlaskit/platform-feature-flags": "^0.3.0",
"@babel/runtime": "^7.0.0",
"@babel/traverse": "^7.23.2",
"@babel/types": "^7.20.0",
"bind-event-listener": "^3.0.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
}
},
"node_modules/@atlaskit/pragmatic-drag-and-drop-react-drop-indicator/node_modules/@atlaskit/tokens/node_modules/@atlaskit/ds-lib": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@atlaskit/ds-lib/-/ds-lib-3.3.0.tgz",
"integrity": "sha512-8bgJRFvL4C9dOc3XQ0nJLze4OSXtfemmE2os2h/T80hSdQO57hPMnXB22Pl6nT/6nEP7kZ4kAH6hDuJ3vBUNPA==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/platform-feature-flags": "^0.3.0",
"@babel/runtime": "^7.0.0",
"bind-event-listener": "^3.0.0",
"react-uid": "^2.2.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
}
},
"node_modules/@babel/code-frame": {
"version": "7.26.2",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz",
"integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==",
"license": "MIT",
"dependencies": {
"@babel/helper-validator-identifier": "^7.25.9",
"js-tokens": "^4.0.0",
"picocolors": "^1.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/compat-data": {
"version": "7.26.5",
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.5.tgz",
"integrity": "sha512-XvcZi1KWf88RVbF9wn8MN6tYFloU5qX8KjuF3E1PVBmJ9eypXfs4GRiJwLuTZL0iSnJUKn1BFPa5BPZZJyFzPg==",
"devOptional": true,
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/core": {
"version": "7.26.0",
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.0.tgz",
"integrity": "sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==",
"devOptional": true,
"license": "MIT",
"dependencies": {
"@ampproject/remapping": "^2.2.0",
"@babel/code-frame": "^7.26.0",
"@babel/generator": "^7.26.0",
"@babel/helper-compilation-targets": "^7.25.9",
"@babel/helper-module-transforms": "^7.26.0",
"@babel/helpers": "^7.26.0",
"@babel/parser": "^7.26.0",
"@babel/template": "^7.25.9",
"@babel/traverse": "^7.25.9",
"@babel/types": "^7.26.0",
"convert-source-map": "^2.0.0",
"debug": "^4.1.0",
"gensync": "^1.0.0-beta.2",
"json5": "^2.2.3",
"semver": "^6.3.1"
},
"engines": {
"node": ">=6.9.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/babel"
}
},
"node_modules/@babel/core/node_modules/convert-source-map": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
"integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
"devOptional": true,
"license": "MIT"
},
"node_modules/@babel/core/node_modules/semver": {
"version": "6.3.1",
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"devOptional": true,
"license": "ISC",
"bin": {
"semver": "bin/semver.js"
}
},
"node_modules/@babel/generator": {
"version": "7.26.5",
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.5.tgz",
"integrity": "sha512-2caSP6fN9I7HOe6nqhtft7V4g7/V/gfDsC3Ag4W7kEzzvRGKqiv0pu0HogPiZ3KaVSoNDhUws6IJjDjpfmYIXw==",
"license": "MIT",
"dependencies": {
"@babel/parser": "^7.26.5",
"@babel/types": "^7.26.5",
"@jridgewell/gen-mapping": "^0.3.5",
"@jridgewell/trace-mapping": "^0.3.25",
"jsesc": "^3.0.2"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-compilation-targets": {
"version": "7.26.5",
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.26.5.tgz",
"integrity": "sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==",
"devOptional": true,
"license": "MIT",
"dependencies": {
"@babel/compat-data": "^7.26.5",
"@babel/helper-validator-option": "^7.25.9",
"browserslist": "^4.24.0",
"lru-cache": "^5.1.1",
"semver": "^6.3.1"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-compilation-targets/node_modules/semver": {
"version": "6.3.1",
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"devOptional": true,
"license": "ISC",
"bin": {
"semver": "bin/semver.js"
}
},
"node_modules/@babel/helper-module-imports": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz",
"integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==",
"license": "MIT",
"dependencies": {
"@babel/traverse": "^7.25.9",
"@babel/types": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-module-transforms": {
"version": "7.26.0",
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz",
"integrity": "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==",
"devOptional": true,
"license": "MIT",
"dependencies": {
"@babel/helper-module-imports": "^7.25.9",
"@babel/helper-validator-identifier": "^7.25.9",
"@babel/traverse": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
}
},
"node_modules/@babel/helper-plugin-utils": {
"version": "7.26.5",
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.26.5.tgz",
"integrity": "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-string-parser": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz",
"integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==",
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-identifier": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz",
"integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==",
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-option": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz",
"integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==",
"devOptional": true,
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helpers": {
"version": "7.26.0",
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.0.tgz",
"integrity": "sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==",
"devOptional": true,
"license": "MIT",
"dependencies": {
"@babel/template": "^7.25.9",
"@babel/types": "^7.26.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/parser": {
"version": "7.26.5",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.5.tgz",
"integrity": "sha512-SRJ4jYmXRqV1/Xc+TIVG84WjHBXKlxO9sHQnA2Pf12QQEAp1LOh6kDzNHXcUnbH1QI0FDoPPVOt+vyUDucxpaw==",
"license": "MIT",
"dependencies": {
"@babel/types": "^7.26.5"
},
"bin": {
"parser": "bin/babel-parser.js"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@babel/plugin-transform-react-jsx-self": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.25.9.tgz",
"integrity": "sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-react-jsx-source": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.25.9.tgz",
"integrity": "sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/runtime": {
"version": "7.26.0",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.26.0.tgz",
"integrity": "sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==",
"license": "MIT",
"dependencies": {
"regenerator-runtime": "^0.14.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/runtime-corejs3": {
"version": "7.26.0",
"resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.26.0.tgz",
"integrity": "sha512-YXHu5lN8kJCb1LOb9PgV6pvak43X2h4HvRApcN5SdWeaItQOzfn1hgP6jasD6KWQyJDBxrVmA9o9OivlnNJK/w==",
"license": "MIT",
"dependencies": {
"core-js-pure": "^3.30.2",
"regenerator-runtime": "^0.14.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/template": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.9.tgz",
"integrity": "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==",
"license": "MIT",
"dependencies": {
"@babel/code-frame": "^7.25.9",
"@babel/parser": "^7.25.9",
"@babel/types": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/traverse": {
"version": "7.26.5",
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.5.tgz",
"integrity": "sha512-rkOSPOw+AXbgtwUga3U4u8RpoK9FEFWBNAlTpcnkLFjL5CT+oyHNuUUC/xx6XefEJ16r38r8Bc/lfp6rYuHeJQ==",
"license": "MIT",
"dependencies": {
"@babel/code-frame": "^7.26.2",
"@babel/generator": "^7.26.5",
"@babel/parser": "^7.26.5",
"@babel/template": "^7.25.9",
"@babel/types": "^7.26.5",
"debug": "^4.3.1",
"globals": "^11.1.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/traverse/node_modules/globals": {
"version": "11.12.0",
"resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
"integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
"license": "MIT",
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/types": {
"version": "7.26.5",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.5.tgz",
"integrity": "sha512-L6mZmwFDK6Cjh1nRCLXpa6no13ZIioJDz7mdkzHv399pThrTa/k0nUlNaenOeh2kWu/iaOQYElEpKPUswUa9Vg==",
"license": "MIT",
"dependencies": {
"@babel/helper-string-parser": "^7.25.9",
"@babel/helper-validator-identifier": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@corbado/react": {
"version": "2.19.0",
"resolved": "https://registry.npmjs.org/@corbado/react/-/react-2.19.0.tgz",
"integrity": "sha512-mgq7yMz3UpD+Q5Z1l8Z9NGKJ+KzhNZFSIaZgv14fpPfAc4m+hQYMH5Ll/ntqLhR3tQXRcExHkKh7izdWZvsTjQ==",
"license": "ISC",
"dependencies": {
"@corbado/shared-ui": "^2.19.0",
"@corbado/web-core": "^2.18.0",
"i18next": "23.5.1",
"i18next-browser-languagedetector": "7.1.0",
"libphonenumber-js": "^1.10.59",
"react-i18next": "13.2.2",
"react-phone-number-input": "^3.3.9"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
}
},
"node_modules/@corbado/shared-ui": {
"version": "2.19.0",
"resolved": "https://registry.npmjs.org/@corbado/shared-ui/-/shared-ui-2.19.0.tgz",
"integrity": "sha512-PWUyACx8tsb0c9bxRP6mf9k5x2/RrIvcVbrVPmArU2Vc7ckwvt8WigVXvFCgKozb8SrVYkoA0GNpwjGR7q/RBQ==",
"license": "ISC",
"dependencies": {
"@corbado/web-core": "^2.18.0",
"rxjs": "^7.8.1",
"ua-parser-js": "^1.0.37"
}
},
"node_modules/@corbado/web-core": {
"version": "2.18.0",
"resolved": "https://registry.npmjs.org/@corbado/web-core/-/web-core-2.18.0.tgz",
"integrity": "sha512-8Pl+7kkaZ8dPfljraD6JyiwCeE9TMcNjq/tXlDYVQRYUOQQcdqKCO6SKSiMg5+jmWhpXDV/7DGkwrHL4o7aiRA==",
"license": "ISC",
"dependencies": {
"@corbado/webauthn-json": "^2.1.2",
"@fingerprintjs/fingerprintjs": "^3.4.2",
"axios": "^1.7.4",
"detectincognitojs": "^1.3.7",
"loglevel": "^1.8.1",
"rxjs": "^7.8.1",
"ts-results": "^3.3.0"
}
},
"node_modules/@corbado/webauthn-json": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/@corbado/webauthn-json/-/webauthn-json-2.1.2.tgz",
"integrity": "sha512-oUCYLGg3fOvv22sTKPjFV8r264fdPDqjtlaxPy+NbNAERQS2jZhFQ5YyoGhvmSMldyAx2H7r9Ct0iQXQz88vhA==",
"license": "MIT",
"dependencies": {
"@web/dev-server-esbuild": "^0.3.3",
"@web/test-runner": "^0.15.0"
},
"bin": {
"webauthn-json": "dist/bin/main.js"
}
},
"node_modules/@css-hooks/core": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/@css-hooks/core/-/core-3.0.4.tgz",
"integrity": "sha512-9NQvYUPr+m9ad/sx8mjX6jUbNnVMXMYyQzyMQZB1y04GRxukU5y5JKfpwDv9+/N8y49dzwapuHfitAq8sVVyuQ==",
"license": "MIT"
},
"node_modules/@css-hooks/react": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/@css-hooks/react/-/react-3.0.4.tgz",
"integrity": "sha512-TvVpQLcAKqPRJxwYqgT77fM98jPHpY/NbWruCUYnbxJlLt6ehhmB+5yPiF8pSnPweFO8txxTJqRlxhII16U1CQ==",
"license": "MIT",
"dependencies": {
"@css-hooks/core": "3.0.4"
},
"peerDependencies": {
"@types/react": ">=16 <20"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
}
},
"node_modules/@cyntler/react-doc-viewer": {
"version": "1.17.0",
"resolved": "https://registry.npmjs.org/@cyntler/react-doc-viewer/-/react-doc-viewer-1.17.0.tgz",
"integrity": "sha512-rx3HGcDpOtyuBuWjPaiMxgC4t476DeZiMS1KkQGY/o49SCjFr1Kh19UeICxYAt2oZ2mifE08xI3hcTQpIZ/jqw==",
"license": "Apache License 2.0",
"dependencies": {
"@types/mustache": "^4.2.5",
"@types/papaparse": "^5.3.14",
"ajv": "^7.2.4",
"core-js": "^3.37.1",
"mustache": "^4.2.0",
"papaparse": "^5.4.1",
"react-pdf": "^9.0.0",
"styled-components": "^6.1.11"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
}
},
"node_modules/@databases/connection-pool": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@databases/connection-pool/-/connection-pool-1.1.0.tgz",
"integrity": "sha512-/12/SNgl0V77mJTo5SX3yGPz4c9XGQwAlCfA0vlfs/0HcaErNpYXpmhj0StET07w6TmTJTnaUgX2EPcQK9ez5A==",
"dev": true,
"license": "MIT",
"dependencies": {
"@databases/queue": "^1.0.0",
"is-promise": "^4.0.0"
}
},
"node_modules/@databases/escape-identifier": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/@databases/escape-identifier/-/escape-identifier-1.0.3.tgz",
"integrity": "sha512-Su36iSVzaHxpVdISVMViUX/32sLvzxVgjZpYhzhotxZUuLo11GVWsiHwqkvUZijTLUxcDmUqEwGJO3O/soLuZA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@databases/validate-unicode": "^1.0.0"
}
},
"node_modules/@databases/lock": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/@databases/lock/-/lock-2.1.0.tgz",
"integrity": "sha512-ReWnFE5qeCuO2SA5h5fDh/hE/vMolA+Epe6xkAQP1FL2nhnsTCYwN2JACk/kWctR4OQoh0njBjPZ0yfIptclcA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@databases/queue": "^1.0.0"
}
},
"node_modules/@databases/migrations-base": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@databases/migrations-base/-/migrations-base-3.0.1.tgz",
"integrity": "sha512-CutCQ1AjsEWqSuXInD8KwaZYa3/InYGFu3uZ/2pu0Ku4MHRab14+sKNXLk/dxHaJLplngLtCraBo8rL7/21Vhg==",
"dev": true,
"license": "MIT",
"dependencies": {
"assert-never": "^1.2.1",
"chalk": "^4.1.0",
"deep-equal": "^2.0.4",
"interrogator": "^2.0.0",
"is-interactive": "^1.0.0",
"parameter-reducers": "^2.0.0",
"semver": "^7.3.2"
}
},
"node_modules/@databases/pg": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/@databases/pg/-/pg-5.5.0.tgz",
"integrity": "sha512-WIojK9AYIlNi5YRfc5YUOow3PQ82ClmwT9HG3nEsKLUERYieoVmHMYDQLS0ry6FjgJx+2yFs7LCw4kZpWu1TBw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/code-frame": "^7.0.0",
"@databases/escape-identifier": "^1.0.3",
"@databases/pg-config": "^3.2.0",
"@databases/pg-connection-string": "^1.0.0",
"@databases/pg-data-type-id": "^3.0.0",
"@databases/pg-errors": "^1.0.0",
"@databases/push-to-async-iterable": "^3.0.0",
"@databases/shared": "^3.1.0",
"@databases/split-sql-query": "^1.0.4",
"@databases/sql": "^3.3.0",
"assert-never": "^1.2.1",
"pg": "^8.4.2",
"pg-cursor": "^2.4.2"
}
},
"node_modules/@databases/pg-config": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/@databases/pg-config/-/pg-config-3.2.0.tgz",
"integrity": "sha512-hoPAK/F8gLcLgEJ8mLSnNvRlKqShwx5+GglDHIIfQhKF+Zz6M6QceiOefckS4WSjA0x2HClPvpercnXp9i24ag==",
"dev": true,
"license": "MIT",
"dependencies": {
"cosmiconfig": "^8.1.0",
"funtypes": "^4.1.0"
}
},
"node_modules/@databases/pg-connection-string": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@databases/pg-connection-string/-/pg-connection-string-1.0.0.tgz",
"integrity": "sha512-8czOF9jlv7PlS7BPjnL82ynpDs1t8cu+C2jvdtMr37e8daPKMS7n1KfNE9xtr2Gq4QYKjynep097eYa5yIwcLA==",
"dev": true,
"license": "MIT"
},
"node_modules/@databases/pg-data-type-id": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@databases/pg-data-type-id/-/pg-data-type-id-3.0.0.tgz",
"integrity": "sha512-VqW1csN8pRsWJxjPsGIC9FQ8wyenfmGv0P//BaeDMAu/giM3IXKxKM8fkScUSQ00uqFK/L1iHS5g6dgodF3XzA==",
"dev": true,
"license": "MIT"
},
"node_modules/@databases/pg-errors": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@databases/pg-errors/-/pg-errors-1.0.0.tgz",
"integrity": "sha512-Yz3exbptZwOn4ZD/MSwY6z++XVyOFsMh5DERvSw3awRwJFnfdaqdeiIxxX0MVjM6KPihF0xxp8lPO7vTc5ydpw==",
"dev": true,
"license": "MIT"
},
"node_modules/@databases/pg-migrations": {
"version": "5.0.3",
"resolved": "https://registry.npmjs.org/@databases/pg-migrations/-/pg-migrations-5.0.3.tgz",
"integrity": "sha512-mUKbVYiACRZJOhE96Y5Fr2IIJ2iBNPVM6L3LgBypH9zIQMOLixGpJ6ZS0oabtNIFJhjncXl5FVEtYaa8x5KkoA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@databases/migrations-base": "^3.0.1",
"@databases/pg": "^5.5.0",
"@databases/pg-config": "^3.2.0",
"assert-never": "^1.2.1",
"chalk": "^4.1.0",
"interrogator": "^2.0.0",
"is-interactive": "^1.0.0",
"parameter-reducers": "^2.0.0",
"semver": "^7.3.2",
"sucrase": "^3.16.0"
},
"bin": {
"pg-migrations": "lib/cli.js"
}
},
"node_modules/@databases/push-to-async-iterable": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@databases/push-to-async-iterable/-/push-to-async-iterable-3.0.0.tgz",
"integrity": "sha512-xwu/yNgINdMU+fn6UwFsxh+pa6UrVPafY+0qm0RK0/nKyjllfDqSbwK4gSmdmLEwPYxKwch9CAE3P8NxN1hPSg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@databases/queue": "^1.0.0"
}
},
"node_modules/@databases/queue": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@databases/queue/-/queue-1.0.1.tgz",
"integrity": "sha512-dqRU+/aQ4lhFzjPIkIhjB0+UEKMb76FoBgHOJUTcEblgatr/IhdhHliT3VVwcImXh35Mz297PAXE4yFM4eYWUQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@databases/shared": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@databases/shared/-/shared-3.1.0.tgz",
"integrity": "sha512-bO1DIYAYDiWOCqVPvBio1JqZQYh4dph2M1av2w/REeFT6WBd64mTrOFlcxKV0CUAYT0UiJsDfPqEfw0/APRzWg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@databases/connection-pool": "^1.1.0",
"@databases/lock": "^2.1.0",
"@databases/queue": "^1.0.1",
"@databases/split-sql-query": "^1.0.4",
"@databases/sql": "^3.3.0"
}
},
"node_modules/@databases/split-sql-query": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/@databases/split-sql-query/-/split-sql-query-1.0.4.tgz",
"integrity": "sha512-lDqDQvH34NNjLs0knaDvL6HKgPtishQlDYHfOkvbAd5VQOEhcDvvmG2zbBuFvS2HQAz5NsyLj5erGaxibkxhvQ==",
"dev": true,
"license": "MIT",
"peerDependencies": {
"@databases/sql": "*"
}
},
"node_modules/@databases/sql": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@databases/sql/-/sql-3.3.0.tgz",
"integrity": "sha512-vj9huEy4mjJ48GS1Z8yvtMm4BYAnFYACUds25ym6Gd/gsnngkJ17fo62a6mmbNNwCBS/8467PmZR01Zs/06TjA==",
"dev": true,
"license": "MIT"
},
"node_modules/@databases/validate-unicode": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@databases/validate-unicode/-/validate-unicode-1.0.0.tgz",
"integrity": "sha512-dLKqxGcymeVwEb/6c44KjOnzaAafFf0Wxa8xcfEjx/qOl3rdijsKYBAtIGhtVtOlpPf/PFKfgTuFurSPn/3B/g==",
"dev": true,
"license": "MIT"
},
"node_modules/@electric-sql/pglite": {
"version": "0.2.16",
"resolved": "https://registry.npmjs.org/@electric-sql/pglite/-/pglite-0.2.16.tgz",
"integrity": "sha512-dCSHpoOKuTxecaYhWDRp2yFTN3XWcMPMrBVl5yOR8VZEUprz4+R3iuU7BipmlsqBnBDO/6l9H/C2ZwJdunkWyw==",
"license": "Apache-2.0"
},
"node_modules/@electric-sql/pglite-react": {
"version": "0.2.16",
"resolved": "https://registry.npmjs.org/@electric-sql/pglite-react/-/pglite-react-0.2.16.tgz",
"integrity": "sha512-PQ2HIcb4SnYNR9ErytROmQPIibFErG8I29HSL5eTsw+fFG/hS+xlLj+cLnKAz4qZYIYQC7Czd55oe4ESih6ptQ==",
"license": "Apache-2.0",
"peerDependencies": {
"@electric-sql/pglite": "^0.2.16",
"react": "^18.0.0 || ^19.0.0 || ^19.0.0-rc"
}
},
"node_modules/@emotion/babel-plugin": {
"version": "11.13.5",
"resolved": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.13.5.tgz",
"integrity": "sha512-pxHCpT2ex+0q+HH91/zsdHkw/lXd468DIN2zvfvLtPKLLMo6gQj7oLObq8PhkrxOZb/gGCq03S3Z7PDhS8pduQ==",
"license": "MIT",
"dependencies": {
"@babel/helper-module-imports": "^7.16.7",
"@babel/runtime": "^7.18.3",
"@emotion/hash": "^0.9.2",
"@emotion/memoize": "^0.9.0",
"@emotion/serialize": "^1.3.3",
"babel-plugin-macros": "^3.1.0",
"convert-source-map": "^1.5.0",
"escape-string-regexp": "^4.0.0",
"find-root": "^1.1.0",
"source-map": "^0.5.7",
"stylis": "4.2.0"
}
},
"node_modules/@emotion/cache": {
"version": "11.14.0",
"resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.14.0.tgz",
"integrity": "sha512-L/B1lc/TViYk4DcpGxtAVbx0ZyiKM5ktoIyafGkH6zg/tj+mA+NE//aPYKG0k8kCHSHVJrpLpcAlOBEXQ3SavA==",
"license": "MIT",
"dependencies": {
"@emotion/memoize": "^0.9.0",
"@emotion/sheet": "^1.4.0",
"@emotion/utils": "^1.4.2",
"@emotion/weak-memoize": "^0.4.0",
"stylis": "4.2.0"
}
},
"node_modules/@emotion/hash": {
"version": "0.9.2",
"resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.2.tgz",
"integrity": "sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==",
"license": "MIT"
},
"node_modules/@emotion/is-prop-valid": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.2.2.tgz",
"integrity": "sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw==",
"license": "MIT",
"dependencies": {
"@emotion/memoize": "^0.8.1"
}
},
"node_modules/@emotion/is-prop-valid/node_modules/@emotion/memoize": {
"version": "0.8.1",
"resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.1.tgz",
"integrity": "sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==",
"license": "MIT"
},
"node_modules/@emotion/memoize": {
"version": "0.9.0",
"resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.9.0.tgz",
"integrity": "sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==",
"license": "MIT"
},
"node_modules/@emotion/react": {
"version": "11.14.0",
"resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.14.0.tgz",
"integrity": "sha512-O000MLDBDdk/EohJPFUqvnp4qnHeYkVP5B0xEG0D/L7cOKP9kefu2DXn8dj74cQfsEzUqh+sr1RzFqiL1o+PpA==",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.18.3",
"@emotion/babel-plugin": "^11.13.5",
"@emotion/cache": "^11.14.0",
"@emotion/serialize": "^1.3.3",
"@emotion/use-insertion-effect-with-fallbacks": "^1.2.0",
"@emotion/utils": "^1.4.2",
"@emotion/weak-memoize": "^0.4.0",
"hoist-non-react-statics": "^3.3.1"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
}
},
"node_modules/@emotion/serialize": {
"version": "1.3.3",
"resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.3.3.tgz",
"integrity": "sha512-EISGqt7sSNWHGI76hC7x1CksiXPahbxEOrC5RjmFRJTqLyEK9/9hZvBbiYn70dw4wuwMKiEMCUlR6ZXTSWQqxA==",
"license": "MIT",
"dependencies": {
"@emotion/hash": "^0.9.2",
"@emotion/memoize": "^0.9.0",
"@emotion/unitless": "^0.10.0",
"@emotion/utils": "^1.4.2",
"csstype": "^3.0.2"
}
},
"node_modules/@emotion/sheet": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.4.0.tgz",
"integrity": "sha512-fTBW9/8r2w3dXWYM4HCB1Rdp8NLibOw2+XELH5m5+AkWiL/KqYX6dc0kKYlaYyKjrQ6ds33MCdMPEwgs2z1rqg==",
"license": "MIT"
},
"node_modules/@emotion/unitless": {
"version": "0.10.0",
"resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.10.0.tgz",
"integrity": "sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg==",
"license": "MIT"