-
Notifications
You must be signed in to change notification settings - Fork 1
/
yarn.lock
5536 lines (4975 loc) · 195 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
"@aashutoshrathi/word-wrap@npm:^1.2.3":
version: 1.2.6
resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
checksum: ada901b9e7c680d190f1d012c84217ce0063d8f5c5a7725bb91ec3c5ed99bb7572680eb2d2938a531ccbaec39a95422fcd8a6b4a13110c7d98dd75402f66a0cd
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0":
version: 7.23.5
resolution: "@babel/code-frame@npm:7.23.5"
dependencies:
"@babel/highlight": "npm:^7.23.4"
chalk: "npm:^2.4.2"
checksum: d90981fdf56a2824a9b14d19a4c0e8db93633fd488c772624b4e83e0ceac6039a27cd298a247c3214faa952bf803ba23696172ae7e7235f3b97f43ba278c569a
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.22.20":
version: 7.22.20
resolution: "@babel/helper-validator-identifier@npm:7.22.20"
checksum: 136412784d9428266bcdd4d91c32bcf9ff0e8d25534a9d94b044f77fe76bc50f941a90319b05aafd1ec04f7d127cd57a179a3716009ff7f3412ef835ada95bdc
languageName: node
linkType: hard
"@babel/highlight@npm:^7.23.4":
version: 7.23.4
resolution: "@babel/highlight@npm:7.23.4"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.22.20"
chalk: "npm:^2.4.2"
js-tokens: "npm:^4.0.0"
checksum: 643acecdc235f87d925979a979b539a5d7d1f31ae7db8d89047269082694122d11aa85351304c9c978ceeb6d250591ccadb06c366f358ccee08bb9c122476b89
languageName: node
linkType: hard
"@codemirror/state@npm:^6.2.0":
version: 6.4.1
resolution: "@codemirror/state@npm:6.4.1"
checksum: b81b55574091349eed4d32fc0eadb0c9688f1f7c98b681318f59138ee0f527cb4c4a97831b70547c0640f02f3127647838ae6730782de4a3dd2cc58836125d01
languageName: node
linkType: hard
"@csstools/selector-specificity@npm:^2.0.2":
version: 2.2.0
resolution: "@csstools/selector-specificity@npm:2.2.0"
peerDependencies:
postcss-selector-parser: ^6.0.10
checksum: 97c89f23b3b527d7bd51ed299969ed2b9fbb219a367948b44aefec228b8eda6ae0ad74fe8a82f9aac8ff32cfd00bb6d0c98d1daeab2e8fc6d5c4af25e5be5673
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":
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.4.0, @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.2
resolution: "@humanwhocodes/object-schema@npm:2.0.2"
checksum: 2fc11503361b5fb4f14714c700c02a3f4c7c93e9acd6b87a29f62c522d90470f364d6161b03d1cc618b979f2ae02aed1106fd29d302695d8927e2fc8165ba8ee
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.2":
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.2, @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:^1.1.1":
version: 1.1.1
resolution: "@jupyter/ydoc@npm:1.1.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: a239b1dd57cfc9ba36c06ac5032a1b6388849ae01a1d0db0d45094f71fdadf4d473b4bf8becbef0cfcdc85cae505361fbec0822b02da5aa48e06b66f742dd7a0
languageName: node
linkType: hard
"@jupyterlab/application@npm:^4.0.0":
version: 4.1.4
resolution: "@jupyterlab/application@npm:4.1.4"
dependencies:
"@fortawesome/fontawesome-free": "npm:^5.12.0"
"@jupyterlab/apputils": "npm:^4.2.4"
"@jupyterlab/coreutils": "npm:^6.1.4"
"@jupyterlab/docregistry": "npm:^4.1.4"
"@jupyterlab/rendermime": "npm:^4.1.4"
"@jupyterlab/rendermime-interfaces": "npm:^3.9.4"
"@jupyterlab/services": "npm:^7.1.4"
"@jupyterlab/statedb": "npm:^4.1.4"
"@jupyterlab/translation": "npm:^4.1.4"
"@jupyterlab/ui-components": "npm:^4.1.4"
"@lumino/algorithm": "npm:^2.0.1"
"@lumino/application": "npm:^2.3.0"
"@lumino/commands": "npm:^2.2.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.1"
checksum: 0133dc66a79be926015788970cedcdb77202db411bc20eab10712c85b1392a43e1353d7bf8a160ca8104d5cba45092c695d13fe83b105a7ddc4a5a41f951afb6
languageName: node
linkType: hard
"@jupyterlab/apputils@npm:^4.2.4":
version: 4.2.4
resolution: "@jupyterlab/apputils@npm:4.2.4"
dependencies:
"@jupyterlab/coreutils": "npm:^6.1.4"
"@jupyterlab/observables": "npm:^5.1.4"
"@jupyterlab/rendermime-interfaces": "npm:^3.9.4"
"@jupyterlab/services": "npm:^7.1.4"
"@jupyterlab/settingregistry": "npm:^4.1.4"
"@jupyterlab/statedb": "npm:^4.1.4"
"@jupyterlab/statusbar": "npm:^4.1.4"
"@jupyterlab/translation": "npm:^4.1.4"
"@jupyterlab/ui-components": "npm:^4.1.4"
"@lumino/algorithm": "npm:^2.0.1"
"@lumino/commands": "npm:^2.2.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.1"
"@types/react": "npm:^18.0.26"
react: "npm:^18.2.0"
sanitize-html: "npm:~2.7.3"
checksum: e82f8202e7e3b83b6d8e9133b9e10a1cbdc3e561372cce69d3a3a32b28c6f34d65453f5b234a1b47f55007de7422b4d0c6893fbe72372b8990c571147610022f
languageName: node
linkType: hard
"@jupyterlab/builder@npm:^4.0.0":
version: 4.1.4
resolution: "@jupyterlab/builder@npm:4.1.4"
dependencies:
"@lumino/algorithm": "npm:^2.0.1"
"@lumino/application": "npm:^2.3.0"
"@lumino/commands": "npm:^2.2.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.1"
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: 16033e4a1b9699fd9315ffdc52b5b17dd463ffbd5c2fc766e717db0c0fbcdf4ffe5516792dfdcff4702320f0e1a8277c5cfc578a14dd8136ab7099ff1cead5a3
languageName: node
linkType: hard
"@jupyterlab/codeeditor@npm:^4.1.4":
version: 4.1.4
resolution: "@jupyterlab/codeeditor@npm:4.1.4"
dependencies:
"@codemirror/state": "npm:^6.2.0"
"@jupyter/ydoc": "npm:^1.1.1"
"@jupyterlab/apputils": "npm:^4.2.4"
"@jupyterlab/coreutils": "npm:^6.1.4"
"@jupyterlab/nbformat": "npm:^4.1.4"
"@jupyterlab/observables": "npm:^5.1.4"
"@jupyterlab/statusbar": "npm:^4.1.4"
"@jupyterlab/translation": "npm:^4.1.4"
"@jupyterlab/ui-components": "npm:^4.1.4"
"@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.1"
react: "npm:^18.2.0"
checksum: 625c58d80055a4992cf855a207413a827f276fa2737ec50ce05b5037cd08d31129d4e022ff838ea31a54e0c7468f79dfe3bf2e266c7471999d02373b3841fbdd
languageName: node
linkType: hard
"@jupyterlab/coreutils@npm:^6.1.4":
version: 6.1.4
resolution: "@jupyterlab/coreutils@npm:6.1.4"
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: 8f12a4560dc4dc865f4ef45079aac49c2cc532993f96b993d3638017e6cdd8e3615539bec116bee925d013e46032f6b76213bb7f28a268fdad9d8fd6d30eb445
languageName: node
linkType: hard
"@jupyterlab/docregistry@npm:^4.1.4":
version: 4.1.4
resolution: "@jupyterlab/docregistry@npm:4.1.4"
dependencies:
"@jupyter/ydoc": "npm:^1.1.1"
"@jupyterlab/apputils": "npm:^4.2.4"
"@jupyterlab/codeeditor": "npm:^4.1.4"
"@jupyterlab/coreutils": "npm:^6.1.4"
"@jupyterlab/observables": "npm:^5.1.4"
"@jupyterlab/rendermime": "npm:^4.1.4"
"@jupyterlab/rendermime-interfaces": "npm:^3.9.4"
"@jupyterlab/services": "npm:^7.1.4"
"@jupyterlab/translation": "npm:^4.1.4"
"@jupyterlab/ui-components": "npm:^4.1.4"
"@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.1"
react: "npm:^18.2.0"
checksum: 632046a7e524f9e33bdf5f13bd97f5495da7c01f38b505426ec05b82f61c81ab4e3f9a8cf2e804ce93dfe5eac3568b720e0c826249b683f2341ca99a186e463d
languageName: node
linkType: hard
"@jupyterlab/nbformat@npm:^3.0.0 || ^4.0.0-alpha.21 || ^4.0.0, @jupyterlab/nbformat@npm:^4.1.4":
version: 4.1.4
resolution: "@jupyterlab/nbformat@npm:4.1.4"
dependencies:
"@lumino/coreutils": "npm:^2.1.2"
checksum: ac1e5c8a44f1140cdc2884493a4f63d243d0260c0f2ad4c6bf086f303faa252388869898b9fd4e2afd507c74e2442ea8e021f9811153284993f688ec446e19dc
languageName: node
linkType: hard
"@jupyterlab/observables@npm:^5.1.4":
version: 5.1.4
resolution: "@jupyterlab/observables@npm:5.1.4"
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: ed0ab2689ef5c2056c2a8e15f5afa339ceb26dabe598323161af2b62835f45038c30b5d620ddd9d65e17968b3c5d1996fddbd951e6f85ecba44983107908a9c5
languageName: node
linkType: hard
"@jupyterlab/rendermime-interfaces@npm:^3.9.4":
version: 3.9.4
resolution: "@jupyterlab/rendermime-interfaces@npm:3.9.4"
dependencies:
"@lumino/coreutils": "npm:^1.11.0 || ^2.1.2"
"@lumino/widgets": "npm:^1.37.2 || ^2.3.1"
checksum: eee9c525bd4f4406561031f6c8f96528eac55b07eb90cde283b73118283198a93c88c47989d4f379b7dd9648f5d964f7aeb0d6b97e261cb662243a950f51e7cb
languageName: node
linkType: hard
"@jupyterlab/rendermime@npm:^4.1.4":
version: 4.1.4
resolution: "@jupyterlab/rendermime@npm:4.1.4"
dependencies:
"@jupyterlab/apputils": "npm:^4.2.4"
"@jupyterlab/coreutils": "npm:^6.1.4"
"@jupyterlab/nbformat": "npm:^4.1.4"
"@jupyterlab/observables": "npm:^5.1.4"
"@jupyterlab/rendermime-interfaces": "npm:^3.9.4"
"@jupyterlab/services": "npm:^7.1.4"
"@jupyterlab/translation": "npm:^4.1.4"
"@lumino/coreutils": "npm:^2.1.2"
"@lumino/messaging": "npm:^2.0.1"
"@lumino/signaling": "npm:^2.1.2"
"@lumino/widgets": "npm:^2.3.1"
lodash.escape: "npm:^4.0.1"
checksum: 05e52e99c13616cf4eaaa3c162ef38df1dda262751c29361972d3de917efdcc10e3e29baa6f29e70fd1d14457cca2cf138cdc8b792d49242fe85c64e195673e8
languageName: node
linkType: hard
"@jupyterlab/services@npm:^7.1.4":
version: 7.1.4
resolution: "@jupyterlab/services@npm:7.1.4"
dependencies:
"@jupyter/ydoc": "npm:^1.1.1"
"@jupyterlab/coreutils": "npm:^6.1.4"
"@jupyterlab/nbformat": "npm:^4.1.4"
"@jupyterlab/settingregistry": "npm:^4.1.4"
"@jupyterlab/statedb": "npm:^4.1.4"
"@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: 6e9db4003063e6c7fcb0d6019ac03fdea37519b63b9689187345789d5845a84a15c7f1530043c58bbedf132f84e38c4c3f5b24aff94e095a954564cbfd8c0f0e
languageName: node
linkType: hard
"@jupyterlab/settingregistry@npm:^4.1.4":
version: 4.1.4
resolution: "@jupyterlab/settingregistry@npm:4.1.4"
dependencies:
"@jupyterlab/nbformat": "npm:^4.1.4"
"@jupyterlab/statedb": "npm:^4.1.4"
"@lumino/commands": "npm:^2.2.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: 527b859a3424c781d441fb0bb973399a98d44e1748fc0094d17f5e2ed0e3dee9f2e6dfa14c09d6e0055859d323bef72ba7ed33a968b923570cf46eb63a3d7bfa
languageName: node
linkType: hard
"@jupyterlab/statedb@npm:^4.1.4":
version: 4.1.4
resolution: "@jupyterlab/statedb@npm:4.1.4"
dependencies:
"@lumino/commands": "npm:^2.2.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: 6038cfd3efa71acf54ed4a46b41ea4685ca22e5c6357a914f0a5d7b855e7ae3cbe5bb1d0fda6b638a8a9db64390a7a92b2c747dc0c342d8d2e75877d7243b4ef
languageName: node
linkType: hard
"@jupyterlab/statusbar@npm:^4.1.4":
version: 4.1.4
resolution: "@jupyterlab/statusbar@npm:4.1.4"
dependencies:
"@jupyterlab/ui-components": "npm:^4.1.4"
"@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.1"
react: "npm:^18.2.0"
checksum: 5b5491fb5acd835138ed6bcae70cab3d0f5c8a4bd8684df4b37e42d5a6562de8e31d0a9ec539f7efba9d2080d2acf0e0e7aae3a6dcb2a3767302b9e171ca401b
languageName: node
linkType: hard
"@jupyterlab/translation@npm:^4.1.4":
version: 4.1.4
resolution: "@jupyterlab/translation@npm:4.1.4"
dependencies:
"@jupyterlab/coreutils": "npm:^6.1.4"
"@jupyterlab/rendermime-interfaces": "npm:^3.9.4"
"@jupyterlab/services": "npm:^7.1.4"
"@jupyterlab/statedb": "npm:^4.1.4"
"@lumino/coreutils": "npm:^2.1.2"
checksum: 56de556b35b985748ad7ecc6175dc72a9a297ab61fc96d24d2942e972a51ec24e03f572351e7efbbd6eabe9c987247bcc27761bb9a330e2ac61d9b60ff36f273
languageName: node
linkType: hard
"@jupyterlab/ui-components@npm:^4.1.4":
version: 4.1.4
resolution: "@jupyterlab/ui-components@npm:4.1.4"
dependencies:
"@jupyter/react-components": "npm:^0.15.2"
"@jupyter/web-components": "npm:^0.15.2"
"@jupyterlab/coreutils": "npm:^6.1.4"
"@jupyterlab/observables": "npm:^5.1.4"
"@jupyterlab/rendermime-interfaces": "npm:^3.9.4"
"@jupyterlab/translation": "npm:^4.1.4"
"@lumino/algorithm": "npm:^2.0.1"
"@lumino/commands": "npm:^2.2.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.1"
"@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: f7fcb7e8cb36ac3f44f4249bbba4d36ce3207dade3129672571d3982c0fd1354d50faedd09475cf0b17c2ffaf81603fffba9cb7f978277461a649b4ddec7eef5
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.0":
version: 2.3.0
resolution: "@lumino/application@npm:2.3.0"
dependencies:
"@lumino/commands": "npm:^2.2.0"
"@lumino/coreutils": "npm:^2.1.2"
"@lumino/widgets": "npm:^2.3.1"
checksum: 9d1eb5bc972ed158bf219604a53bbac1262059bc5b0123d3e041974486b9cbb8288abeeec916f3b62f62d7c32e716cccf8b73e4832ae927e4f9dd4e4b0cd37ed
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.2.0":
version: 2.2.0
resolution: "@lumino/commands@npm:2.2.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: 093e9715491e5cef24bc80665d64841417b400f2fa595f9b60832a3b6340c405c94a6aa276911944a2c46d79a6229f3cc087b73f50852bba25ece805abd0fae9
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.1, @lumino/widgets@npm:^2.0.1, @lumino/widgets@npm:^2.3.1":
version: 2.3.1
resolution: "@lumino/widgets@npm:2.3.1"
dependencies:
"@lumino/algorithm": "npm:^2.0.1"
"@lumino/commands": "npm:^2.2.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: ba7b8f8839c1cd2a41dbda13281094eb6981a270cccf4f25a0cf83686dcc526a2d8044a20204317630bb7dd4a04d65361408c7623a921549c781afca84b91c67
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":
version: 1.12.0
resolution: "@microsoft/fast-element@npm:1.12.0"
checksum: bbff4e9c83106d1d74f3eeedc87bf84832429e78fee59c6a4ae8164ee4f42667503f586896bea72341b4d2c76c244a3cb0d4fd0d5d3732755f00357714dd609e
languageName: node
linkType: hard
"@microsoft/fast-foundation@npm:^2.49.4, @microsoft/fast-foundation@npm:^2.49.5":
version: 2.49.5
resolution: "@microsoft/fast-foundation@npm:2.49.5"
dependencies:
"@microsoft/fast-element": "npm:^1.12.0"
"@microsoft/fast-web-utilities": "npm:^5.4.1"
tabbable: "npm:^5.2.0"
tslib: "npm:^1.13.0"
checksum: 8a4729e8193ee93f780dc88fac26561b42f2636e3f0a8e89bb1dfe256f50a01a21ed1d8e4d31ce40678807dc833e25f31ba735cb5d3c247b65219aeb2560c82c
languageName: node
linkType: hard
"@microsoft/fast-react-wrapper@npm:^0.3.22":
version: 0.3.23
resolution: "@microsoft/fast-react-wrapper@npm:0.3.23"
dependencies:
"@microsoft/fast-element": "npm:^1.12.0"
"@microsoft/fast-foundation": "npm:^2.49.5"
peerDependencies:
react: ">=16.9.0"
checksum: 45885e1868916d2aa9059e99c341c97da434331d9340a57128d4218081df68b5e1107031c608db9a550d6d1c3b010d516ed4f8dc5a8a2470058da6750dcd204a
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
"@rjsf/core@npm:^5.13.4":
version: 5.17.1
resolution: "@rjsf/core@npm:5.17.1"
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.16.x
react: ^16.14.0 || >=17
checksum: 2dead2886a4db152d259d3e85281c1fa5975eeac5f05c2840201ccc583ef1cf9d48c922cd404d515133e140eae7a8fca4aa63ccde0bcfe63d0b3fbe3cd621aed
languageName: node
linkType: hard
"@rjsf/utils@npm:^5.13.4":
version: 5.17.1
resolution: "@rjsf/utils@npm:5.17.1"
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: 83010de66b06f1046b023a0b7d0bf30b5f47b152893c3b12f1f42faa89e7c7d18b2f04fe2e9035e5f63454317f09e6d5753fc014d43b933c8023b71fc50c3acf
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.5
resolution: "@types/eslint@npm:8.56.5"
dependencies:
"@types/estree": "npm:*"
"@types/json-schema": "npm:*"
checksum: 95a7a23ca38c78e5c27a2ed36ef60f094d5e6589e3473c320b6ff69eb3ca6333d5b7f0d5053416369f5ab2fb86874df19562d4d67a98237c17def6e30abff540
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.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/lodash@npm:^4.17.0":
version: 4.17.0
resolution: "@types/lodash@npm:4.17.0"
checksum: 3f98c0b67a93994cbc3403d4fa9dbaf52b0b6bb7f07a764d73875c2dcd5ef91222621bd5bcf8eee7b417a74d175c2f7191b9f595f8603956fd06f0674c0cba93
languageName: node
linkType: hard
"@types/minimist@npm:^1.2.0":
version: 1.2.5
resolution: "@types/minimist@npm:1.2.5"
checksum: 477047b606005058ab0263c4f58097136268007f320003c348794f74adedc3166ffc47c80ec3e94687787f2ab7f4e72c468223946e79892cf0fd9e25e9970a90
languageName: node
linkType: hard
"@types/node@npm:*":
version: 20.11.26
resolution: "@types/node@npm:20.11.26"
dependencies:
undici-types: "npm:~5.26.4"
checksum: 2cd5a373d2880b7f07ae65d4d23660cdcabddb12772ce631b6caad2f9283350b8a17c802590f67f0ccec5a9c7d43ae0ecd9637c5ad870b8f793328af8c61eae5
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/parse-json@npm:^4.0.0":
version: 4.0.2
resolution: "@types/parse-json@npm:4.0.2"
checksum: 5bf62eec37c332ad10059252fc0dab7e7da730764869c980b0714777ad3d065e490627be9f40fc52f238ffa3ac4199b19de4127196910576c2fe34dd47c7a470
languageName: node
linkType: hard
"@types/prop-types@npm:*":
version: 15.7.11
resolution: "@types/prop-types@npm:15.7.11"
checksum: 7519ff11d06fbf6b275029fe03fff9ec377b4cb6e864cac34d87d7146c7f5a7560fd164bdc1d2dbe00b60c43713631251af1fd3d34d46c69cd354602bc0c7c54
languageName: node
linkType: hard
"@types/react@npm:^18.0.26":
version: 18.2.65
resolution: "@types/react@npm:18.2.65"
dependencies:
"@types/prop-types": "npm:*"
"@types/scheduler": "npm:*"
csstype: "npm:^3.0.2"
checksum: 1931a8b36e3135f3058e988cfc0d4ffe4b75af10b8efcf8b7e5759934333922162394edff9ccf8aff838e8db62de014c015c9c094597fdf9ca1405ac1d040fdf
languageName: node
linkType: hard
"@types/scheduler@npm:*":
version: 0.16.8
resolution: "@types/scheduler@npm:0.16.8"
checksum: 6c091b096daa490093bf30dd7947cd28e5b2cd612ec93448432b33f724b162587fed9309a0acc104d97b69b1d49a0f3fc755a62282054d62975d53d7fd13472d
languageName: node
linkType: hard
"@types/semver@npm:^7.3.12":
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:^5.55.0":
version: 5.62.0
resolution: "@typescript-eslint/eslint-plugin@npm:5.62.0"
dependencies:
"@eslint-community/regexpp": "npm:^4.4.0"
"@typescript-eslint/scope-manager": "npm:5.62.0"
"@typescript-eslint/type-utils": "npm:5.62.0"
"@typescript-eslint/utils": "npm:5.62.0"
debug: "npm:^4.3.4"
graphemer: "npm:^1.4.0"
ignore: "npm:^5.2.0"
natural-compare-lite: "npm:^1.4.0"
semver: "npm:^7.3.7"
tsutils: "npm:^3.21.0"
peerDependencies:
"@typescript-eslint/parser": ^5.0.0
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
peerDependenciesMeta:
typescript:
optional: true
checksum: fc104b389c768f9fa7d45a48c86d5c1ad522c1d0512943e782a56b1e3096b2cbcc1eea3fcc590647bf0658eef61aac35120a9c6daf979bf629ad2956deb516a1
languageName: node
linkType: hard
"@typescript-eslint/parser@npm:^5.55.0":
version: 5.62.0
resolution: "@typescript-eslint/parser@npm:5.62.0"
dependencies:
"@typescript-eslint/scope-manager": "npm:5.62.0"
"@typescript-eslint/types": "npm:5.62.0"
"@typescript-eslint/typescript-estree": "npm:5.62.0"
debug: "npm:^4.3.4"
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
peerDependenciesMeta:
typescript:
optional: true
checksum: d168f4c7f21a7a63f47002e2d319bcbb6173597af5c60c1cf2de046b46c76b4930a093619e69faf2d30214c29ab27b54dcf1efc7046a6a6bd6f37f59a990e752
languageName: node
linkType: hard
"@typescript-eslint/scope-manager@npm:5.62.0":
version: 5.62.0
resolution: "@typescript-eslint/scope-manager@npm:5.62.0"
dependencies:
"@typescript-eslint/types": "npm:5.62.0"
"@typescript-eslint/visitor-keys": "npm:5.62.0"
checksum: 6062d6b797fe1ce4d275bb0d17204c827494af59b5eaf09d8a78cdd39dadddb31074dded4297aaf5d0f839016d601032857698b0e4516c86a41207de606e9573
languageName: node
linkType: hard
"@typescript-eslint/type-utils@npm:5.62.0":
version: 5.62.0
resolution: "@typescript-eslint/type-utils@npm:5.62.0"
dependencies:
"@typescript-eslint/typescript-estree": "npm:5.62.0"
"@typescript-eslint/utils": "npm:5.62.0"
debug: "npm:^4.3.4"
tsutils: "npm:^3.21.0"
peerDependencies:
eslint: "*"
peerDependenciesMeta:
typescript:
optional: true
checksum: fc41eece5f315dfda14320be0da78d3a971d650ea41300be7196934b9715f3fe1120a80207551eb71d39568275dbbcf359bde540d1ca1439d8be15e9885d2739
languageName: node
linkType: hard
"@typescript-eslint/types@npm:5.62.0":
version: 5.62.0
resolution: "@typescript-eslint/types@npm:5.62.0"
checksum: 48c87117383d1864766486f24de34086155532b070f6264e09d0e6139449270f8a9559cfef3c56d16e3bcfb52d83d42105d61b36743626399c7c2b5e0ac3b670
languageName: node