forked from jupyterlab/benchmarks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
13665 lines (12322 loc) · 458 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.12.11":
version: 7.12.11
resolution: "@babel/code-frame@npm:7.12.11"
dependencies:
"@babel/highlight": ^7.10.4
checksum: 3963eff3ebfb0e091c7e6f99596ef4b258683e4ba8a134e4e95f77afe85be5c931e184fff6435fb4885d12eba04a5e25532f7fbc292ca13b48e7da943474e2f3
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0":
version: 7.21.4
resolution: "@babel/code-frame@npm:7.21.4"
dependencies:
"@babel/highlight": ^7.18.6
checksum: e5390e6ec1ac58dcef01d4f18eaf1fd2f1325528661ff6d4a5de8979588b9f5a8e852a54a91b923846f7a5c681b217f0a45c2524eb9560553160cd963b7d592c
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.18.6":
version: 7.19.1
resolution: "@babel/helper-validator-identifier@npm:7.19.1"
checksum: 0eca5e86a729162af569b46c6c41a63e18b43dbe09fda1d2a3c8924f7d617116af39cac5e4cd5d431bb760b4dca3c0970e0c444789b1db42bcf1fa41fbad0a3a
languageName: node
linkType: hard
"@babel/highlight@npm:^7.10.4, @babel/highlight@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/highlight@npm:7.18.6"
dependencies:
"@babel/helper-validator-identifier": ^7.18.6
chalk: ^2.0.0
js-tokens: ^4.0.0
checksum: 92d8ee61549de5ff5120e945e774728e5ccd57fd3b2ed6eace020ec744823d4a98e242be1453d21764a30a14769ecd62170fba28539b211799bbaf232bbb2789
languageName: node
linkType: hard
"@babel/runtime@npm:^7.1.2, @babel/runtime@npm:^7.9.2":
version: 7.21.5
resolution: "@babel/runtime@npm:7.21.5"
dependencies:
regenerator-runtime: ^0.13.11
checksum: 358f2779d3187f5c67ad302e8f8d435412925d0b991d133c7d4a7b1ddd5a3fda1b6f34537cb64628dfd96a27ae46df105bed3895b8d754b88cacdded8d1129dd
languageName: node
linkType: hard
"@blueprintjs/colors@npm:^4.0.0-alpha.3":
version: 4.1.22
resolution: "@blueprintjs/colors@npm:4.1.22"
checksum: fcf755ee3667c531b85875f7754d56bbf0bcd363321c766fbbcd32cd94273409e2309480e430e97bf01ae3327ea043316f9dce4e8920f9db857af4d4999dea59
languageName: node
linkType: hard
"@blueprintjs/core@npm:^3.36.0, @blueprintjs/core@npm:^3.54.0":
version: 3.54.0
resolution: "@blueprintjs/core@npm:3.54.0"
dependencies:
"@blueprintjs/colors": ^4.0.0-alpha.3
"@blueprintjs/icons": ^3.33.0
"@juggle/resize-observer": ^3.3.1
"@types/dom4": ^2.0.1
classnames: ^2.2
dom4: ^2.1.5
normalize.css: ^8.0.1
popper.js: ^1.16.1
react-lifecycles-compat: ^3.0.4
react-popper: ^1.3.7
react-transition-group: ^2.9.0
tslib: ~2.3.1
peerDependencies:
react: ^15.3.0 || 16 || 17
react-dom: ^15.3.0 || 16 || 17
bin:
upgrade-blueprint-2.0.0-rename: scripts/upgrade-blueprint-2.0.0-rename.sh
upgrade-blueprint-3.0.0-rename: scripts/upgrade-blueprint-3.0.0-rename.sh
checksum: 97b8811bfc32284bb36e62a44210e84d5abe164ef553670866e0628718db4a98c79b9665f73014b1474f534a3d3260e94af274e669fb0ebfeb323305a81b5375
languageName: node
linkType: hard
"@blueprintjs/icons@npm:^3.33.0":
version: 3.33.0
resolution: "@blueprintjs/icons@npm:3.33.0"
dependencies:
classnames: ^2.2
tslib: ~2.3.1
checksum: 9b1485a3ce17a97596b7fa7276ddbe85e33c56f061358351a626d353bf3eab6ab1b36a1860aec2feb7933ef0293c5f8e1f3342a89051720d1953343aab753cb3
languageName: node
linkType: hard
"@blueprintjs/select@npm:^3.15.0":
version: 3.19.1
resolution: "@blueprintjs/select@npm:3.19.1"
dependencies:
"@blueprintjs/core": ^3.54.0
classnames: ^2.2
tslib: ~2.3.1
peerDependencies:
react: ^15.3.0 || 16 || 17
react-dom: ^15.3.0 || 16 || 17
checksum: 44000adba49b991cdd341ba6d6326bc4d4cd53c42caa3476ec3375866887d7d98201f88ad3a9c6c30a9a6c5679a7f649d3bf202294b097ac1ce22964afe49229
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/eslintrc@npm:^0.4.3":
version: 0.4.3
resolution: "@eslint/eslintrc@npm:0.4.3"
dependencies:
ajv: ^6.12.4
debug: ^4.1.1
espree: ^7.3.0
globals: ^13.9.0
ignore: ^4.0.6
import-fresh: ^3.2.1
js-yaml: ^3.13.1
minimatch: ^3.0.4
strip-json-comments: ^3.1.1
checksum: 03a7704150b868c318aab6a94d87a33d30dc2ec579d27374575014f06237ba1370ae11178db772f985ef680d469dc237e7b16a1c5d8edaaeb8c3733e7a95a6d3
languageName: node
linkType: hard
"@evocateur/libnpmaccess@npm:^3.1.2":
version: 3.1.2
resolution: "@evocateur/libnpmaccess@npm:3.1.2"
dependencies:
"@evocateur/npm-registry-fetch": ^4.0.0
aproba: ^2.0.0
figgy-pudding: ^3.5.1
get-stream: ^4.0.0
npm-package-arg: ^6.1.0
checksum: b2f5497a7d414f1b7e724fc67e622c8ad37f1ba05bb5b787fff2eaf98e4847b84ca608f92c5b68060e663fb5d03587ae1a2ce68d600ddd4e6f7f89d214d57e03
languageName: node
linkType: hard
"@evocateur/libnpmpublish@npm:^1.2.2":
version: 1.2.2
resolution: "@evocateur/libnpmpublish@npm:1.2.2"
dependencies:
"@evocateur/npm-registry-fetch": ^4.0.0
aproba: ^2.0.0
figgy-pudding: ^3.5.1
get-stream: ^4.0.0
lodash.clonedeep: ^4.5.0
normalize-package-data: ^2.4.0
npm-package-arg: ^6.1.0
semver: ^5.5.1
ssri: ^6.0.1
checksum: ab292d8a677f88a9f5cb2bb5f4e931a611fb0f12e3774bf726da6dd5c5323c09184f9415bd48c0fa6d4d5c76ab24721c230ad80aaa54176b64f99170b7ca4e62
languageName: node
linkType: hard
"@evocateur/npm-registry-fetch@npm:^4.0.0":
version: 4.0.0
resolution: "@evocateur/npm-registry-fetch@npm:4.0.0"
dependencies:
JSONStream: ^1.3.4
bluebird: ^3.5.1
figgy-pudding: ^3.4.1
lru-cache: ^5.1.1
make-fetch-happen: ^5.0.0
npm-package-arg: ^6.1.0
safe-buffer: ^5.1.2
checksum: c325b1c4c2a44f92b77275cb31dd24923abd45c91c93bdf29410b82c9870d555aad07035f31b7246343686af0d25f6f739c7d6da8243fef85f372c64261c0bdf
languageName: node
linkType: hard
"@evocateur/pacote@npm:^9.6.3":
version: 9.6.5
resolution: "@evocateur/pacote@npm:9.6.5"
dependencies:
"@evocateur/npm-registry-fetch": ^4.0.0
bluebird: ^3.5.3
cacache: ^12.0.3
chownr: ^1.1.2
figgy-pudding: ^3.5.1
get-stream: ^4.1.0
glob: ^7.1.4
infer-owner: ^1.0.4
lru-cache: ^5.1.1
make-fetch-happen: ^5.0.0
minimatch: ^3.0.4
minipass: ^2.3.5
mississippi: ^3.0.0
mkdirp: ^0.5.1
normalize-package-data: ^2.5.0
npm-package-arg: ^6.1.0
npm-packlist: ^1.4.4
npm-pick-manifest: ^3.0.0
osenv: ^0.1.5
promise-inflight: ^1.0.1
promise-retry: ^1.1.1
protoduck: ^5.0.1
rimraf: ^2.6.3
safe-buffer: ^5.2.0
semver: ^5.7.0
ssri: ^6.0.1
tar: ^4.4.10
unique-filename: ^1.1.1
which: ^1.3.1
checksum: 82d1e1f386c2b6ff7e747fc63400cb05d8f8506994f3cbdc88f789e63bd26c30e9756b99eb0a4d3ad14cde147256d2a6182c41a7552a0700d96e634bcd7c5f5e
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
"@gar/promisify@npm:^1.0.1, @gar/promisify@npm:^1.1.3":
version: 1.1.3
resolution: "@gar/promisify@npm:1.1.3"
checksum: 4059f790e2d07bf3c3ff3e0fec0daa8144fe35c1f6e0111c9921bd32106adaa97a4ab096ad7dab1e28ee6a9060083c4d1a4ada42a7f5f3f7a96b8812e2b757c1
languageName: node
linkType: hard
"@humanwhocodes/config-array@npm:^0.5.0":
version: 0.5.0
resolution: "@humanwhocodes/config-array@npm:0.5.0"
dependencies:
"@humanwhocodes/object-schema": ^1.2.0
debug: ^4.1.1
minimatch: ^3.0.4
checksum: 44ee6a9f05d93dd9d5935a006b17572328ba9caff8002442f601736cbda79c580cc0f5a49ce9eb88fbacc5c3a6b62098357c2e95326cd17bb9f1a6c61d6e95e7
languageName: node
linkType: hard
"@humanwhocodes/object-schema@npm:^1.2.0":
version: 1.2.1
resolution: "@humanwhocodes/object-schema@npm:1.2.1"
checksum: a824a1ec31591231e4bad5787641f59e9633827d0a2eaae131a288d33c9ef0290bd16fda8da6f7c0fcb014147865d12118df10db57f27f41e20da92369fcb3f1
languageName: node
linkType: hard
"@hypnosphi/create-react-context@npm:^0.3.1":
version: 0.3.1
resolution: "@hypnosphi/create-react-context@npm:0.3.1"
dependencies:
gud: ^1.0.0
warning: ^4.0.3
peerDependencies:
prop-types: ^15.0.0
react: ">=0.14.0"
checksum: d2f069a562e138057aa067e1483e28cea3193bbacd33ca9528131f31e656939cfeb552af760b3be437d3a8074315a8854fc6d5d89878e2746618ad930c817122
languageName: node
linkType: hard
"@jridgewell/gen-mapping@npm:^0.3.0":
version: 0.3.3
resolution: "@jridgewell/gen-mapping@npm:0.3.3"
dependencies:
"@jridgewell/set-array": ^1.0.1
"@jridgewell/sourcemap-codec": ^1.4.10
"@jridgewell/trace-mapping": ^0.3.9
checksum: 4a74944bd31f22354fc01c3da32e83c19e519e3bbadafa114f6da4522ea77dd0c2842607e923a591d60a76699d819a2fbb6f3552e277efdb9b58b081390b60ab
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:3.1.0":
version: 3.1.0
resolution: "@jridgewell/resolve-uri@npm:3.1.0"
checksum: b5ceaaf9a110fcb2780d1d8f8d4a0bfd216702f31c988d8042e5f8fbe353c55d9b0f55a1733afdc64806f8e79c485d2464680ac48a0d9fcadb9548ee6b81d267
languageName: node
linkType: hard
"@jridgewell/set-array@npm:^1.0.1":
version: 1.1.2
resolution: "@jridgewell/set-array@npm:1.1.2"
checksum: 69a84d5980385f396ff60a175f7177af0b8da4ddb81824cb7016a9ef914eee9806c72b6b65942003c63f7983d4f39a5c6c27185bbca88eb4690b62075602e28e
languageName: node
linkType: hard
"@jridgewell/source-map@npm:^0.3.2":
version: 0.3.3
resolution: "@jridgewell/source-map@npm:0.3.3"
dependencies:
"@jridgewell/gen-mapping": ^0.3.0
"@jridgewell/trace-mapping": ^0.3.9
checksum: ae1302146339667da5cd6541260ecbef46ae06819a60f88da8f58b3e64682f787c09359933d050dea5d2173ea7fa40f40dd4d4e7a8d325c5892cccd99aaf8959
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:1.4.14":
version: 1.4.14
resolution: "@jridgewell/sourcemap-codec@npm:1.4.14"
checksum: 61100637b6d173d3ba786a5dff019e1a74b1f394f323c1fee337ff390239f053b87266c7a948777f4b1ee68c01a8ad0ab61e5ff4abb5a012a0b091bec391ab97
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.4.10":
version: 1.4.15
resolution: "@jridgewell/sourcemap-codec@npm:1.4.15"
checksum: b881c7e503db3fc7f3c1f35a1dd2655a188cc51a3612d76efc8a6eb74728bef5606e6758ee77423e564092b4a518aba569bbb21c9bac5ab7a35b0c6ae7e344c8
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:^0.3.17, @jridgewell/trace-mapping@npm:^0.3.9":
version: 0.3.18
resolution: "@jridgewell/trace-mapping@npm:0.3.18"
dependencies:
"@jridgewell/resolve-uri": 3.1.0
"@jridgewell/sourcemap-codec": 1.4.14
checksum: 0572669f855260808c16fe8f78f5f1b4356463b11d3f2c7c0b5580c8ba1cbf4ae53efe9f627595830856e57dbac2325ac17eb0c3dd0ec42102e6f227cc289c02
languageName: node
linkType: hard
"@juggle/resize-observer@npm:^3.3.1":
version: 3.4.0
resolution: "@juggle/resize-observer@npm:3.4.0"
checksum: 2505028c05cc2e17639fcad06218b1c4b60f932a4ebb4b41ab546ef8c157031ae377e3f560903801f6d01706dbefd4943b6c4704bf19ed86dfa1c62f1473a570
languageName: node
linkType: hard
"@jupyter/ydoc@npm:~0.2.3":
version: 0.2.4
resolution: "@jupyter/ydoc@npm:0.2.4"
dependencies:
"@jupyterlab/nbformat": ^3.0.0 || ^4.0.0-alpha.15
"@lumino/coreutils": ^1.11.0 || ^2.0.0-alpha.6
"@lumino/disposable": ^1.10.0 || ^2.0.0-alpha.6
"@lumino/signaling": ^1.10.0 || ^2.0.0-alpha.6
y-protocols: ^1.0.5
yjs: ^13.5.40
checksum: ea2bc53458e7988bd7a3aa5ee8720abf64841a361102c13803bb1154da3ec419ff415c1362c1d185b2bb21740de4273373d9425d43a1543fde434a9b1fb72d99
languageName: node
linkType: hard
"@jupyterlab-benchmarks/table-render@workspace:extensions/fixed-data-table":
version: 0.0.0-use.local
resolution: "@jupyterlab-benchmarks/table-render@workspace:extensions/fixed-data-table"
dependencies:
"@jupyterlab/apputils": ^3.1.0
"@jupyterlab/builder": ^3.1.0
"@jupyterlab/rendermime-interfaces": ^3.1.0
"@lumino/widgets": ^1.18.0
"@types/react": ^17.0.1
"@typescript-eslint/eslint-plugin": ^4.8.1
"@typescript-eslint/parser": ^4.8.1
eslint: ^7.14.0
eslint-config-prettier: ^6.15.0
eslint-plugin-prettier: ^3.1.4
fixed-data-table-2: ^1.1.1
npm-run-all: ^4.1.5
prettier: ^2.1.1
react: ^17.0.1
rimraf: ^3.0.2
typescript: ~4.1.3
languageName: unknown
linkType: soft
"@jupyterlab/application@npm:^3.1.0, @jupyterlab/application@npm:^3.6.3":
version: 3.6.3
resolution: "@jupyterlab/application@npm:3.6.3"
dependencies:
"@fortawesome/fontawesome-free": ^5.12.0
"@jupyterlab/apputils": ^3.6.3
"@jupyterlab/coreutils": ^5.6.3
"@jupyterlab/docregistry": ^3.6.3
"@jupyterlab/rendermime": ^3.6.3
"@jupyterlab/rendermime-interfaces": ^3.6.3
"@jupyterlab/services": ^6.6.3
"@jupyterlab/statedb": ^3.6.3
"@jupyterlab/translation": ^3.6.3
"@jupyterlab/ui-components": ^3.6.3
"@lumino/algorithm": ^1.9.0
"@lumino/application": ^1.31.4
"@lumino/commands": ^1.19.0
"@lumino/coreutils": ^1.11.0
"@lumino/disposable": ^1.10.0
"@lumino/messaging": ^1.10.0
"@lumino/polling": ^1.9.0
"@lumino/properties": ^1.8.0
"@lumino/signaling": ^1.10.0
"@lumino/widgets": ^1.37.2
checksum: a1f38237c26470fc9870d449646677de60b224208cd7c29fe732548e9ae226c88b80ddda29fe19726999cbd8d85616cc8ae104ef75e3a6fb16126f05e2617820
languageName: node
linkType: hard
"@jupyterlab/apputils@npm:^3.1.0, @jupyterlab/apputils@npm:^3.6.3":
version: 3.6.3
resolution: "@jupyterlab/apputils@npm:3.6.3"
dependencies:
"@jupyterlab/coreutils": ^5.6.3
"@jupyterlab/observables": ^4.6.3
"@jupyterlab/services": ^6.6.3
"@jupyterlab/settingregistry": ^3.6.3
"@jupyterlab/statedb": ^3.6.3
"@jupyterlab/translation": ^3.6.3
"@jupyterlab/ui-components": ^3.6.3
"@lumino/algorithm": ^1.9.0
"@lumino/commands": ^1.19.0
"@lumino/coreutils": ^1.11.0
"@lumino/disposable": ^1.10.0
"@lumino/domutils": ^1.8.0
"@lumino/messaging": ^1.10.0
"@lumino/polling": ^1.9.0
"@lumino/properties": ^1.8.0
"@lumino/signaling": ^1.10.0
"@lumino/virtualdom": ^1.14.0
"@lumino/widgets": ^1.37.2
"@types/react": ^17.0.0
react: ^17.0.1
react-dom: ^17.0.1
sanitize-html: ~2.7.3
url: ^0.11.0
checksum: 48765f4915497b84635d30eaf1c2ef74679e390db56db60b82a547b081e8b63048297498a662666091e0f0531fc0a39c2d37891b57e1c63e6b0817153ee99a28
languageName: node
linkType: hard
"@jupyterlab/attachments@npm:^3.6.3":
version: 3.6.3
resolution: "@jupyterlab/attachments@npm:3.6.3"
dependencies:
"@jupyterlab/nbformat": ^3.6.3
"@jupyterlab/observables": ^4.6.3
"@jupyterlab/rendermime": ^3.6.3
"@jupyterlab/rendermime-interfaces": ^3.6.3
"@lumino/disposable": ^1.10.0
"@lumino/signaling": ^1.10.0
checksum: af8f518d824e87307c568c3ebc610864f2fc31c97e4742ac8c8285e7ac0e6f1e305d3e80eee5e17b34c52275f5fd4e5f5a765ca52f47e2099fa7e0d5cce3e20b
languageName: node
linkType: hard
"@jupyterlab/benchmarks-tests@workspace:tests":
version: 0.0.0-use.local
resolution: "@jupyterlab/benchmarks-tests@workspace:tests"
dependencies:
"@jupyterlab/galata": ^4.3.5
"@jupyterlab/ui-profiler": ^0.2.1
"@playwright/test": ^1.30.0
fkill-cli: ^6.0.1
path: ~0.12.7
prettier: ^2.8.8
rimraf: ^3.0.2
typescript: ~4.9.0
languageName: unknown
linkType: soft
"@jupyterlab/benchmarks@workspace:.":
version: 0.0.0-use.local
resolution: "@jupyterlab/benchmarks@workspace:."
dependencies:
"@types/node": ^18.15.3
lerna: ^3.22.1
rimraf: ^3.0.2
languageName: unknown
linkType: soft
"@jupyterlab/builder@npm:^3.1.0":
version: 3.6.3
resolution: "@jupyterlab/builder@npm:3.6.3"
dependencies:
"@lumino/algorithm": ^1.9.0
"@lumino/application": ^1.31.4
"@lumino/commands": ^1.19.0
"@lumino/coreutils": ^1.11.0
"@lumino/disposable": ^1.10.0
"@lumino/domutils": ^1.8.0
"@lumino/dragdrop": ^1.13.0
"@lumino/messaging": ^1.10.0
"@lumino/properties": ^1.8.0
"@lumino/signaling": ^1.10.0
"@lumino/virtualdom": ^1.14.0
"@lumino/widgets": ^1.37.2
ajv: ^6.12.3
commander: ~6.0.0
css-loader: ^5.0.1
duplicate-package-checker-webpack-plugin: ^3.0.0
file-loader: ~6.0.0
fs-extra: ^9.0.1
glob: ~7.1.6
license-webpack-plugin: ^2.3.14
mini-css-extract-plugin: ~1.3.2
path-browserify: ^1.0.0
process: ^0.11.10
raw-loader: ~4.0.0
source-map-loader: ~1.0.2
style-loader: ~2.0.0
supports-color: ^7.2.0
svg-url-loader: ~6.0.0
terser-webpack-plugin: ^4.1.0
to-string-loader: ^1.1.6
url-loader: ~4.1.0
webpack: ^5.41.1
webpack-cli: ^4.1.0
webpack-merge: ^5.1.2
worker-loader: ^3.0.2
bin:
build-labextension: lib/build-labextension.js
checksum: 318ee1cb02f044b08b7d16a63b98145f57696f54e1596ed65760dc72dc0f4da1fe270db1478efb03e960a9bef3d4cac4a78425cf6de548f0b584ea67425a9d26
languageName: node
linkType: hard
"@jupyterlab/cells@npm:^3.6.3":
version: 3.6.3
resolution: "@jupyterlab/cells@npm:3.6.3"
dependencies:
"@jupyter/ydoc": ~0.2.3
"@jupyterlab/apputils": ^3.6.3
"@jupyterlab/attachments": ^3.6.3
"@jupyterlab/codeeditor": ^3.6.3
"@jupyterlab/codemirror": ^3.6.3
"@jupyterlab/coreutils": ^5.6.3
"@jupyterlab/filebrowser": ^3.6.3
"@jupyterlab/nbformat": ^3.6.3
"@jupyterlab/observables": ^4.6.3
"@jupyterlab/outputarea": ^3.6.3
"@jupyterlab/rendermime": ^3.6.3
"@jupyterlab/services": ^6.6.3
"@jupyterlab/ui-components": ^3.6.3
"@lumino/algorithm": ^1.9.0
"@lumino/coreutils": ^1.11.0
"@lumino/domutils": ^1.8.0
"@lumino/dragdrop": ^1.13.0
"@lumino/messaging": ^1.10.0
"@lumino/polling": ^1.9.0
"@lumino/signaling": ^1.10.0
"@lumino/virtualdom": ^1.14.0
"@lumino/widgets": ^1.37.2
marked: ^4.0.17
react: ^17.0.1
checksum: b721ccae1b34baaa6d7161822f08c52274156121ac75760c2620827936cf28cc4224e150c2a19496ca2c6f489747f0d7b6f1170eff1372c28d20e7ad59f3dbcd
languageName: node
linkType: hard
"@jupyterlab/codeeditor@npm:^3.6.3":
version: 3.6.3
resolution: "@jupyterlab/codeeditor@npm:3.6.3"
dependencies:
"@jupyter/ydoc": ~0.2.3
"@jupyterlab/coreutils": ^5.6.3
"@jupyterlab/nbformat": ^3.6.3
"@jupyterlab/observables": ^4.6.3
"@jupyterlab/translation": ^3.6.3
"@jupyterlab/ui-components": ^3.6.3
"@lumino/coreutils": ^1.11.0
"@lumino/disposable": ^1.10.0
"@lumino/dragdrop": ^1.13.0
"@lumino/messaging": ^1.10.0
"@lumino/signaling": ^1.10.0
"@lumino/widgets": ^1.37.2
checksum: c259c82b666a09e6669f27a2db79a334fbfdd5c43a6ca760131dd4890163eb1ddcdc2e7aa8c2fd458559711a2b3e53874941c48dfa3f3fd9ed06d6ca00040007
languageName: node
linkType: hard
"@jupyterlab/codemirror@npm:^3.6.3":
version: 3.6.3
resolution: "@jupyterlab/codemirror@npm:3.6.3"
dependencies:
"@jupyter/ydoc": ~0.2.3
"@jupyterlab/apputils": ^3.6.3
"@jupyterlab/codeeditor": ^3.6.3
"@jupyterlab/coreutils": ^5.6.3
"@jupyterlab/nbformat": ^3.6.3
"@jupyterlab/observables": ^4.6.3
"@jupyterlab/statusbar": ^3.6.3
"@jupyterlab/translation": ^3.6.3
"@lumino/algorithm": ^1.9.0
"@lumino/commands": ^1.19.0
"@lumino/coreutils": ^1.11.0
"@lumino/disposable": ^1.10.0
"@lumino/polling": ^1.9.0
"@lumino/signaling": ^1.10.0
"@lumino/widgets": ^1.37.2
codemirror: ~5.61.0
react: ^17.0.1
y-codemirror: ^3.0.1
checksum: 3c93aec5aa6b838599e0dc4a00c1f4ace20513b25e2350133a66ac51231155a1bc96c4be80866ec8ffbfa15a6831892ebff1aaa41b6bcbe4cef46b1493eb69db
languageName: node
linkType: hard
"@jupyterlab/coreutils@npm:^5.6.3":
version: 5.6.3
resolution: "@jupyterlab/coreutils@npm:5.6.3"
dependencies:
"@lumino/coreutils": ^1.11.0
"@lumino/disposable": ^1.10.0
"@lumino/signaling": ^1.10.0
minimist: ~1.2.0
moment: ^2.24.0
path-browserify: ^1.0.0
url-parse: ~1.5.1
checksum: a9bfd0732ef8623212f34ea71b3f5e6556cb7a14dc00e692abca4ea97c6ca0799f7c9a879b71be477194bcbe5d83160c6a99c9158a82ff4aef9db0f8b40a624d
languageName: node
linkType: hard
"@jupyterlab/docmanager@npm:^3.6.3":
version: 3.6.3
resolution: "@jupyterlab/docmanager@npm:3.6.3"
dependencies:
"@jupyterlab/apputils": ^3.6.3
"@jupyterlab/coreutils": ^5.6.3
"@jupyterlab/docprovider": ^3.6.3
"@jupyterlab/docregistry": ^3.6.3
"@jupyterlab/services": ^6.6.3
"@jupyterlab/statusbar": ^3.6.3
"@jupyterlab/translation": ^3.6.3
"@lumino/algorithm": ^1.9.0
"@lumino/coreutils": ^1.11.0
"@lumino/disposable": ^1.10.0
"@lumino/messaging": ^1.10.0
"@lumino/properties": ^1.8.0
"@lumino/signaling": ^1.10.0
"@lumino/widgets": ^1.37.2
react: ^17.0.1
checksum: ffde367ad02f1171a50fffd13a6309cc5fdfedca2ca5289f06acb333f0a3a678a7616dae0e8fdfb510bf88e6640ef65179a850505e8eb0dcf915c9baac9b657d
languageName: node
linkType: hard
"@jupyterlab/docprovider@npm:^3.6.3":
version: 3.6.3
resolution: "@jupyterlab/docprovider@npm:3.6.3"
dependencies:
"@jupyter/ydoc": ~0.2.3
"@jupyterlab/apputils": ^3.6.3
"@jupyterlab/coreutils": ^5.6.3
"@jupyterlab/services": ^6.6.3
"@jupyterlab/translation": ^3.6.3
"@lumino/coreutils": ^1.11.0
"@lumino/disposable": ^1.10.0
"@lumino/signaling": ^1.10.0
y-protocols: ^1.0.5
y-websocket: ^1.4.6
checksum: dfc5cee2a92dc101e86cb533cc4efcbed940f46cb687a311cd32b800dfb06f5c0f6787c5e54f0100225358fa1c3154ca1971dd4f341d055c2ea6d9cf743bd79a
languageName: node
linkType: hard
"@jupyterlab/docregistry@npm:^3.6.3":
version: 3.6.3
resolution: "@jupyterlab/docregistry@npm:3.6.3"
dependencies:
"@jupyter/ydoc": ~0.2.3
"@jupyterlab/apputils": ^3.6.3
"@jupyterlab/codeeditor": ^3.6.3
"@jupyterlab/codemirror": ^3.6.3
"@jupyterlab/coreutils": ^5.6.3
"@jupyterlab/docprovider": ^3.6.3
"@jupyterlab/observables": ^4.6.3
"@jupyterlab/rendermime": ^3.6.3
"@jupyterlab/rendermime-interfaces": ^3.6.3
"@jupyterlab/services": ^6.6.3
"@jupyterlab/translation": ^3.6.3
"@jupyterlab/ui-components": ^3.6.3
"@lumino/algorithm": ^1.9.0
"@lumino/coreutils": ^1.11.0
"@lumino/disposable": ^1.10.0
"@lumino/messaging": ^1.10.0
"@lumino/signaling": ^1.10.0
"@lumino/widgets": ^1.37.2
checksum: cdab90beebc5957e97e3c28893eb3392efdb385cc1b033102ff73c56608896fdbcddda33563afe1b932992fc9881d1582711f8c35afe8e988c0e1acfdf59a8eb
languageName: node
linkType: hard
"@jupyterlab/filebrowser@npm:^3.6.3":
version: 3.6.3
resolution: "@jupyterlab/filebrowser@npm:3.6.3"
dependencies:
"@jupyterlab/apputils": ^3.6.3
"@jupyterlab/coreutils": ^5.6.3
"@jupyterlab/docmanager": ^3.6.3
"@jupyterlab/docregistry": ^3.6.3
"@jupyterlab/services": ^6.6.3
"@jupyterlab/statedb": ^3.6.3
"@jupyterlab/statusbar": ^3.6.3
"@jupyterlab/translation": ^3.6.3
"@jupyterlab/ui-components": ^3.6.3
"@lumino/algorithm": ^1.9.0
"@lumino/coreutils": ^1.11.0
"@lumino/disposable": ^1.10.0
"@lumino/domutils": ^1.8.0
"@lumino/dragdrop": ^1.13.0
"@lumino/messaging": ^1.10.0
"@lumino/polling": ^1.9.0
"@lumino/signaling": ^1.10.0
"@lumino/virtualdom": ^1.14.0
"@lumino/widgets": ^1.37.2
react: ^17.0.1
checksum: 2159b5d6a0abb3ad3adbddaa91ce9a44c2a40bfda8fd70a0a40c3546e16ce82b92910bff0e8559ba7eda930fa4b99bdf8f24ae20ecc0a1ac076118313ce3fc11
languageName: node
linkType: hard
"@jupyterlab/galata@npm:^4.3.5":
version: 4.5.3
resolution: "@jupyterlab/galata@npm:4.5.3"
dependencies:
"@jupyterlab/application": ^3.6.3
"@jupyterlab/cells": ^3.6.3
"@jupyterlab/coreutils": ^5.6.3
"@jupyterlab/docmanager": ^3.6.3
"@jupyterlab/nbformat": ^3.6.3
"@jupyterlab/notebook": ^3.6.3
"@jupyterlab/services": ^6.6.3
"@jupyterlab/settingregistry": ^3.6.3
"@lumino/algorithm": ^1.9.0
"@lumino/coreutils": ^1.11.0
"@playwright/test": ^1.16.2
"@stdlib/stats": ^0.0.13
fs-extra: ^9.0.1
http-server: ^13.0.0
json5: ^2.1.1
node-fetch: ^2.6.0
path: ~0.12.7
systeminformation: ^5.8.6
vega: ^5.20.0
vega-lite: ^5.1.0
vega-statistics: ^1.7.9
checksum: 17f007da776ecfb01fcfe4308b1db935adea731a075cb380d21e433f49bb289da398bbe0972084519b53c57596d04e78504fd0170d0076d7a618bddac5ecc7c8
languageName: node
linkType: hard
"@jupyterlab/json-extension@npm:^3.5.0":
version: 3.6.3
resolution: "@jupyterlab/json-extension@npm:3.6.3"
dependencies:
"@jupyterlab/apputils": ^3.6.3
"@jupyterlab/rendermime-interfaces": ^3.6.3
"@jupyterlab/translation": ^3.6.3
"@jupyterlab/ui-components": ^3.6.3
"@lumino/coreutils": ^1.11.0
"@lumino/messaging": ^1.10.0
"@lumino/widgets": ^1.37.2
react: ^17.0.1
react-dom: ^17.0.1
react-highlighter: ^0.4.3
react-json-tree: ^0.15.0
checksum: 8f723bd8ebb489532510f7ee1274609ea55758349a9f9dbc524fff3ce9986b5825c5d105a4c31948aaae4e341430b264b3bb5c9c1f64c63f4b471d3059a5c63d
languageName: node
linkType: hard
"@jupyterlab/nbformat@npm:^3.0.0 || ^4.0.0-alpha.15":
version: 4.0.0-rc.0
resolution: "@jupyterlab/nbformat@npm:4.0.0-rc.0"
dependencies:
"@lumino/coreutils": ^2.1.1
checksum: b37a04681f7a4364bb87a038298b40468306b8d83799fa0f1fec6c09f330c4f878320e82ebb08945a0c9377fb385fbf65a12e7a2f5895966af25e4db6561d062
languageName: node
linkType: hard
"@jupyterlab/nbformat@npm:^3.6.3":
version: 3.6.3
resolution: "@jupyterlab/nbformat@npm:3.6.3"
dependencies:
"@lumino/coreutils": ^1.11.0
checksum: 5118877af7b7d54a699adbf4f42dd00f04738c9ee04233a40de24843830bfe6515b82b648a629cf019c51a1342158e358670702fd666637986551b626de25f26
languageName: node
linkType: hard
"@jupyterlab/notebook@npm:^3.6.3":
version: 3.6.3
resolution: "@jupyterlab/notebook@npm:3.6.3"
dependencies:
"@jupyter/ydoc": ~0.2.3
"@jupyterlab/apputils": ^3.6.3
"@jupyterlab/cells": ^3.6.3
"@jupyterlab/codeeditor": ^3.6.3
"@jupyterlab/coreutils": ^5.6.3
"@jupyterlab/docregistry": ^3.6.3
"@jupyterlab/nbformat": ^3.6.3
"@jupyterlab/observables": ^4.6.3
"@jupyterlab/rendermime": ^3.6.3
"@jupyterlab/services": ^6.6.3
"@jupyterlab/settingregistry": ^3.6.3
"@jupyterlab/statusbar": ^3.6.3
"@jupyterlab/translation": ^3.6.3
"@jupyterlab/ui-components": ^3.6.3
"@lumino/algorithm": ^1.9.0
"@lumino/coreutils": ^1.11.0
"@lumino/domutils": ^1.8.0
"@lumino/dragdrop": ^1.13.0
"@lumino/messaging": ^1.10.0
"@lumino/properties": ^1.8.0
"@lumino/signaling": ^1.10.0
"@lumino/virtualdom": ^1.14.0
"@lumino/widgets": ^1.37.2
react: ^17.0.1
checksum: 6fa7dc89689e9a4ea885400f81bbd88a3a9f33ad32db545f33ba2130cbe36c23b00b48c271360c2b08cfe360ac5346fa8a8fa938f69128e9f6b9e67b5472e304
languageName: node
linkType: hard
"@jupyterlab/observables@npm:^4.6.3":
version: 4.6.3
resolution: "@jupyterlab/observables@npm:4.6.3"
dependencies:
"@lumino/algorithm": ^1.9.0
"@lumino/coreutils": ^1.11.0
"@lumino/disposable": ^1.10.0
"@lumino/messaging": ^1.10.0
"@lumino/signaling": ^1.10.0
checksum: f16620454bd88fc37edf078df9c33a91de5fa74e6a9e20f6de0e45ea142d086332014700f3815ca734001c791cb28fd47070c8aa13ffc460d25b3925b77a03d4
languageName: node
linkType: hard
"@jupyterlab/outputarea@npm:^3.6.3":
version: 3.6.3
resolution: "@jupyterlab/outputarea@npm:3.6.3"
dependencies:
"@jupyterlab/apputils": ^3.6.3
"@jupyterlab/nbformat": ^3.6.3
"@jupyterlab/observables": ^4.6.3
"@jupyterlab/rendermime": ^3.6.3
"@jupyterlab/rendermime-interfaces": ^3.6.3
"@jupyterlab/services": ^6.6.3
"@lumino/algorithm": ^1.9.0
"@lumino/coreutils": ^1.11.0
"@lumino/disposable": ^1.10.0
"@lumino/messaging": ^1.10.0
"@lumino/properties": ^1.8.0
"@lumino/signaling": ^1.10.0
"@lumino/widgets": ^1.37.2
resize-observer-polyfill: ^1.5.1
checksum: 2d116648985a4b256bdbbac22ade6729a8daf6eb63c542a30791f63f3414910c81cf7f4866d3cf778449b2cd5df9df279b6a05f21bc609e912f44514f9a29a2c
languageName: node
linkType: hard
"@jupyterlab/rendermime-interfaces@npm:^3.1.0, @jupyterlab/rendermime-interfaces@npm:^3.6.3":
version: 3.6.3
resolution: "@jupyterlab/rendermime-interfaces@npm:3.6.3"
dependencies:
"@jupyterlab/translation": ^3.6.3
"@lumino/coreutils": ^1.11.0
"@lumino/widgets": ^1.37.2
checksum: 08c486145d54ddede441e0ea92975caa1b72717836e62955238c55fae85183941a78a068f369cefd6abe97c84d73bcfe40d2a9e437ff53d3c414cd8d039efac5
languageName: node
linkType: hard
"@jupyterlab/rendermime@npm:^3.6.3":
version: 3.6.3
resolution: "@jupyterlab/rendermime@npm:3.6.3"
dependencies:
"@jupyterlab/apputils": ^3.6.3
"@jupyterlab/codemirror": ^3.6.3
"@jupyterlab/coreutils": ^5.6.3
"@jupyterlab/nbformat": ^3.6.3
"@jupyterlab/observables": ^4.6.3
"@jupyterlab/rendermime-interfaces": ^3.6.3
"@jupyterlab/services": ^6.6.3
"@jupyterlab/translation": ^3.6.3
"@lumino/algorithm": ^1.9.0
"@lumino/coreutils": ^1.11.0
"@lumino/messaging": ^1.10.0
"@lumino/signaling": ^1.10.0
"@lumino/widgets": ^1.37.2
lodash.escape: ^4.0.1
marked: ^4.0.17
checksum: cae953db43d3370b3fb96c5469747120a0f88fc8d7c0e03fe73b10492c16e5e4b0787b83d9a6b3183ccf45c8b892b1d30651150157a976d5f043996614dd9230
languageName: node
linkType: hard
"@jupyterlab/services@npm:^6.6.3":
version: 6.6.3
resolution: "@jupyterlab/services@npm:6.6.3"
dependencies:
"@jupyterlab/coreutils": ^5.6.3
"@jupyterlab/nbformat": ^3.6.3
"@jupyterlab/observables": ^4.6.3
"@jupyterlab/settingregistry": ^3.6.3
"@jupyterlab/statedb": ^3.6.3
"@lumino/algorithm": ^1.9.0
"@lumino/coreutils": ^1.11.0
"@lumino/disposable": ^1.10.0
"@lumino/polling": ^1.9.0
"@lumino/signaling": ^1.10.0
node-fetch: ^2.6.0
ws: ^7.4.6
checksum: a8eb3138c83107449acb1df4f244bca9c6f0fad35a25e0dca16a2544149a87a438592cdb6c73c83caf875907f0238f3164292b20d6a3404ddd0354142dbac5ac
languageName: node
linkType: hard
"@jupyterlab/settingregistry@npm:^3.6.3":
version: 3.6.3
resolution: "@jupyterlab/settingregistry@npm:3.6.3"
dependencies:
"@jupyterlab/statedb": ^3.6.3
"@lumino/commands": ^1.19.0
"@lumino/coreutils": ^1.11.0
"@lumino/disposable": ^1.10.0
"@lumino/signaling": ^1.10.0
ajv: ^6.12.3
json5: ^2.1.1
checksum: 6382746aa715d8e3e8d0abe48429975e7432eb1ac767413a3107b77e8135ab0cea869a0d20e1cb8f1f7c6dba1f1ffb16a9a9973d1be68e65115c44c573bdf30a
languageName: node
linkType: hard
"@jupyterlab/statedb@npm:^3.6.3":
version: 3.6.3
resolution: "@jupyterlab/statedb@npm:3.6.3"
dependencies:
"@lumino/commands": ^1.19.0
"@lumino/coreutils": ^1.11.0
"@lumino/disposable": ^1.10.0
"@lumino/properties": ^1.8.0
"@lumino/signaling": ^1.10.0
checksum: e3ea76524184ac62797e894ba4146a66ecdddada0167af9d8d360b0439e04dcf89d0da5b7e2fe0d02bc968796909659054a8c076eced17519773cddfb1ab0e96
languageName: node
linkType: hard
"@jupyterlab/statusbar@npm:^3.6.3":
version: 3.6.3
resolution: "@jupyterlab/statusbar@npm:3.6.3"
dependencies:
"@jupyterlab/apputils": ^3.6.3
"@jupyterlab/codeeditor": ^3.6.3
"@jupyterlab/services": ^6.6.3
"@jupyterlab/translation": ^3.6.3
"@jupyterlab/ui-components": ^3.6.3
"@lumino/algorithm": ^1.9.0
"@lumino/coreutils": ^1.11.0
"@lumino/disposable": ^1.10.0
"@lumino/messaging": ^1.10.0
"@lumino/signaling": ^1.10.0
"@lumino/widgets": ^1.37.2
csstype: ~3.0.3
react: ^17.0.1
typestyle: ^2.0.4
checksum: 42bcce68739b689e3971eb7b2e6f8f837f5f03c8d10e3b583d5455b355b41bfe62034058b7232001eddca41d4dcc20c64f6173181806e58836b37724ad13b9a2
languageName: node
linkType: hard
"@jupyterlab/translation@npm:^3.6.3":
version: 3.6.3
resolution: "@jupyterlab/translation@npm:3.6.3"
dependencies:
"@jupyterlab/coreutils": ^5.6.3
"@jupyterlab/services": ^6.6.3
"@jupyterlab/statedb": ^3.6.3
"@lumino/coreutils": ^1.11.0
checksum: 924ea581685790c3fad82e7b5c351749dfa7532404f83805d43cc9154a8dd463531a671f66184a046bf8e81233d049280e23cae6a0760e8bfadd9684e8539708
languageName: node
linkType: hard
"@jupyterlab/ui-components@npm:^3.6.3":
version: 3.6.3
resolution: "@jupyterlab/ui-components@npm:3.6.3"
dependencies:
"@blueprintjs/core": ^3.36.0
"@blueprintjs/select": ^3.15.0
"@jupyterlab/coreutils": ^5.6.3
"@jupyterlab/translation": ^3.6.3
"@lumino/algorithm": ^1.9.0
"@lumino/commands": ^1.19.0
"@lumino/coreutils": ^1.11.0
"@lumino/disposable": ^1.10.0
"@lumino/signaling": ^1.10.0
"@lumino/virtualdom": ^1.14.0
"@lumino/widgets": ^1.37.2
"@rjsf/core": ^3.1.0
react: ^17.0.1
react-dom: ^17.0.1
typestyle: ^2.0.4
peerDependencies:
react: ^17.0.1
checksum: 0809b6b83c1fca0f65cde6d395c18682366760c16a7b133d01abe487b665c3f01979ee082a676bc479ecb8c0b112d8032de8f0ad0ad2d6ec82fe114f04534b6b
languageName: node
linkType: hard
"@jupyterlab/ui-profiler@npm:^0.2.1":
version: 0.2.1
resolution: "@jupyterlab/ui-profiler@npm:0.2.1"
dependencies:
"@jupyterlab/application": ^3.1.0
"@jupyterlab/json-extension": ^3.5.0
checksum: ada2e92480b7e3859a06cbbdf6ed6df79cc535bee28712c9d3112bf98a0a6776446b41b7e2997fba7dbf473da8b849449b6706296556ce9845a43a89477f4266
languageName: node
linkType: hard
"@lerna/add@npm:3.21.0":
version: 3.21.0
resolution: "@lerna/add@npm:3.21.0"
dependencies:
"@evocateur/pacote": ^9.6.3
"@lerna/bootstrap": 3.21.0
"@lerna/command": 3.21.0
"@lerna/filter-options": 3.20.0
"@lerna/npm-conf": 3.16.0
"@lerna/validation-error": 3.13.0
dedent: ^0.7.0
npm-package-arg: ^6.1.0
p-map: ^2.1.0
semver: ^6.2.0
checksum: e2d9f1f4e6989d108663945835f382a91a0686724188e36435b0b270db09691b300eb653a704bf420444ea55bfdf28a2eb3eb346c9f2cd92f2bab2ce27e0667c
languageName: node
linkType: hard
"@lerna/bootstrap@npm:3.21.0":
version: 3.21.0
resolution: "@lerna/bootstrap@npm:3.21.0"
dependencies: