-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyarn.lock
5716 lines (5139 loc) · 202 KB
/
yarn.lock
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
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 6
cacheKey: 8
"@babel/code-frame@npm:^7.0.0":
version: 7.24.6
resolution: "@babel/code-frame@npm:7.24.6"
dependencies:
"@babel/highlight": "npm:^7.24.6"
picocolors: "npm:^1.0.0"
checksum: 0904514ea7079a9590c1c546cd20b9c1beab9649873f2a0703429860775c1713a8dfb2daacd781a0210bb3930c656c1c436013fb20eaa3644880fb3a2b34541d
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/helper-validator-identifier@npm:7.24.6"
checksum: a265a6fba570332dca63ad7e749b867d29b52da2573dc62bf19b5b8c5387d4f4296af33da9da7c71ffe3d3abecd743418278f56d38b057ad4b53f09b937fe113
languageName: node
linkType: hard
"@babel/highlight@npm:^7.24.6":
version: 7.24.6
resolution: "@babel/highlight@npm:7.24.6"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.24.6"
chalk: "npm:^2.4.2"
js-tokens: "npm:^4.0.0"
picocolors: "npm:^1.0.0"
checksum: 2f8f7f060eeccc3ddf03ba12c263995de0e6c0dd31ad224bed58d983b3bb08fe34dfc01440396266456a4cad83226c38ad6814805bc5d0c774a056cac9182eca
languageName: node
linkType: hard
"@codemirror/state@npm:^6.4.1":
version: 6.4.1
resolution: "@codemirror/state@npm:6.4.1"
checksum: b81b55574091349eed4d32fc0eadb0c9688f1f7c98b681318f59138ee0f527cb4c4a97831b70547c0640f02f3127647838ae6730782de4a3dd2cc58836125d01
languageName: node
linkType: hard
"@csstools/css-parser-algorithms@npm:^2.3.1":
version: 2.6.3
resolution: "@csstools/css-parser-algorithms@npm:2.6.3"
peerDependencies:
"@csstools/css-tokenizer": ^2.3.1
checksum: f1bfcb6680c801f4201c30b77827e000b838e5a45b42f146ec352cd008b51ebb31b8aae00364369765c24e938391e221e37f4063e3a6151316d6990c498da103
languageName: node
linkType: hard
"@csstools/css-tokenizer@npm:^2.2.0":
version: 2.3.1
resolution: "@csstools/css-tokenizer@npm:2.3.1"
checksum: a5fe22faed5673b5d19e64aa7f4730b48711d0946470551376bc3125d831511070c94addfdfc6a62634e968955050ef2c99c92ff8cb294d9bf70ebc1f3ac22a8
languageName: node
linkType: hard
"@csstools/media-query-list-parser@npm:^2.1.4":
version: 2.1.11
resolution: "@csstools/media-query-list-parser@npm:2.1.11"
peerDependencies:
"@csstools/css-parser-algorithms": ^2.6.3
"@csstools/css-tokenizer": ^2.3.1
checksum: e338eff90b43ab31b3d33c55c792f7760d556feaeaa042e12b8e3f873293b72f1140df1bbbfa1c9dcc16c58afb777f1e218e17afdcd0ab8228d2a8ea22bcbe61
languageName: node
linkType: hard
"@csstools/selector-specificity@npm:^3.0.0":
version: 3.1.1
resolution: "@csstools/selector-specificity@npm:3.1.1"
peerDependencies:
postcss-selector-parser: ^6.0.13
checksum: 3786a6afea97b08ad739ee8f4004f7e0a9e25049cee13af809dbda6462090744012a54bd9275a44712791e8f103f85d21641f14e81799f9dab946b0459a5e1ef
languageName: node
linkType: hard
"@discoveryjs/json-ext@npm:^0.5.0":
version: 0.5.7
resolution: "@discoveryjs/json-ext@npm:0.5.7"
checksum: 2176d301cc258ea5c2324402997cf8134ebb212469c0d397591636cea8d3c02f2b3cf9fd58dcb748c7a0dade77ebdc1b10284fa63e608c033a1db52fddc69918
languageName: node
linkType: hard
"@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0":
version: 4.4.0
resolution: "@eslint-community/eslint-utils@npm:4.4.0"
dependencies:
eslint-visitor-keys: "npm:^3.3.0"
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
checksum: cdfe3ae42b4f572cbfb46d20edafe6f36fc5fb52bf2d90875c58aefe226892b9677fef60820e2832caf864a326fe4fc225714c46e8389ccca04d5f9288aabd22
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.5.1, @eslint-community/regexpp@npm:^4.6.1":
version: 4.10.0
resolution: "@eslint-community/regexpp@npm:4.10.0"
checksum: 2a6e345429ea8382aaaf3a61f865cae16ed44d31ca917910033c02dc00d505d939f10b81e079fa14d43b51499c640138e153b7e40743c4c094d9df97d4e56f7b
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^2.1.4":
version: 2.1.4
resolution: "@eslint/eslintrc@npm:2.1.4"
dependencies:
ajv: "npm:^6.12.4"
debug: "npm:^4.3.2"
espree: "npm:^9.6.0"
globals: "npm:^13.19.0"
ignore: "npm:^5.2.0"
import-fresh: "npm:^3.2.1"
js-yaml: "npm:^4.1.0"
minimatch: "npm:^3.1.2"
strip-json-comments: "npm:^3.1.1"
checksum: 10957c7592b20ca0089262d8c2a8accbad14b4f6507e35416c32ee6b4dbf9cad67dfb77096bbd405405e9ada2b107f3797fe94362e1c55e0b09d6e90dd149127
languageName: node
linkType: hard
"@eslint/js@npm:8.57.0":
version: 8.57.0
resolution: "@eslint/js@npm:8.57.0"
checksum: 315dc65b0e9893e2bff139bddace7ea601ad77ed47b4550e73da8c9c2d2766c7a575c3cddf17ef85b8fd6a36ff34f91729d0dcca56e73ca887c10df91a41b0bb
languageName: node
linkType: hard
"@fortawesome/fontawesome-free@npm:^5.12.0":
version: 5.15.4
resolution: "@fortawesome/fontawesome-free@npm:5.15.4"
checksum: 32281c3df4075290d9a96dfc22f72fadb3da7055d4117e48d34046b8c98032a55fa260ae351b0af5d6f6fb57a2f5d79a4abe52af456da35195f7cb7dda27b4a2
languageName: node
linkType: hard
"@humanwhocodes/config-array@npm:^0.11.14":
version: 0.11.14
resolution: "@humanwhocodes/config-array@npm:0.11.14"
dependencies:
"@humanwhocodes/object-schema": "npm:^2.0.2"
debug: "npm:^4.3.1"
minimatch: "npm:^3.0.5"
checksum: 861ccce9eaea5de19546653bccf75bf09fe878bc39c3aab00aeee2d2a0e654516adad38dd1098aab5e3af0145bbcbf3f309bdf4d964f8dab9dcd5834ae4c02f2
languageName: node
linkType: hard
"@humanwhocodes/module-importer@npm:^1.0.1":
version: 1.0.1
resolution: "@humanwhocodes/module-importer@npm:1.0.1"
checksum: 0fd22007db8034a2cdf2c764b140d37d9020bbfce8a49d3ec5c05290e77d4b0263b1b972b752df8c89e5eaa94073408f2b7d977aed131faf6cf396ebb5d7fb61
languageName: node
linkType: hard
"@humanwhocodes/object-schema@npm:^2.0.2":
version: 2.0.3
resolution: "@humanwhocodes/object-schema@npm:2.0.3"
checksum: d3b78f6c5831888c6ecc899df0d03bcc25d46f3ad26a11d7ea52944dc36a35ef543fad965322174238d677a43d5c694434f6607532cff7077062513ad7022631
languageName: node
linkType: hard
"@isaacs/cliui@npm:^8.0.2":
version: 8.0.2
resolution: "@isaacs/cliui@npm:8.0.2"
dependencies:
string-width: "npm:^5.1.2"
string-width-cjs: "npm:string-width@^4.2.0"
strip-ansi: "npm:^7.0.1"
strip-ansi-cjs: "npm:strip-ansi@^6.0.1"
wrap-ansi: "npm:^8.1.0"
wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0"
checksum: 4a473b9b32a7d4d3cfb7a614226e555091ff0c5a29a1734c28c72a182c2f6699b26fc6b5c2131dfd841e86b185aea714c72201d7c98c2fba5f17709333a67aeb
languageName: node
linkType: hard
"@jridgewell/gen-mapping@npm:^0.3.5":
version: 0.3.5
resolution: "@jridgewell/gen-mapping@npm:0.3.5"
dependencies:
"@jridgewell/set-array": "npm:^1.2.1"
"@jridgewell/sourcemap-codec": "npm:^1.4.10"
"@jridgewell/trace-mapping": "npm:^0.3.24"
checksum: ff7a1764ebd76a5e129c8890aa3e2f46045109dabde62b0b6c6a250152227647178ff2069ea234753a690d8f3c4ac8b5e7b267bbee272bffb7f3b0a370ab6e52
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:^3.1.0":
version: 3.1.2
resolution: "@jridgewell/resolve-uri@npm:3.1.2"
checksum: 83b85f72c59d1c080b4cbec0fef84528963a1b5db34e4370fa4bd1e3ff64a0d80e0cee7369d11d73c704e0286fb2865b530acac7a871088fbe92b5edf1000870
languageName: node
linkType: hard
"@jridgewell/set-array@npm:^1.2.1":
version: 1.2.1
resolution: "@jridgewell/set-array@npm:1.2.1"
checksum: 832e513a85a588f8ed4f27d1279420d8547743cc37fcad5a5a76fc74bb895b013dfe614d0eed9cb860048e6546b798f8f2652020b4b2ba0561b05caa8c654b10
languageName: node
linkType: hard
"@jridgewell/source-map@npm:^0.3.3":
version: 0.3.6
resolution: "@jridgewell/source-map@npm:0.3.6"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.25"
checksum: c9dc7d899397df95e3c9ec287b93c0b56f8e4453cd20743e2b9c8e779b1949bc3cccf6c01bb302779e46560eb45f62ea38d19fedd25370d814734268450a9f30
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.14":
version: 1.4.15
resolution: "@jridgewell/sourcemap-codec@npm:1.4.15"
checksum: b881c7e503db3fc7f3c1f35a1dd2655a188cc51a3612d76efc8a6eb74728bef5606e6758ee77423e564092b4a518aba569bbb21c9bac5ab7a35b0c6ae7e344c8
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:^0.3.20, @jridgewell/trace-mapping@npm:^0.3.24, @jridgewell/trace-mapping@npm:^0.3.25":
version: 0.3.25
resolution: "@jridgewell/trace-mapping@npm:0.3.25"
dependencies:
"@jridgewell/resolve-uri": "npm:^3.1.0"
"@jridgewell/sourcemap-codec": "npm:^1.4.14"
checksum: 9d3c40d225e139987b50c48988f8717a54a8c994d8a948ee42e1412e08988761d0754d7d10b803061cc3aebf35f92a5dbbab493bd0e1a9ef9e89a2130e83ba34
languageName: node
linkType: hard
"@jupyter/react-components@npm:^0.15.3":
version: 0.15.3
resolution: "@jupyter/react-components@npm:0.15.3"
dependencies:
"@jupyter/web-components": "npm:^0.15.3"
"@microsoft/fast-react-wrapper": "npm:^0.3.22"
react: "npm:>=17.0.0 <19.0.0"
checksum: 1a6b256314259c6465c4b6d958575710536b82234a7bf0fba3e889a07e1f19ff8ab321450be354359876f92c45dbcc9d21a840237ff4a619806d9de696f55496
languageName: node
linkType: hard
"@jupyter/web-components@npm:^0.15.3":
version: 0.15.3
resolution: "@jupyter/web-components@npm:0.15.3"
dependencies:
"@microsoft/fast-colors": "npm:^5.3.1"
"@microsoft/fast-element": "npm:^1.12.0"
"@microsoft/fast-foundation": "npm:^2.49.4"
"@microsoft/fast-web-utilities": "npm:^5.4.1"
checksum: a0980af934157bfdbdb6cc169c0816c1b2e57602d524c56bdcef746a4c25dfeb8f505150d83207c8695ed89b5486cf53d35a3382584d25ef64db666e4e16e45b
languageName: node
linkType: hard
"@jupyter/ydoc@npm:^2.0.1":
version: 2.0.1
resolution: "@jupyter/ydoc@npm:2.0.1"
dependencies:
"@jupyterlab/nbformat": "npm:^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0"
"@lumino/coreutils": "npm:^1.11.0 || ^2.0.0"
"@lumino/disposable": "npm:^1.10.0 || ^2.0.0"
"@lumino/signaling": "npm:^1.10.0 || ^2.0.0"
y-protocols: "npm:^1.0.5"
yjs: "npm:^13.5.40"
checksum: f5f29e1ff3327ebc1cf326f53634e03c4c7bf7733d235087fe26975c16eebd404f23c2f3ba88b6e04b1927846be7162b09b8b8719a4b29e51d0299c745018cbb
languageName: node
linkType: hard
"@jupyterlab/application@npm:^4.0.0":
version: 4.2.1
resolution: "@jupyterlab/application@npm:4.2.1"
dependencies:
"@fortawesome/fontawesome-free": "npm:^5.12.0"
"@jupyterlab/apputils": "npm:^4.3.1"
"@jupyterlab/coreutils": "npm:^6.2.1"
"@jupyterlab/docregistry": "npm:^4.2.1"
"@jupyterlab/rendermime": "npm:^4.2.1"
"@jupyterlab/rendermime-interfaces": "npm:^3.10.1"
"@jupyterlab/services": "npm:^7.2.1"
"@jupyterlab/statedb": "npm:^4.2.1"
"@jupyterlab/translation": "npm:^4.2.1"
"@jupyterlab/ui-components": "npm:^4.2.1"
"@lumino/algorithm": "npm:^2.0.1"
"@lumino/application": "npm:^2.3.1"
"@lumino/commands": "npm:^2.3.0"
"@lumino/coreutils": "npm:^2.1.2"
"@lumino/disposable": "npm:^2.1.2"
"@lumino/messaging": "npm:^2.0.1"
"@lumino/polling": "npm:^2.1.2"
"@lumino/properties": "npm:^2.0.1"
"@lumino/signaling": "npm:^2.1.2"
"@lumino/widgets": "npm:^2.3.2"
checksum: cc4b97fcfe81f31ffe437cd53370352e38ada94c39c9d60b595b0c0c4f195411653fd02af65717982d83084b18b2039dfc63d2d43f7ccda3fa0041294beeca44
languageName: node
linkType: hard
"@jupyterlab/apputils@npm:^4.3.1":
version: 4.3.1
resolution: "@jupyterlab/apputils@npm:4.3.1"
dependencies:
"@jupyterlab/coreutils": "npm:^6.2.1"
"@jupyterlab/observables": "npm:^5.2.1"
"@jupyterlab/rendermime-interfaces": "npm:^3.10.1"
"@jupyterlab/services": "npm:^7.2.1"
"@jupyterlab/settingregistry": "npm:^4.2.1"
"@jupyterlab/statedb": "npm:^4.2.1"
"@jupyterlab/statusbar": "npm:^4.2.1"
"@jupyterlab/translation": "npm:^4.2.1"
"@jupyterlab/ui-components": "npm:^4.2.1"
"@lumino/algorithm": "npm:^2.0.1"
"@lumino/commands": "npm:^2.3.0"
"@lumino/coreutils": "npm:^2.1.2"
"@lumino/disposable": "npm:^2.1.2"
"@lumino/domutils": "npm:^2.0.1"
"@lumino/messaging": "npm:^2.0.1"
"@lumino/signaling": "npm:^2.1.2"
"@lumino/virtualdom": "npm:^2.0.1"
"@lumino/widgets": "npm:^2.3.2"
"@types/react": "npm:^18.0.26"
react: "npm:^18.2.0"
sanitize-html: "npm:~2.12.1"
checksum: 380d9059dd14ee47bb50a821515e0b4a92a2b60b6fed2bf15fb73b9192a2e95d1e6c97337f11d0c26870dba2dc89ee19604f068483df505e78d798510a61bf01
languageName: node
linkType: hard
"@jupyterlab/builder@npm:^4.0.0":
version: 4.2.1
resolution: "@jupyterlab/builder@npm:4.2.1"
dependencies:
"@lumino/algorithm": "npm:^2.0.1"
"@lumino/application": "npm:^2.3.1"
"@lumino/commands": "npm:^2.3.0"
"@lumino/coreutils": "npm:^2.1.2"
"@lumino/disposable": "npm:^2.1.2"
"@lumino/domutils": "npm:^2.0.1"
"@lumino/dragdrop": "npm:^2.1.4"
"@lumino/messaging": "npm:^2.0.1"
"@lumino/properties": "npm:^2.0.1"
"@lumino/signaling": "npm:^2.1.2"
"@lumino/virtualdom": "npm:^2.0.1"
"@lumino/widgets": "npm:^2.3.2"
ajv: "npm:^8.12.0"
commander: "npm:^9.4.1"
css-loader: "npm:^6.7.1"
duplicate-package-checker-webpack-plugin: "npm:^3.0.0"
fs-extra: "npm:^10.1.0"
glob: "npm:~7.1.6"
license-webpack-plugin: "npm:^2.3.14"
mini-css-extract-plugin: "npm:^2.7.0"
mini-svg-data-uri: "npm:^1.4.4"
path-browserify: "npm:^1.0.0"
process: "npm:^0.11.10"
source-map-loader: "npm:~1.0.2"
style-loader: "npm:~3.3.1"
supports-color: "npm:^7.2.0"
terser-webpack-plugin: "npm:^5.3.7"
webpack: "npm:^5.76.1"
webpack-cli: "npm:^5.0.1"
webpack-merge: "npm:^5.8.0"
worker-loader: "npm:^3.0.2"
bin:
build-labextension: lib/build-labextension.js
checksum: d8ea62deab2866be6fd0147470bd2ebd4970d1f628428e3354f86e8b8121a83ce3074eeead65427f09042eec8d88b4d1f1c2830972fc529ba5a084ada6be63b0
languageName: node
linkType: hard
"@jupyterlab/codeeditor@npm:^4.2.1":
version: 4.2.1
resolution: "@jupyterlab/codeeditor@npm:4.2.1"
dependencies:
"@codemirror/state": "npm:^6.4.1"
"@jupyter/ydoc": "npm:^2.0.1"
"@jupyterlab/apputils": "npm:^4.3.1"
"@jupyterlab/coreutils": "npm:^6.2.1"
"@jupyterlab/nbformat": "npm:^4.2.1"
"@jupyterlab/observables": "npm:^5.2.1"
"@jupyterlab/statusbar": "npm:^4.2.1"
"@jupyterlab/translation": "npm:^4.2.1"
"@jupyterlab/ui-components": "npm:^4.2.1"
"@lumino/coreutils": "npm:^2.1.2"
"@lumino/disposable": "npm:^2.1.2"
"@lumino/dragdrop": "npm:^2.1.4"
"@lumino/messaging": "npm:^2.0.1"
"@lumino/signaling": "npm:^2.1.2"
"@lumino/widgets": "npm:^2.3.2"
react: "npm:^18.2.0"
checksum: c5c78558d950ff7b07902c68e550f44570503179c4e3e23f04b39fb87cf522b61202b8331e465388545e14bda2f15542c55da95bc86d4a4b26e0f74d8bd49aa8
languageName: node
linkType: hard
"@jupyterlab/coreutils@npm:^6.2.1":
version: 6.2.1
resolution: "@jupyterlab/coreutils@npm:6.2.1"
dependencies:
"@lumino/coreutils": "npm:^2.1.2"
"@lumino/disposable": "npm:^2.1.2"
"@lumino/signaling": "npm:^2.1.2"
minimist: "npm:~1.2.0"
path-browserify: "npm:^1.0.0"
url-parse: "npm:~1.5.4"
checksum: c8167bd8d4472471297e5669d6b3ee7c9d5c1246e8413680713b15f8a81926d2c97bc6a3c0b26c16603b197b412e01b443cc74b02a3676adea5690aac41964be
languageName: node
linkType: hard
"@jupyterlab/docregistry@npm:^4.2.1":
version: 4.2.1
resolution: "@jupyterlab/docregistry@npm:4.2.1"
dependencies:
"@jupyter/ydoc": "npm:^2.0.1"
"@jupyterlab/apputils": "npm:^4.3.1"
"@jupyterlab/codeeditor": "npm:^4.2.1"
"@jupyterlab/coreutils": "npm:^6.2.1"
"@jupyterlab/observables": "npm:^5.2.1"
"@jupyterlab/rendermime": "npm:^4.2.1"
"@jupyterlab/rendermime-interfaces": "npm:^3.10.1"
"@jupyterlab/services": "npm:^7.2.1"
"@jupyterlab/translation": "npm:^4.2.1"
"@jupyterlab/ui-components": "npm:^4.2.1"
"@lumino/algorithm": "npm:^2.0.1"
"@lumino/coreutils": "npm:^2.1.2"
"@lumino/disposable": "npm:^2.1.2"
"@lumino/messaging": "npm:^2.0.1"
"@lumino/properties": "npm:^2.0.1"
"@lumino/signaling": "npm:^2.1.2"
"@lumino/widgets": "npm:^2.3.2"
react: "npm:^18.2.0"
checksum: 9564d072ec62e40366f3b56bdec9e5d15fe56713f26c84d47e24aa64ce86994b424fb462ea44df1a3906bbd77c26ae6b791651ca152b0905ee323388814bdd37
languageName: node
linkType: hard
"@jupyterlab/nbformat@npm:^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0, @jupyterlab/nbformat@npm:^4.2.1":
version: 4.2.1
resolution: "@jupyterlab/nbformat@npm:4.2.1"
dependencies:
"@lumino/coreutils": "npm:^2.1.2"
checksum: 192167e2a9019bf91e1e7088c9eaaae7b1037f5e7b5db15b97687b052323e6e75913b301ca7a9783d0e59aa36f18ddff90fc71a90a8153e0c89e32fd92b2519c
languageName: node
linkType: hard
"@jupyterlab/observables@npm:^5.2.1":
version: 5.2.1
resolution: "@jupyterlab/observables@npm:5.2.1"
dependencies:
"@lumino/algorithm": "npm:^2.0.1"
"@lumino/coreutils": "npm:^2.1.2"
"@lumino/disposable": "npm:^2.1.2"
"@lumino/messaging": "npm:^2.0.1"
"@lumino/signaling": "npm:^2.1.2"
checksum: 3833d3ad0640a6160fdc5254ec08a600e628e235103e311ca8ee90ade11b73e045ab78b82282153da700f9ae796a99ef36da223baad6c21ad7af0ea84b9514b6
languageName: node
linkType: hard
"@jupyterlab/rendermime-interfaces@npm:^3.10.1":
version: 3.10.1
resolution: "@jupyterlab/rendermime-interfaces@npm:3.10.1"
dependencies:
"@lumino/coreutils": "npm:^1.11.0 || ^2.1.2"
"@lumino/widgets": "npm:^1.37.2 || ^2.3.2"
checksum: 537fe7d96f8e157d89de0035149bf98bfaf1b9fde92d4f58c1e879ce87cab586311aa18dfb02a218bd24aa3cd1f24122e256a70cb2a0a437cc4fea1c9a3f2fa1
languageName: node
linkType: hard
"@jupyterlab/rendermime@npm:^4.2.1":
version: 4.2.1
resolution: "@jupyterlab/rendermime@npm:4.2.1"
dependencies:
"@jupyterlab/apputils": "npm:^4.3.1"
"@jupyterlab/coreutils": "npm:^6.2.1"
"@jupyterlab/nbformat": "npm:^4.2.1"
"@jupyterlab/observables": "npm:^5.2.1"
"@jupyterlab/rendermime-interfaces": "npm:^3.10.1"
"@jupyterlab/services": "npm:^7.2.1"
"@jupyterlab/translation": "npm:^4.2.1"
"@lumino/coreutils": "npm:^2.1.2"
"@lumino/messaging": "npm:^2.0.1"
"@lumino/signaling": "npm:^2.1.2"
"@lumino/widgets": "npm:^2.3.2"
lodash.escape: "npm:^4.0.1"
checksum: 780534260b40ee3a60248cf58d92014e3eb717cabe9380b929f311a8cabffafe6d56f82aa35be62d06d38b3b2fbf1f23285c0abaac8e5a08c5c4be73dc114f07
languageName: node
linkType: hard
"@jupyterlab/services@npm:^7.2.1":
version: 7.2.1
resolution: "@jupyterlab/services@npm:7.2.1"
dependencies:
"@jupyter/ydoc": "npm:^2.0.1"
"@jupyterlab/coreutils": "npm:^6.2.1"
"@jupyterlab/nbformat": "npm:^4.2.1"
"@jupyterlab/settingregistry": "npm:^4.2.1"
"@jupyterlab/statedb": "npm:^4.2.1"
"@lumino/coreutils": "npm:^2.1.2"
"@lumino/disposable": "npm:^2.1.2"
"@lumino/polling": "npm:^2.1.2"
"@lumino/properties": "npm:^2.0.1"
"@lumino/signaling": "npm:^2.1.2"
ws: "npm:^8.11.0"
checksum: f07be2f3a174466c17ab5c22f8ef622fc623e8c61f2220b8bfb465a263971313cb9129e84bba32606e6ab7d1e0be3a9754b97f98e173e9c95eaf0b1c6cd8110a
languageName: node
linkType: hard
"@jupyterlab/settingregistry@npm:^4.2.1":
version: 4.2.1
resolution: "@jupyterlab/settingregistry@npm:4.2.1"
dependencies:
"@jupyterlab/nbformat": "npm:^4.2.1"
"@jupyterlab/statedb": "npm:^4.2.1"
"@lumino/commands": "npm:^2.3.0"
"@lumino/coreutils": "npm:^2.1.2"
"@lumino/disposable": "npm:^2.1.2"
"@lumino/signaling": "npm:^2.1.2"
"@rjsf/utils": "npm:^5.13.4"
ajv: "npm:^8.12.0"
json5: "npm:^2.2.3"
peerDependencies:
react: ">=16"
checksum: 794e5ecde19a40e1b95c0d636eed7b56bbdc46857c8f3b4ef446c1bc90e8ea660c2ccf8f36a238bc312002f106a5a8522bb057742d9c0d674b2974ef21a786d7
languageName: node
linkType: hard
"@jupyterlab/statedb@npm:^4.2.1":
version: 4.2.1
resolution: "@jupyterlab/statedb@npm:4.2.1"
dependencies:
"@lumino/commands": "npm:^2.3.0"
"@lumino/coreutils": "npm:^2.1.2"
"@lumino/disposable": "npm:^2.1.2"
"@lumino/properties": "npm:^2.0.1"
"@lumino/signaling": "npm:^2.1.2"
checksum: 51e07db85269883bcd58fc5ba890db122e260e8d1ce4046f0b188453726694c2d909f27ca069ee3cd6944a93d70fcb8360074f87cdb13d611af2e24f6b14af30
languageName: node
linkType: hard
"@jupyterlab/statusbar@npm:^4.2.1":
version: 4.2.1
resolution: "@jupyterlab/statusbar@npm:4.2.1"
dependencies:
"@jupyterlab/ui-components": "npm:^4.2.1"
"@lumino/algorithm": "npm:^2.0.1"
"@lumino/coreutils": "npm:^2.1.2"
"@lumino/disposable": "npm:^2.1.2"
"@lumino/messaging": "npm:^2.0.1"
"@lumino/signaling": "npm:^2.1.2"
"@lumino/widgets": "npm:^2.3.2"
react: "npm:^18.2.0"
checksum: 65a0e4e0fa29ddd088d8dd2ee007a5166f783aa2852acd4217f2ed52fa04f492119c6e5b6e4f83884766fe7cfed3135ddd8c89b564ac3cc34ed6559457994885
languageName: node
linkType: hard
"@jupyterlab/translation@npm:^4.2.1":
version: 4.2.1
resolution: "@jupyterlab/translation@npm:4.2.1"
dependencies:
"@jupyterlab/coreutils": "npm:^6.2.1"
"@jupyterlab/rendermime-interfaces": "npm:^3.10.1"
"@jupyterlab/services": "npm:^7.2.1"
"@jupyterlab/statedb": "npm:^4.2.1"
"@lumino/coreutils": "npm:^2.1.2"
checksum: 509c9fd8790f852faaa7f956c2ac660247a8d1610cb9f08fd5a357f784a7f32f838ac388a47626da66ee207769253d16ea72235d608112d560dbc10417d9b8e4
languageName: node
linkType: hard
"@jupyterlab/ui-components@npm:^4.2.1":
version: 4.2.1
resolution: "@jupyterlab/ui-components@npm:4.2.1"
dependencies:
"@jupyter/react-components": "npm:^0.15.3"
"@jupyter/web-components": "npm:^0.15.3"
"@jupyterlab/coreutils": "npm:^6.2.1"
"@jupyterlab/observables": "npm:^5.2.1"
"@jupyterlab/rendermime-interfaces": "npm:^3.10.1"
"@jupyterlab/translation": "npm:^4.2.1"
"@lumino/algorithm": "npm:^2.0.1"
"@lumino/commands": "npm:^2.3.0"
"@lumino/coreutils": "npm:^2.1.2"
"@lumino/disposable": "npm:^2.1.2"
"@lumino/messaging": "npm:^2.0.1"
"@lumino/polling": "npm:^2.1.2"
"@lumino/properties": "npm:^2.0.1"
"@lumino/signaling": "npm:^2.1.2"
"@lumino/virtualdom": "npm:^2.0.1"
"@lumino/widgets": "npm:^2.3.2"
"@rjsf/core": "npm:^5.13.4"
"@rjsf/utils": "npm:^5.13.4"
react: "npm:^18.2.0"
react-dom: "npm:^18.2.0"
typestyle: "npm:^2.0.4"
peerDependencies:
react: ^18.2.0
checksum: 7032d7755a7b69e98acc6378d9dedcc56d016cd0d4d6091bda3593baf89876a5e00f84116ab2a5ab5cc68439e07c2194eb7d211b6b3cff0a03cdfd11b03951bd
languageName: node
linkType: hard
"@lumino/algorithm@npm:^2.0.1":
version: 2.0.1
resolution: "@lumino/algorithm@npm:2.0.1"
checksum: cbf7fcf6ee6b785ea502cdfddc53d61f9d353dcb9659343511d5cd4b4030be2ff2ca4c08daec42f84417ab0318a3d9972a17319fa5231693e109ab112dcf8000
languageName: node
linkType: hard
"@lumino/application@npm:^2.3.1":
version: 2.3.1
resolution: "@lumino/application@npm:2.3.1"
dependencies:
"@lumino/commands": "npm:^2.3.0"
"@lumino/coreutils": "npm:^2.1.2"
"@lumino/widgets": "npm:^2.3.2"
checksum: c112789d99baf62e5c2cee98834bc3efb5027bbca1aac81f10ea8855c0cd2538ec0a7c56c3f5dd42dce244e6892ef5bf8ef356f97e1cd4c161b99eb2068c195c
languageName: node
linkType: hard
"@lumino/collections@npm:^2.0.1":
version: 2.0.1
resolution: "@lumino/collections@npm:2.0.1"
dependencies:
"@lumino/algorithm": "npm:^2.0.1"
checksum: 8a29b7973a388a33c5beda0819dcd2dc2aad51a8406dcfd4581b055a9f77a39dc5800f7a8b4ae3c0bb97ae7b56a7a869e2560ffb7a920a28e93b477ba05907d6
languageName: node
linkType: hard
"@lumino/commands@npm:^2.3.0":
version: 2.3.0
resolution: "@lumino/commands@npm:2.3.0"
dependencies:
"@lumino/algorithm": "npm:^2.0.1"
"@lumino/coreutils": "npm:^2.1.2"
"@lumino/disposable": "npm:^2.1.2"
"@lumino/domutils": "npm:^2.0.1"
"@lumino/keyboard": "npm:^2.0.1"
"@lumino/signaling": "npm:^2.1.2"
"@lumino/virtualdom": "npm:^2.0.1"
checksum: a9b83bbfcc0421ff501e818dd234c65db438a8abb450628db0dea9ee05e8077d10b2275e7e2289f6df9c20dc26d2af458b1db88ccf43ec69f185eb207dbad419
languageName: node
linkType: hard
"@lumino/coreutils@npm:^1.11.0 || ^2.0.0, @lumino/coreutils@npm:^1.11.0 || ^2.1.2, @lumino/coreutils@npm:^2.1.2":
version: 2.1.2
resolution: "@lumino/coreutils@npm:2.1.2"
checksum: 7865317ac0676b448d108eb57ab5d8b2a17c101995c0f7a7106662d9fe6c859570104525f83ee3cda12ae2e326803372206d6f4c1f415a5b59e4158a7b81066f
languageName: node
linkType: hard
"@lumino/disposable@npm:^1.10.0 || ^2.0.0, @lumino/disposable@npm:^2.1.2":
version: 2.1.2
resolution: "@lumino/disposable@npm:2.1.2"
dependencies:
"@lumino/signaling": "npm:^2.1.2"
checksum: ac2fb2bf18d0b2939fda454f3db248a0ff6e8a77b401e586d1caa9293b3318f808b93a117c9c3ac27cd17aab545aea83b49108d099b9b2f5503ae2a012fbc6e2
languageName: node
linkType: hard
"@lumino/domutils@npm:^2.0.1":
version: 2.0.1
resolution: "@lumino/domutils@npm:2.0.1"
checksum: 61fa0ab226869dfbb763fc426790cf5a43b7d6f4cea1364c6dd56d61c44bff05eea188d33ff847449608ef58ed343161bee15c19b96f35410e4ee35815dc611a
languageName: node
linkType: hard
"@lumino/dragdrop@npm:^2.1.4":
version: 2.1.4
resolution: "@lumino/dragdrop@npm:2.1.4"
dependencies:
"@lumino/coreutils": "npm:^2.1.2"
"@lumino/disposable": "npm:^2.1.2"
checksum: 43d82484b13b38b612e7dfb424a840ed6a38d0db778af10655c4ba235c67b5b12db1683929b35a36ab2845f77466066dfd1ee25c1c273e8e175677eba9dc560d
languageName: node
linkType: hard
"@lumino/keyboard@npm:^2.0.1":
version: 2.0.1
resolution: "@lumino/keyboard@npm:2.0.1"
checksum: cf33f13427a418efd7cc91061233321e860d5404f3d86397781028309bef86c8ad2d88276ffe335c1db0fe619bd9d1e60641c81f881696957a58703ee4652c3e
languageName: node
linkType: hard
"@lumino/messaging@npm:^2.0.1":
version: 2.0.1
resolution: "@lumino/messaging@npm:2.0.1"
dependencies:
"@lumino/algorithm": "npm:^2.0.1"
"@lumino/collections": "npm:^2.0.1"
checksum: 964c4651c374b17452b4252b7d71500b32d2ecd87c192fc5bcf5d3bd1070661d78d07edcac8eca7d1d6fd50aa25992505485e1296d6dd995691b8e349b652045
languageName: node
linkType: hard
"@lumino/polling@npm:^2.1.2":
version: 2.1.2
resolution: "@lumino/polling@npm:2.1.2"
dependencies:
"@lumino/coreutils": "npm:^2.1.2"
"@lumino/disposable": "npm:^2.1.2"
"@lumino/signaling": "npm:^2.1.2"
checksum: fa9b401e6dbeb8f31d7e3ba485e8ef1e0c92b3f2da086239c0ed49931026f5d3528709193c93e031e35ac624fb4bbbfcdcbaa0e25eb797f36e2952e5cd91e9e3
languageName: node
linkType: hard
"@lumino/properties@npm:^2.0.1":
version: 2.0.1
resolution: "@lumino/properties@npm:2.0.1"
checksum: c50173a935148cc4148fdaea119df1d323ee004ae16ab666800388d27e9730345629662d85f25591683329b39f0cdae60ee8c94e8943b4d0ef7d7370a38128d6
languageName: node
linkType: hard
"@lumino/signaling@npm:^1.10.0 || ^2.0.0, @lumino/signaling@npm:^2.1.2":
version: 2.1.2
resolution: "@lumino/signaling@npm:2.1.2"
dependencies:
"@lumino/algorithm": "npm:^2.0.1"
"@lumino/coreutils": "npm:^2.1.2"
checksum: ad7d7153db57980da899c43e412e6130316ef30b231a70250e7af49058db16cadb018c1417a2ea8083d83c48623cfe6b705fa82bf10216b1a8949aed9f4aca4e
languageName: node
linkType: hard
"@lumino/virtualdom@npm:^2.0.1":
version: 2.0.1
resolution: "@lumino/virtualdom@npm:2.0.1"
dependencies:
"@lumino/algorithm": "npm:^2.0.1"
checksum: cf59b6f15b430e13e9e657b7a0619b9056cd9ea7b2a87f407391d071c501b77403c302b6a66dca510382045e75b2e3fe551630bb391f1c6b33678057d4bec164
languageName: node
linkType: hard
"@lumino/widgets@npm:^1.37.2 || ^2.3.2, @lumino/widgets@npm:^2.3.2":
version: 2.3.2
resolution: "@lumino/widgets@npm:2.3.2"
dependencies:
"@lumino/algorithm": "npm:^2.0.1"
"@lumino/commands": "npm:^2.3.0"
"@lumino/coreutils": "npm:^2.1.2"
"@lumino/disposable": "npm:^2.1.2"
"@lumino/domutils": "npm:^2.0.1"
"@lumino/dragdrop": "npm:^2.1.4"
"@lumino/keyboard": "npm:^2.0.1"
"@lumino/messaging": "npm:^2.0.1"
"@lumino/properties": "npm:^2.0.1"
"@lumino/signaling": "npm:^2.1.2"
"@lumino/virtualdom": "npm:^2.0.1"
checksum: 954fe066b0826cf00c019731bb3f70e635c63be4a0ce27f7573dbe6bd59e2154f511594b50e8f58f44877cf514084128c1e894ecbbbfd6e20d937e5cfb69ca8b
languageName: node
linkType: hard
"@microsoft/fast-colors@npm:^5.3.1":
version: 5.3.1
resolution: "@microsoft/fast-colors@npm:5.3.1"
checksum: ff87f402faadb4b5aeee3d27762566c11807f927cd4012b8bbc7f073ca68de0e2197f95330ff5dfd7038f4b4f0e2f51b11feb64c5d570f5c598d37850a5daf60
languageName: node
linkType: hard
"@microsoft/fast-element@npm:^1.12.0, @microsoft/fast-element@npm:^1.13.0":
version: 1.13.0
resolution: "@microsoft/fast-element@npm:1.13.0"
checksum: 1cb7b4cfb7531116a3542d3f59bf1dd35106194f5764205403590250aaff744de79e35a5a1f36b4941c4eda9edc088148d4d629fb80be15fdf25f6be01770f3a
languageName: node
linkType: hard
"@microsoft/fast-foundation@npm:^2.49.4, @microsoft/fast-foundation@npm:^2.49.6":
version: 2.49.6
resolution: "@microsoft/fast-foundation@npm:2.49.6"
dependencies:
"@microsoft/fast-element": "npm:^1.13.0"
"@microsoft/fast-web-utilities": "npm:^5.4.1"
tabbable: "npm:^5.2.0"
tslib: "npm:^1.13.0"
checksum: 15fdf9dd0b910a72a9cff140f765d522304df11f8a78d5a97a815e2bbae25027c2b336e94f89ca31e650d6aabe17b590b7453acc0d2cb7340c219eb76350a942
languageName: node
linkType: hard
"@microsoft/fast-react-wrapper@npm:^0.3.22":
version: 0.3.24
resolution: "@microsoft/fast-react-wrapper@npm:0.3.24"
dependencies:
"@microsoft/fast-element": "npm:^1.13.0"
"@microsoft/fast-foundation": "npm:^2.49.6"
peerDependencies:
react: ">=16.9.0"
checksum: 1d7a87509c22872bafc9b5c64f66659e52ba0cfdff484d7204125e503dafdea143f5e1bd2a643e2f3fbba6cc7567d916393369433f19dab9f0adcbe7a88b7d98
languageName: node
linkType: hard
"@microsoft/fast-web-utilities@npm:^5.4.1":
version: 5.4.1
resolution: "@microsoft/fast-web-utilities@npm:5.4.1"
dependencies:
exenv-es6: "npm:^1.1.1"
checksum: 303e87847f962944f474e3716c3eb305668243916ca9e0719e26bb9a32346144bc958d915c103776b3e552cea0f0f6233f839fad66adfdf96a8436b947288ca7
languageName: node
linkType: hard
"@nodelib/fs.scandir@npm:2.1.5":
version: 2.1.5
resolution: "@nodelib/fs.scandir@npm:2.1.5"
dependencies:
"@nodelib/fs.stat": "npm:2.0.5"
run-parallel: "npm:^1.1.9"
checksum: a970d595bd23c66c880e0ef1817791432dbb7acbb8d44b7e7d0e7a22f4521260d4a83f7f9fd61d44fda4610105577f8f58a60718105fb38352baed612fd79e59
languageName: node
linkType: hard
"@nodelib/fs.stat@npm:2.0.5, @nodelib/fs.stat@npm:^2.0.2":
version: 2.0.5
resolution: "@nodelib/fs.stat@npm:2.0.5"
checksum: 012480b5ca9d97bff9261571dbbec7bbc6033f69cc92908bc1ecfad0792361a5a1994bc48674b9ef76419d056a03efadfce5a6cf6dbc0a36559571a7a483f6f0
languageName: node
linkType: hard
"@nodelib/fs.walk@npm:^1.2.3, @nodelib/fs.walk@npm:^1.2.8":
version: 1.2.8
resolution: "@nodelib/fs.walk@npm:1.2.8"
dependencies:
"@nodelib/fs.scandir": "npm:2.1.5"
fastq: "npm:^1.6.0"
checksum: 190c643f156d8f8f277bf2a6078af1ffde1fd43f498f187c2db24d35b4b4b5785c02c7dc52e356497b9a1b65b13edc996de08de0b961c32844364da02986dc53
languageName: node
linkType: hard
"@pkgjs/parseargs@npm:^0.11.0":
version: 0.11.0
resolution: "@pkgjs/parseargs@npm:0.11.0"
checksum: 6ad6a00fc4f2f2cfc6bff76fb1d88b8ee20bc0601e18ebb01b6d4be583733a860239a521a7fbca73b612e66705078809483549d2b18f370eb346c5155c8e4a0f
languageName: node
linkType: hard
"@pkgr/core@npm:^0.1.0":
version: 0.1.1
resolution: "@pkgr/core@npm:0.1.1"
checksum: 6f25fd2e3008f259c77207ac9915b02f1628420403b2630c92a07ff963129238c9262afc9e84344c7a23b5cc1f3965e2cd17e3798219f5fd78a63d144d3cceba
languageName: node
linkType: hard
"@rjsf/core@npm:^5.13.4":
version: 5.18.4
resolution: "@rjsf/core@npm:5.18.4"
dependencies:
lodash: "npm:^4.17.21"
lodash-es: "npm:^4.17.21"
markdown-to-jsx: "npm:^7.4.1"
nanoid: "npm:^3.3.7"
prop-types: "npm:^15.8.1"
peerDependencies:
"@rjsf/utils": ^5.18.x
react: ^16.14.0 || >=17
checksum: 8c3f49914be396595ce67dc4c36ac25c5cb6673917ec82c47f79321f5bb78d02741e8dca39287d0435270e7c9ccb06f7d40e396bdf71a3e9eb1371ef16954817
languageName: node
linkType: hard
"@rjsf/utils@npm:^5.13.4":
version: 5.18.4
resolution: "@rjsf/utils@npm:5.18.4"
dependencies:
json-schema-merge-allof: "npm:^0.8.1"
jsonpointer: "npm:^5.0.1"
lodash: "npm:^4.17.21"
lodash-es: "npm:^4.17.21"
react-is: "npm:^18.2.0"
peerDependencies:
react: ^16.14.0 || >=17
checksum: d7cf514527ec50a94751c5ec1f9e5eafd89d0c56441a22ae28a4e667aaa7c60447e1e1ccf8355c5be5b97e9a1163853c116816b13307e3463433d50f6b89bb3e
languageName: node
linkType: hard
"@types/create-react-class@npm:*":
version: 15.6.8
resolution: "@types/create-react-class@npm:15.6.8"
dependencies:
"@types/prop-types": "npm:*"
"@types/react": "npm:*"
checksum: a4237559499c77205c7e73269e53db6ada257e21a638f7222f20ffcd66d1a9c2ed1819ceca067a3edbdb47960d8a60ecd2c6de5a0cb9ed8e9de03e4ced144397
languageName: node
linkType: hard
"@types/eslint-scope@npm:^3.7.3":
version: 3.7.7
resolution: "@types/eslint-scope@npm:3.7.7"
dependencies:
"@types/eslint": "npm:*"
"@types/estree": "npm:*"
checksum: e2889a124aaab0b89af1bab5959847c5bec09809209255de0e63b9f54c629a94781daa04adb66bffcdd742f5e25a17614fb933965093c0eea64aacda4309380e
languageName: node
linkType: hard
"@types/eslint@npm:*":
version: 8.56.10
resolution: "@types/eslint@npm:8.56.10"
dependencies:
"@types/estree": "npm:*"
"@types/json-schema": "npm:*"
checksum: fb7137dd263ce1130b42d14452bdd0266ef81f52cb55ba1a5e9750e65da1f0596dc598c88bffc7e415458b6cb611a876dcc132bcf40ea48701c6d05b40c57be5
languageName: node
linkType: hard
"@types/estree@npm:*, @types/estree@npm:^1.0.5":
version: 1.0.5
resolution: "@types/estree@npm:1.0.5"
checksum: dd8b5bed28e6213b7acd0fb665a84e693554d850b0df423ac8076cc3ad5823a6bc26b0251d080bdc545af83179ede51dd3f6fa78cad2c46ed1f29624ddf3e41a
languageName: node
linkType: hard
"@types/json-schema@npm:*, @types/json-schema@npm:^7.0.11, @types/json-schema@npm:^7.0.12, @types/json-schema@npm:^7.0.5, @types/json-schema@npm:^7.0.8, @types/json-schema@npm:^7.0.9":
version: 7.0.15
resolution: "@types/json-schema@npm:7.0.15"
checksum: 97ed0cb44d4070aecea772b7b2e2ed971e10c81ec87dd4ecc160322ffa55ff330dace1793489540e3e318d90942064bb697cc0f8989391797792d919737b3b98
languageName: node
linkType: hard
"@types/minimist@npm:^1.2.2":
version: 1.2.5
resolution: "@types/minimist@npm:1.2.5"
checksum: 477047b606005058ab0263c4f58097136268007f320003c348794f74adedc3166ffc47c80ec3e94687787f2ab7f4e72c468223946e79892cf0fd9e25e9970a90
languageName: node
linkType: hard
"@types/node@npm:*":
version: 20.12.12
resolution: "@types/node@npm:20.12.12"
dependencies:
undici-types: "npm:~5.26.4"
checksum: 5373983874b9af7c216e7ca5d26b32a8d9829c703a69f1e66f2113598b5be8582c0e009ca97369f1ec9a6282b3f92812208d06eb1e9fc3bd9b939b022303d042
languageName: node
linkType: hard
"@types/normalize-package-data@npm:^2.4.0":
version: 2.4.4
resolution: "@types/normalize-package-data@npm:2.4.4"
checksum: 65dff72b543997b7be8b0265eca7ace0e34b75c3e5fee31de11179d08fa7124a7a5587265d53d0409532ecb7f7fba662c2012807963e1f9b059653ec2c83ee05
languageName: node
linkType: hard
"@types/prop-types@npm:*":
version: 15.7.12
resolution: "@types/prop-types@npm:15.7.12"
checksum: ac16cc3d0a84431ffa5cfdf89579ad1e2269549f32ce0c769321fdd078f84db4fbe1b461ed5a1a496caf09e637c0e367d600c541435716a55b1d9713f5035dfe
languageName: node
linkType: hard
"@types/react-addons-linked-state-mixin@npm:^0.14.22":
version: 0.14.27
resolution: "@types/react-addons-linked-state-mixin@npm:0.14.27"
dependencies:
"@types/create-react-class": "npm:*"
"@types/react": "npm:*"
checksum: a78007698a236335a50c74ddd27669028213ff363219f97a6ea1f000ddb8714c83838002ea07c33024f964112a229e447127b457fa3f9b3db352dd41d6b8d328
languageName: node
linkType: hard
"@types/react@npm:*, @types/react@npm:^18.0.26":
version: 18.3.3
resolution: "@types/react@npm:18.3.3"
dependencies:
"@types/prop-types": "npm:*"
csstype: "npm:^3.0.2"
checksum: c63d6a78163244e2022b01ef79b0baec4fe4da3475dc4a90bb8accefad35ef0c43560fd0312e5974f92a0f1108aa4d669ac72d73d66396aa060ea03b5d2e3873
languageName: node
linkType: hard
"@types/semver@npm:^7.5.0":
version: 7.5.8
resolution: "@types/semver@npm:7.5.8"
checksum: ea6f5276f5b84c55921785a3a27a3cd37afee0111dfe2bcb3e03c31819c197c782598f17f0b150a69d453c9584cd14c4c4d7b9a55d2c5e6cacd4d66fdb3b3663
languageName: node
linkType: hard
"@types/source-list-map@npm:*":
version: 0.1.6
resolution: "@types/source-list-map@npm:0.1.6"
checksum: 9cd294c121f1562062de5d241fe4d10780b1131b01c57434845fe50968e9dcf67ede444591c2b1ad6d3f9b6bc646ac02cc8f51a3577c795f9c64cf4573dcc6b1
languageName: node
linkType: hard
"@types/webpack-sources@npm:^0.1.5":
version: 0.1.12
resolution: "@types/webpack-sources@npm:0.1.12"
dependencies:
"@types/node": "npm:*"
"@types/source-list-map": "npm:*"
source-map: "npm:^0.6.1"
checksum: 75342659a9889478969f7bb7360b998aa084ba11ab523c172ded6a807dac43ab2a9e1212078ef8bbf0f33e4fadd2c8a91b75d38184d8030d96a32fe819c9bb57
languageName: node
linkType: hard
"@typescript-eslint/eslint-plugin@npm:^6.1.0":
version: 6.21.0
resolution: "@typescript-eslint/eslint-plugin@npm:6.21.0"
dependencies:
"@eslint-community/regexpp": "npm:^4.5.1"
"@typescript-eslint/scope-manager": "npm:6.21.0"
"@typescript-eslint/type-utils": "npm:6.21.0"
"@typescript-eslint/utils": "npm:6.21.0"
"@typescript-eslint/visitor-keys": "npm:6.21.0"
debug: "npm:^4.3.4"
graphemer: "npm:^1.4.0"
ignore: "npm:^5.2.4"
natural-compare: "npm:^1.4.0"
semver: "npm:^7.5.4"
ts-api-utils: "npm:^1.0.1"
peerDependencies:
"@typescript-eslint/parser": ^6.0.0 || ^6.0.0-alpha
eslint: ^7.0.0 || ^8.0.0
peerDependenciesMeta:
typescript:
optional: true
checksum: 5ef2c502255e643e98051e87eb682c2a257e87afd8ec3b9f6274277615e1c2caf3131b352244cfb1987b8b2c415645eeacb9113fa841fc4c9b2ac46e8aed6efd
languageName: node
linkType: hard
"@typescript-eslint/parser@npm:^6.1.0":
version: 6.21.0