-
Notifications
You must be signed in to change notification settings - Fork 2.2k
/
yarn.lock
17242 lines (15561 loc) · 596 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: 8
cacheKey: 10c0
"@aashutoshrathi/word-wrap@npm:^1.2.3":
version: 1.2.6
resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
checksum: 53c2b231a61a46792b39a0d43bc4f4f776bb4542aa57ee04930676802e5501282c2fc8aac14e4cd1f1120ff8b52616b6ff5ab539ad30aa2277d726444b71619f
languageName: node
linkType: hard
"@ampproject/remapping@npm:^2.2.0":
version: 2.2.1
resolution: "@ampproject/remapping@npm:2.2.1"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.0"
"@jridgewell/trace-mapping": "npm:^0.3.9"
checksum: 92ce5915f8901d8c7cd4f4e6e2fe7b9fd335a29955b400caa52e0e5b12ca3796ada7c2f10e78c9c5b0f9c2539dff0ffea7b19850a56e1487aa083531e1e46d43
languageName: node
linkType: hard
"@babel/code-frame@npm:7.12.11":
version: 7.12.11
resolution: "@babel/code-frame@npm:7.12.11"
dependencies:
"@babel/highlight": "npm:^7.10.4"
checksum: 836ffd155506768e991d6dd8c51db37cad5958ed1c8e0a2329ccd9527165d5c752e943d66a5c3c92ffd45f343419f0742e7636629a529f4fbd5303e3637746b9
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.16.7, @babel/code-frame@npm:^7.21.4, @babel/code-frame@npm:^7.22.13":
version: 7.23.4
resolution: "@babel/code-frame@npm:7.23.4"
dependencies:
"@babel/highlight": "npm:^7.23.4"
chalk: "npm:^2.4.2"
checksum: 2ef6f5e10004c4e8b755961b68570db0ea556ccb17a37c13a7f1fed1f4e273aed6c1ae1fcb86abb991620d8be083e1472a7ea5429f05bc342de54c027b07ea83
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.22.9":
version: 7.23.2
resolution: "@babel/compat-data@npm:7.23.2"
checksum: 0397a08c3e491696cc1b12cf0879bf95fc550bfc6ef524d5a9452981aa0e192a958b2246debfb230fa22718fac473cc5a36616f89b1ad6e7e52055732cd374a1
languageName: node
linkType: hard
"@babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3":
version: 7.23.2
resolution: "@babel/core@npm:7.23.2"
dependencies:
"@ampproject/remapping": "npm:^2.2.0"
"@babel/code-frame": "npm:^7.22.13"
"@babel/generator": "npm:^7.23.0"
"@babel/helper-compilation-targets": "npm:^7.22.15"
"@babel/helper-module-transforms": "npm:^7.23.0"
"@babel/helpers": "npm:^7.23.2"
"@babel/parser": "npm:^7.23.0"
"@babel/template": "npm:^7.22.15"
"@babel/traverse": "npm:^7.23.2"
"@babel/types": "npm:^7.23.0"
convert-source-map: "npm:^2.0.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.2.3"
semver: "npm:^6.3.1"
checksum: 14ad6e0a3ac0085dc008e7fb0c8513f0a3e39f2ab883a964a89ef1311338d49cf085c94cb6165c07fdec0fdcc6e865ce4811253c479f9f45ac375226dfe3ad3b
languageName: node
linkType: hard
"@babel/generator@npm:^7.23.0, @babel/generator@npm:^7.7.2":
version: 7.23.0
resolution: "@babel/generator@npm:7.23.0"
dependencies:
"@babel/types": "npm:^7.23.0"
"@jridgewell/gen-mapping": "npm:^0.3.2"
"@jridgewell/trace-mapping": "npm:^0.3.17"
jsesc: "npm:^2.5.1"
checksum: b7d8727c574119b5ef06e5d5d0d8d939527d51537db4b08273caebb18f3f2b1d4517b874776085e161fd47d28f26b22c08e7f270b64f43b2afd4a60c5936d6cd
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.22.15":
version: 7.22.15
resolution: "@babel/helper-compilation-targets@npm:7.22.15"
dependencies:
"@babel/compat-data": "npm:^7.22.9"
"@babel/helper-validator-option": "npm:^7.22.15"
browserslist: "npm:^4.21.9"
lru-cache: "npm:^5.1.1"
semver: "npm:^6.3.1"
checksum: 45b9286861296e890f674a3abb199efea14a962a27d9b8adeb44970a9fd5c54e73a9e342e8414d2851cf4f98d5994537352fbce7b05ade32e9849bbd327f9ff1
languageName: node
linkType: hard
"@babel/helper-environment-visitor@npm:^7.22.20":
version: 7.22.20
resolution: "@babel/helper-environment-visitor@npm:7.22.20"
checksum: e762c2d8f5d423af89bd7ae9abe35bd4836d2eb401af868a63bbb63220c513c783e25ef001019418560b3fdc6d9a6fb67e6c0b650bcdeb3a2ac44b5c3d2bdd94
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.23.0":
version: 7.23.0
resolution: "@babel/helper-function-name@npm:7.23.0"
dependencies:
"@babel/template": "npm:^7.22.15"
"@babel/types": "npm:^7.23.0"
checksum: d771dd1f3222b120518176733c52b7cadac1c256ff49b1889dbbe5e3fed81db855b8cc4e40d949c9d3eae0e795e8229c1c8c24c0e83f27cfa6ee3766696c6428
languageName: node
linkType: hard
"@babel/helper-hoist-variables@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-hoist-variables@npm:7.22.5"
dependencies:
"@babel/types": "npm:^7.22.5"
checksum: 60a3077f756a1cd9f14eb89f0037f487d81ede2b7cfe652ea6869cd4ec4c782b0fb1de01b8494b9a2d2050e3d154d7d5ad3be24806790acfb8cbe2073bf1e208
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.22.15":
version: 7.22.15
resolution: "@babel/helper-module-imports@npm:7.22.15"
dependencies:
"@babel/types": "npm:^7.22.15"
checksum: 4e0d7fc36d02c1b8c8b3006dfbfeedf7a367d3334a04934255de5128115ea0bafdeb3e5736a2559917f0653e4e437400d54542da0468e08d3cbc86d3bbfa8f30
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.23.0":
version: 7.23.0
resolution: "@babel/helper-module-transforms@npm:7.23.0"
dependencies:
"@babel/helper-environment-visitor": "npm:^7.22.20"
"@babel/helper-module-imports": "npm:^7.22.15"
"@babel/helper-simple-access": "npm:^7.22.5"
"@babel/helper-split-export-declaration": "npm:^7.22.6"
"@babel/helper-validator-identifier": "npm:^7.22.20"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 15a52e401bd17fe44ba9be51cca693a3e182dc93264dc28ede732081c43211741df81ce8eb15e82e81c8ad51beb8893301ecc31d5c77add0f7be78dff6815318
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.22.5, @babel/helper-plugin-utils@npm:^7.8.0":
version: 7.22.5
resolution: "@babel/helper-plugin-utils@npm:7.22.5"
checksum: d2c4bfe2fa91058bcdee4f4e57a3f4933aed7af843acfd169cd6179fab8d13c1d636474ecabb2af107dc77462c7e893199aa26632bac1c6d7e025a17cbb9d20d
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-simple-access@npm:7.22.5"
dependencies:
"@babel/types": "npm:^7.22.5"
checksum: f0cf81a30ba3d09a625fd50e5a9069e575c5b6719234e04ee74247057f8104beca89ed03e9217b6e9b0493434cedc18c5ecca4cea6244990836f1f893e140369
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.22.6":
version: 7.22.6
resolution: "@babel/helper-split-export-declaration@npm:7.22.6"
dependencies:
"@babel/types": "npm:^7.22.5"
checksum: d83e4b623eaa9622c267d3c83583b72f3aac567dc393dda18e559d79187961cb29ae9c57b2664137fc3d19508370b12ec6a81d28af73a50e0846819cb21c6e44
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-string-parser@npm:7.22.5"
checksum: 6b0ff8af724377ec41e5587fffa7605198da74cb8e7d8d48a36826df0c0ba210eb9fedb3d9bef4d541156e0bd11040f021945a6cbb731ccec4aefb4affa17aa4
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: dcad63db345fb110e032de46c3688384b0008a42a4845180ce7cd62b1a9c0507a1bed727c4d1060ed1a03ae57b4d918570259f81724aaac1a5b776056f37504e
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.22.15":
version: 7.22.15
resolution: "@babel/helper-validator-option@npm:7.22.15"
checksum: e9661bf80ba18e2dd978217b350fb07298e57ac417f4f1ab9fa011505e20e4857f2c3b4b538473516a9dc03af5ce3a831e5ed973311c28326f4c330b6be981c2
languageName: node
linkType: hard
"@babel/helpers@npm:^7.23.2":
version: 7.23.2
resolution: "@babel/helpers@npm:7.23.2"
dependencies:
"@babel/template": "npm:^7.22.15"
"@babel/traverse": "npm:^7.23.2"
"@babel/types": "npm:^7.23.0"
checksum: 3a6a939c5277a27486e7c626812f0643b35d1c053ac2eb66911f5ae6c0a4e4bcdd40750eba36b766b0ee8a753484287f50ae56232a5f8f2947116723e44b9e35
languageName: node
linkType: hard
"@babel/highlight@npm:^7.10.4, @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: fbff9fcb2f5539289c3c097d130e852afd10d89a3a08ac0b5ebebbc055cc84a4bcc3dcfed463d488cde12dd0902ef1858279e31d7349b2e8cee43913744bda33
languageName: node
linkType: hard
"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.22.15, @babel/parser@npm:^7.23.0":
version: 7.23.0
resolution: "@babel/parser@npm:7.23.0"
bin:
parser: ./bin/babel-parser.js
checksum: ab4ea9360ed4ba3c728c5a9bf33035103ebde20a7e943c4ae1d42becb02a313d731d12a93c795c5a19777031e4022e64b92a52262eda902522a1a18649826283
languageName: node
linkType: hard
"@babel/plugin-syntax-async-generators@npm:^7.8.4":
version: 7.8.4
resolution: "@babel/plugin-syntax-async-generators@npm:7.8.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d13efb282838481348c71073b6be6245b35d4f2f964a8f71e4174f235009f929ef7613df25f8d2338e2d3e44bc4265a9f8638c6aaa136d7a61fe95985f9725c8
languageName: node
linkType: hard
"@babel/plugin-syntax-bigint@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-bigint@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 686891b81af2bc74c39013655da368a480f17dd237bf9fbc32048e5865cb706d5a8f65438030da535b332b1d6b22feba336da8fa931f663b6b34e13147d12dde
languageName: node
linkType: hard
"@babel/plugin-syntax-class-properties@npm:^7.8.3":
version: 7.12.13
resolution: "@babel/plugin-syntax-class-properties@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.12.13"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 95168fa186416195280b1264fb18afcdcdcea780b3515537b766cb90de6ce042d42dd6a204a39002f794ae5845b02afb0fd4861a3308a861204a55e68310a120
languageName: node
linkType: hard
"@babel/plugin-syntax-import-meta@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-import-meta@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 0b08b5e4c3128523d8e346f8cfc86824f0da2697b1be12d71af50a31aff7a56ceb873ed28779121051475010c28d6146a6bfea8518b150b71eeb4e46190172ee
languageName: node
linkType: hard
"@babel/plugin-syntax-json-strings@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-json-strings@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: e98f31b2ec406c57757d115aac81d0336e8434101c224edd9a5c93cefa53faf63eacc69f3138960c8b25401315af03df37f68d316c151c4b933136716ed6906e
languageName: node
linkType: hard
"@babel/plugin-syntax-jsx@npm:^7.7.2":
version: 7.22.5
resolution: "@babel/plugin-syntax-jsx@npm:7.22.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.22.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: b56ceaa9c6adc17fadfb48e1c801d07797195df2a581489e33c8034950e12e7778de6e1e70d6bcf7c5c7ada6222fe6bad5746187ab280df435f5a2799c8dd0d8
languageName: node
linkType: hard
"@babel/plugin-syntax-logical-assignment-operators@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-logical-assignment-operators@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2594cfbe29411ad5bc2ad4058de7b2f6a8c5b86eda525a993959438615479e59c012c14aec979e538d60a584a1a799b60d1b8942c3b18468cb9d99b8fd34cd0b
languageName: node
linkType: hard
"@babel/plugin-syntax-nullish-coalescing-operator@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-nullish-coalescing-operator@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2024fbb1162899094cfc81152449b12bd0cc7053c6d4bda8ac2852545c87d0a851b1b72ed9560673cbf3ef6248257262c3c04aabf73117215c1b9cc7dd2542ce
languageName: node
linkType: hard
"@babel/plugin-syntax-numeric-separator@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-numeric-separator@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: c55a82b3113480942c6aa2fcbe976ff9caa74b7b1109ff4369641dfbc88d1da348aceb3c31b6ed311c84d1e7c479440b961906c735d0ab494f688bf2fd5b9bb9
languageName: node
linkType: hard
"@babel/plugin-syntax-object-rest-spread@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-object-rest-spread@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: ee1eab52ea6437e3101a0a7018b0da698545230015fc8ab129d292980ec6dff94d265e9e90070e8ae5fed42f08f1622c14c94552c77bcac784b37f503a82ff26
languageName: node
linkType: hard
"@babel/plugin-syntax-optional-catch-binding@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-optional-catch-binding@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 27e2493ab67a8ea6d693af1287f7e9acec206d1213ff107a928e85e173741e1d594196f99fec50e9dde404b09164f39dec5864c767212154ffe1caa6af0bc5af
languageName: node
linkType: hard
"@babel/plugin-syntax-optional-chaining@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-optional-chaining@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 46edddf2faa6ebf94147b8e8540dfc60a5ab718e2de4d01b2c0bdf250a4d642c2bd47cbcbb739febcb2bf75514dbcefad3c52208787994b8d0f8822490f55e81
languageName: node
linkType: hard
"@babel/plugin-syntax-top-level-await@npm:^7.8.3":
version: 7.14.5
resolution: "@babel/plugin-syntax-top-level-await@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.14.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 14bf6e65d5bc1231ffa9def5f0ef30b19b51c218fcecaa78cd1bdf7939dfdf23f90336080b7f5196916368e399934ce5d581492d8292b46a2fb569d8b2da106f
languageName: node
linkType: hard
"@babel/plugin-syntax-typescript@npm:^7.7.2":
version: 7.22.5
resolution: "@babel/plugin-syntax-typescript@npm:7.22.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.22.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 523a76627f17e67dc1999f4d7c7a71ed79e9f77f55a61cf05051101967ac23ec378ff0c93787b2cbd5d53720ad799658d796a649fa351682b2bf636f63b665a1
languageName: node
linkType: hard
"@babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.21.0, @babel/runtime@npm:^7.5.5, @babel/runtime@npm:^7.8.4, @babel/runtime@npm:^7.8.7":
version: 7.23.2
resolution: "@babel/runtime@npm:7.23.2"
dependencies:
regenerator-runtime: "npm:^0.14.0"
checksum: 271fcfad8574269d9967b8a1c03f2e1eab108a52ad7c96ed136eee0b11f46156f1186637bd5e79a4207163db9a00413cd70a6428e137b982d0ee8ab85eb9f438
languageName: node
linkType: hard
"@babel/template@npm:^7.22.15, @babel/template@npm:^7.3.3":
version: 7.22.15
resolution: "@babel/template@npm:7.22.15"
dependencies:
"@babel/code-frame": "npm:^7.22.13"
"@babel/parser": "npm:^7.22.15"
"@babel/types": "npm:^7.22.15"
checksum: 9312edd37cf1311d738907003f2aa321a88a42ba223c69209abe4d7111db019d321805504f606c7fd75f21c6cf9d24d0a8223104cd21ebd207e241b6c551f454
languageName: node
linkType: hard
"@babel/traverse@npm:^7.23.2":
version: 7.23.2
resolution: "@babel/traverse@npm:7.23.2"
dependencies:
"@babel/code-frame": "npm:^7.22.13"
"@babel/generator": "npm:^7.23.0"
"@babel/helper-environment-visitor": "npm:^7.22.20"
"@babel/helper-function-name": "npm:^7.23.0"
"@babel/helper-hoist-variables": "npm:^7.22.5"
"@babel/helper-split-export-declaration": "npm:^7.22.6"
"@babel/parser": "npm:^7.23.0"
"@babel/types": "npm:^7.23.0"
debug: "npm:^4.1.0"
globals: "npm:^11.1.0"
checksum: d096c7c4bab9262a2f658298a3c630ae4a15a10755bb257ae91d5ab3e3b2877438934859c8d34018b7727379fe6b26c4fa2efc81cf4c462a7fe00caf79fa02ff
languageName: node
linkType: hard
"@babel/types@npm:^7.0.0, @babel/types@npm:^7.20.7, @babel/types@npm:^7.22.15, @babel/types@npm:^7.22.5, @babel/types@npm:^7.23.0, @babel/types@npm:^7.3.3, @babel/types@npm:^7.8.3":
version: 7.23.0
resolution: "@babel/types@npm:7.23.0"
dependencies:
"@babel/helper-string-parser": "npm:^7.22.5"
"@babel/helper-validator-identifier": "npm:^7.22.20"
to-fast-properties: "npm:^2.0.0"
checksum: 70e4db41acb6793d0eb8d81a2fa88f19ee661219b84bd5f703dbdb54eb3a4d3c0dfc55e69034c945b479df9f43fd4b1376480aaccfc19797ce5af1c5d2576b36
languageName: node
linkType: hard
"@bcoe/v8-coverage@npm:^0.2.3":
version: 0.2.3
resolution: "@bcoe/v8-coverage@npm:0.2.3"
checksum: 6b80ae4cb3db53f486da2dc63b6e190a74c8c3cca16bb2733f234a0b6a9382b09b146488ae08e2b22cf00f6c83e20f3e040a2f7894f05c045c946d6a090b1d52
languageName: node
linkType: hard
"@blueprintjs/colors@workspace:^, @blueprintjs/colors@workspace:packages/colors":
version: 0.0.0-use.local
resolution: "@blueprintjs/colors@workspace:packages/colors"
dependencies:
"@blueprintjs/node-build-scripts": "workspace:^"
mocha: "npm:^10.2.0"
tslib: "npm:~2.6.2"
typescript: "npm:~5.3.3"
languageName: unknown
linkType: soft
"@blueprintjs/core@workspace:^, @blueprintjs/core@workspace:packages/core":
version: 0.0.0-use.local
resolution: "@blueprintjs/core@workspace:packages/core"
dependencies:
"@blueprintjs/colors": "workspace:^"
"@blueprintjs/icons": "workspace:^"
"@blueprintjs/karma-build-scripts": "workspace:^"
"@blueprintjs/node-build-scripts": "workspace:^"
"@blueprintjs/test-commons": "workspace:^"
"@popperjs/core": "npm:^2.11.8"
"@testing-library/react": "npm:^12.1.5"
"@types/use-sync-external-store": "npm:0.0.6"
classnames: "npm:^2.3.1"
enzyme: "npm:^3.11.0"
karma: "npm:^6.4.2"
mocha: "npm:^10.2.0"
normalize.css: "npm:^8.0.1"
npm-run-all: "npm:^4.1.5"
react: "npm:^16.14.0"
react-dom: "npm:^16.14.0"
react-popper: "npm:^2.3.0"
react-test-renderer: "npm:^16.14.0"
react-transition-group: "npm:^4.4.5"
react-uid: "npm:^2.3.3"
tslib: "npm:~2.6.2"
typescript: "npm:~5.3.3"
use-sync-external-store: "npm:^1.2.0"
webpack-cli: "npm:^5.1.4"
peerDependencies:
"@types/react": ^16.14.41 || 17 || 18
react: ^16.8 || 17 || 18
react-dom: ^16.8 || 17 || 18
peerDependenciesMeta:
"@types/react":
optional: true
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
languageName: unknown
linkType: soft
"@blueprintjs/datetime2@workspace:^, @blueprintjs/datetime2@workspace:packages/datetime2":
version: 0.0.0-use.local
resolution: "@blueprintjs/datetime2@workspace:packages/datetime2"
dependencies:
"@blueprintjs/colors": "workspace:^"
"@blueprintjs/core": "workspace:^"
"@blueprintjs/datetime": "workspace:^"
"@blueprintjs/icons": "workspace:^"
"@blueprintjs/karma-build-scripts": "workspace:^"
"@blueprintjs/node-build-scripts": "workspace:^"
"@blueprintjs/test-commons": "workspace:^"
classnames: "npm:^2.3.1"
date-fns: "npm:^2.28.0"
enzyme: "npm:^3.11.0"
karma: "npm:^6.4.2"
mocha: "npm:^10.2.0"
npm-run-all: "npm:^4.1.5"
react: "npm:^16.14.0"
react-day-picker: "npm:^8.10.0"
react-dom: "npm:^16.14.0"
react-innertext: "npm:^1.1.5"
tslib: "npm:~2.6.2"
typescript: "npm:~5.3.3"
webpack-cli: "npm:^5.1.4"
peerDependencies:
"@types/react": ^16.14.41 || 17 || 18
react: ^16.8 || 17 || 18
react-dom: ^16.8 || 17 || 18
peerDependenciesMeta:
"@types/react":
optional: true
languageName: unknown
linkType: soft
"@blueprintjs/datetime@workspace:^, @blueprintjs/datetime@workspace:packages/datetime":
version: 0.0.0-use.local
resolution: "@blueprintjs/datetime@workspace:packages/datetime"
dependencies:
"@blueprintjs/colors": "workspace:^"
"@blueprintjs/core": "workspace:^"
"@blueprintjs/icons": "workspace:^"
"@blueprintjs/karma-build-scripts": "workspace:^"
"@blueprintjs/node-build-scripts": "workspace:^"
"@blueprintjs/select": "workspace:^"
"@blueprintjs/test-commons": "workspace:^"
classnames: "npm:^2.3.1"
date-fns: "npm:^2.28.0"
date-fns-tz: "npm:^2.0.0"
enzyme: "npm:^3.11.0"
karma: "npm:^6.4.2"
mocha: "npm:^10.2.0"
npm-run-all: "npm:^4.1.5"
react: "npm:^16.14.0"
react-day-picker: "npm:7.4.9"
react-dom: "npm:^16.14.0"
react-test-renderer: "npm:^16.14.0"
tslib: "npm:~2.6.2"
typescript: "npm:~5.3.3"
webpack-cli: "npm:^5.1.4"
peerDependencies:
"@types/react": ^16.14.41 || 17
react: ^16.8 || 17
react-dom: ^16.8 || 17
peerDependenciesMeta:
"@types/react":
optional: true
languageName: unknown
linkType: soft
"@blueprintjs/demo-app@workspace:packages/demo-app":
version: 0.0.0-use.local
resolution: "@blueprintjs/demo-app@workspace:packages/demo-app"
dependencies:
"@blueprintjs/core": "workspace:^"
"@blueprintjs/datetime": "workspace:^"
"@blueprintjs/datetime2": "workspace:^"
"@blueprintjs/icons": "workspace:^"
"@blueprintjs/node-build-scripts": "workspace:^"
"@blueprintjs/select": "workspace:^"
"@blueprintjs/table": "workspace:^"
"@blueprintjs/webpack-build-scripts": "workspace:^"
"@types/lodash": "npm:~4.14.202"
classnames: "npm:^2.3.1"
copy-webpack-plugin: "npm:^12.0.2"
lodash: "npm:^4.17.21"
normalize.css: "npm:^8.0.1"
npm-run-all: "npm:^4.1.5"
react: "npm:^16.14.0"
react-dom: "npm:^16.14.0"
react-transition-group: "npm:^4.4.5"
tslib: "npm:~2.6.2"
webpack-cli: "npm:^5.1.4"
webpack-dev-server: "npm:^4.15.1"
languageName: unknown
linkType: soft
"@blueprintjs/docs-app@workspace:packages/docs-app":
version: 0.0.0-use.local
resolution: "@blueprintjs/docs-app@workspace:packages/docs-app"
dependencies:
"@blueprintjs/core": "workspace:^"
"@blueprintjs/datetime": "workspace:^"
"@blueprintjs/datetime2": "workspace:^"
"@blueprintjs/docs-data": "workspace:^"
"@blueprintjs/docs-theme": "workspace:^"
"@blueprintjs/icons": "workspace:^"
"@blueprintjs/monaco-editor-theme": "workspace:^"
"@blueprintjs/node-build-scripts": "workspace:^"
"@blueprintjs/select": "workspace:^"
"@blueprintjs/table": "workspace:^"
"@blueprintjs/test-commons": "workspace:^"
"@blueprintjs/webpack-build-scripts": "workspace:^"
"@documentalist/client": "npm:^5.0.0"
"@types/chroma-js": "npm:~2.4.3"
"@types/downloadjs": "npm:~1.4.6"
"@types/lodash": "npm:~4.14.202"
chroma-js: "npm:^2.4.2"
classnames: "npm:^2.3.1"
copy-webpack-plugin: "npm:^12.0.2"
date-fns: "npm:^2.28.0"
dedent: "npm:^1.5.1"
downloadjs: "npm:^1.4.7"
lodash: "npm:^4.17.21"
moment: "npm:^2.30.1"
monaco-editor: "npm:^0.45.0"
monaco-editor-webpack-plugin: "npm:^7.1.0"
normalize.css: "npm:^8.0.1"
npm-run-all: "npm:^4.1.5"
popper.js: "npm:^1.16.1"
react: "npm:^16.14.0"
react-dom: "npm:^16.14.0"
react-transition-group: "npm:^4.4.5"
tslib: "npm:~2.6.2"
webpack-cli: "npm:^5.1.4"
webpack-dev-server: "npm:^4.15.1"
languageName: unknown
linkType: soft
"@blueprintjs/docs-data@workspace:^, @blueprintjs/docs-data@workspace:packages/docs-data":
version: 0.0.0-use.local
resolution: "@blueprintjs/docs-data@workspace:packages/docs-data"
dependencies:
"@blueprintjs/core": "workspace:^"
"@blueprintjs/docs-theme": "workspace:^"
"@documentalist/compiler": "npm:^5.0.0"
escape-html: "npm:^1.0.3"
marked: "npm:^9.1.6"
semver: "npm:^7.5.4"
languageName: unknown
linkType: soft
"@blueprintjs/docs-theme@workspace:^, @blueprintjs/docs-theme@workspace:packages/docs-theme":
version: 0.0.0-use.local
resolution: "@blueprintjs/docs-theme@workspace:packages/docs-theme"
dependencies:
"@blueprintjs/colors": "workspace:^"
"@blueprintjs/core": "workspace:^"
"@blueprintjs/node-build-scripts": "workspace:^"
"@blueprintjs/select": "workspace:^"
"@documentalist/client": "npm:^5.0.0"
"@types/fuzzaldrin-plus": "npm:~0.6.5"
classnames: "npm:^2.3.1"
fuzzaldrin-plus: "npm:^0.6.0"
npm-run-all: "npm:^4.1.5"
react: "npm:^16.14.0"
react-dom: "npm:^16.14.0"
tslib: "npm:~2.6.2"
typescript: "npm:~5.3.3"
webpack-cli: "npm:^5.1.4"
peerDependencies:
"@types/react": ^16.14.41 || 17 || 18
react: ^16.8 || 17 || 18
react-dom: ^16.8 || 17 || 18
peerDependenciesMeta:
"@types/react":
optional: true
languageName: unknown
linkType: soft
"@blueprintjs/eslint-config@workspace:packages/eslint-config":
version: 0.0.0-use.local
resolution: "@blueprintjs/eslint-config@workspace:packages/eslint-config"
dependencies:
"@blueprintjs/eslint-plugin": "workspace:^"
"@blueprintjs/tslint-config": "workspace:^"
"@typescript-eslint/eslint-plugin": "npm:^6.19.1"
"@typescript-eslint/eslint-plugin-tslint": "npm:^6.19.1"
"@typescript-eslint/parser": "npm:^6.19.1"
eslint: "npm:^8.56.0"
eslint-plugin-deprecation: "npm:^2.0.0"
eslint-plugin-header: "npm:^3.1.1"
eslint-plugin-import: "npm:~2.29.1"
eslint-plugin-jsdoc: "npm:^48.0.2"
eslint-plugin-react: "npm:^7.33.2"
eslint-plugin-react-hooks: "npm:^4.6.0"
typescript: "npm:~5.3.3"
peerDependencies:
typescript: ^5.2.2
peerDependenciesMeta:
typescript:
optional: true
languageName: unknown
linkType: soft
"@blueprintjs/eslint-plugin@workspace:^, @blueprintjs/eslint-plugin@workspace:packages/eslint-plugin":
version: 0.0.0-use.local
resolution: "@blueprintjs/eslint-plugin@workspace:packages/eslint-plugin"
dependencies:
"@blueprintjs/node-build-scripts": "workspace:^"
"@eslint/eslintrc": "npm:^3.0.0"
"@swc-node/register": "npm:^1.6.8"
"@swc/core": "npm:^1.3.105"
"@types/dedent": "npm:~0.7.2"
"@typescript-eslint/rule-tester": "npm:^6.19.1"
"@typescript-eslint/utils": "npm:^6.19.1 || ^7.0.0"
dedent: "npm:^1.5.1"
eslint: "npm:^8.56.0"
mocha: "npm:^10.2.0"
typescript: "npm:~5.3.3"
languageName: unknown
linkType: soft
"@blueprintjs/icons@workspace:^, @blueprintjs/icons@workspace:packages/icons":
version: 0.0.0-use.local
resolution: "@blueprintjs/icons@workspace:packages/icons"
dependencies:
"@blueprintjs/node-build-scripts": "workspace:^"
"@blueprintjs/test-commons": "workspace:^"
"@twbs/fantasticon": "npm:^2.7.2"
"@types/handlebars": "npm:^4.1.0"
change-case: "npm:^4.1.2"
classnames: "npm:^2.3.1"
enzyme: "npm:^3.11.0"
handlebars: "npm:^4.7.8"
mocha: "npm:^10.2.0"
npm-run-all: "npm:^4.1.5"
react: "npm:^16.14.0"
react-dom: "npm:^16.14.0"
react-test-renderer: "npm:^16.14.0"
svg-parser: "npm:^2.0.4"
tslib: "npm:~2.6.2"
typescript: "npm:~5.3.3"
webpack-cli: "npm:^5.1.4"
peerDependencies:
"@types/react": ^16.14.41 || 17 || 18
react: ^16.8 || 17 || 18
react-dom: ^16.8 || 17 || 18
peerDependenciesMeta:
"@types/react":
optional: true
languageName: unknown
linkType: soft
"@blueprintjs/karma-build-scripts@workspace:^, @blueprintjs/karma-build-scripts@workspace:packages/karma-build-scripts":
version: 0.0.0-use.local
resolution: "@blueprintjs/karma-build-scripts@workspace:packages/karma-build-scripts"
dependencies:
"@blueprintjs/webpack-build-scripts": "workspace:^"
istanbul-instrumenter-loader: "npm:^3.0.1"
karma: "npm:^6.4.2"
karma-chrome-launcher: "npm:^3.2.0"
karma-coverage: "npm:^2.2.1"
karma-firefox-launcher: "npm:^2.1.2"
karma-helpful-reporter: "npm:^0.3.4"
karma-junit-reporter: "npm:^2.0.1"
karma-mocha: "npm:^2.0.1"
karma-remap-coverage: "npm:^0.1.5"
karma-sourcemap-loader: "npm:^0.4.0"
karma-webpack: "npm:^5.0.0"
mocha: "npm:^10.2.0"
webpack: "npm:^5.90.0"
peerDependencies:
"@blueprintjs/core": "workspace:^"
peerDependenciesMeta:
"@blueprintjs/core":
optional: true
languageName: unknown
linkType: soft
"@blueprintjs/landing-app@workspace:packages/landing-app":
version: 0.0.0-use.local
resolution: "@blueprintjs/landing-app@workspace:packages/landing-app"
dependencies:
"@blueprintjs/core": "workspace:^"
"@blueprintjs/icons": "workspace:^"
"@blueprintjs/webpack-build-scripts": "workspace:^"
classnames: "npm:^2.3.1"
copy-webpack-plugin: "npm:^12.0.2"
npm-run-all: "npm:^4.1.5"
raw-loader: "npm:^4.0.2"
react: "npm:^16.14.0"
react-dom: "npm:^16.14.0"
webpack: "npm:^5.90.0"
webpack-dev-server: "npm:^4.15.1"
languageName: unknown
linkType: soft
"@blueprintjs/monaco-editor-theme@workspace:^, @blueprintjs/monaco-editor-theme@workspace:packages/monaco-editor-theme":
version: 0.0.0-use.local
resolution: "@blueprintjs/monaco-editor-theme@workspace:packages/monaco-editor-theme"
dependencies:
"@blueprintjs/colors": "workspace:^"
"@blueprintjs/node-build-scripts": "workspace:^"
monaco-editor: "npm:^0.45.0"
npm-run-all: "npm:^4.1.5"
typescript: "npm:~5.3.3"
languageName: unknown
linkType: soft
"@blueprintjs/node-build-scripts@workspace:^, @blueprintjs/node-build-scripts@workspace:packages/node-build-scripts":
version: 0.0.0-use.local
resolution: "@blueprintjs/node-build-scripts@workspace:packages/node-build-scripts"
dependencies:
"@jest/globals": "npm:^29.7.0"
"@swc/core": "npm:^1.3.105"
"@swc/jest": "npm:^0.2.31"
"@types/fs-extra": "npm:~11.0.4"
"@types/svgo": "npm:~1.3.6"
"@types/yargs": "npm:~17.0.32"
autoprefixer: "npm:^10.4.17"
chokidar: "npm:^3.5.3"
cross-spawn: "npm:^7.0.3"
css-select: "npm:^5.1.0"
dom-serializer: "npm:^2.0.0"
eslint: "npm:^8.56.0"
eslint-formatter-codeframe: "npm:^7.32.1"
fs-extra: "npm:^11.2.0"
glob: "npm:^10.3.10"
htmlparser2: "npm:^9.1.0"
jest: "npm:^29.7.0"
mini-svg-data-uri: "npm:^1.4.4"
package-up: "npm:^5.0.0"
postcss: "npm:^8.4.33"
postcss-cli: "npm:^11.0.0"
postcss-discard-comments: "npm:^6.0.1"
postcss-scss: "npm:^4.0.9"
postcss-simple-vars: "npm:^7.0.1"
prettier: "npm:^3.2.4"
sass: "npm:^1.70.0"
source-map-js: "npm:^1.0.2"
strip-css-comments: "npm:^5.0.0"
stylelint: "npm:~14.16.1"
stylelint-junit-formatter: "npm:^0.2.2"
svgo: "npm:^1.3.2"
typescript: "npm:~5.3.3"
yargs: "npm:^17.7.2"
bin:
assert-package-layout: ./assert-package-layout.mjs
css-dist: ./css-dist.mjs
es-lint: ./es-lint.mjs
generate-css-variables: ./generate-css-variables.mjs
sass-compile: ./sass-compile.mjs
sass-lint: ./sass-lint.mjs
languageName: unknown
linkType: soft
"@blueprintjs/popover2@workspace:packages/popover2":
version: 0.0.0-use.local
resolution: "@blueprintjs/popover2@workspace:packages/popover2"
dependencies:
"@blueprintjs/core": "workspace:^"
"@blueprintjs/node-build-scripts": "workspace:^"
classnames: "npm:^2.3.1"
npm-run-all: "npm:^4.1.5"
react: "npm:^16.14.0"
react-dom: "npm:^16.14.0"
tslib: "npm:~2.6.2"
typescript: "npm:~5.3.3"
peerDependencies:
"@types/react": ^16.14.41 || 17 || 18
react: ^16.8 || 17 || 18
react-dom: ^16.8 || 17 || 18
peerDependenciesMeta:
"@types/react":
optional: true
languageName: unknown
linkType: soft
"@blueprintjs/root@workspace:.":
version: 0.0.0-use.local
resolution: "@blueprintjs/root@workspace:."
dependencies:
"@lerna-lite/cli": "npm:^3.2.1"
"@lerna-lite/version": "npm:^3.2.1"
"@types/chai": "npm:~4.3.11"
"@types/enzyme": "npm:~3.10.18"
"@types/enzyme-adapter-react-16": "npm:~1.0.9"
"@types/mocha": "npm:~10.0.6"
"@types/node": "npm:~20.11.6"
"@types/react": "npm:~16.14.55"
"@types/react-dom": "npm:~16.9.24"
"@types/react-transition-group": "npm:~4.4.10"
"@types/sinon": "npm:~17.0.3"
"@types/yargs": "npm:~17.0.32"
"@yarnpkg/types": "npm:^4.0.0"
chai: "npm:^5.0.0"
dedent: "npm:^1.5.1"
eslint: "npm:^8.56.0"
eslint-config-prettier: "npm:^9.1.0"
eslint-plugin-prettier: "npm:^5.1.3"
gh-pages: "npm:^6.1.1"
http-server: "npm:^14.1.1"
npm-run-all: "npm:^4.1.5"
nx: "npm:^17.2.8"
octokit: "npm:^3.1.2"
prettier: "npm:^3.2.4"
sinon: "npm:^17.0.1"
stylelint: "npm:~14.16.1"
stylelint-config-palantir: "npm:^6.0.1"
stylelint-scss: "npm:^5.3.2"
typescript: "npm:~5.3.3"
yargs: "npm:^17.7.2"
yarn-deduplicate: "npm:^6.0.2"
languageName: unknown
linkType: soft
"@blueprintjs/select@workspace:^, @blueprintjs/select@workspace:packages/select":
version: 0.0.0-use.local
resolution: "@blueprintjs/select@workspace:packages/select"
dependencies:
"@blueprintjs/core": "workspace:^"
"@blueprintjs/icons": "workspace:^"
"@blueprintjs/karma-build-scripts": "workspace:^"
"@blueprintjs/node-build-scripts": "workspace:^"
classnames: "npm:^2.3.1"
enzyme: "npm:^3.11.0"
karma: "npm:^6.4.2"
mocha: "npm:^10.2.0"
npm-run-all: "npm:^4.1.5"
react: "npm:^16.14.0"
react-dom: "npm:^16.14.0"
react-test-renderer: "npm:^16.14.0"
tslib: "npm:~2.6.2"
typescript: "npm:~5.3.3"
webpack-cli: "npm:^5.1.4"
peerDependencies:
"@types/react": ^16.14.41 || 17 || 18
react: ^16.8 || 17 || 18
react-dom: ^16.8 || 17 || 18
peerDependenciesMeta:
"@types/react":
optional: true
languageName: unknown
linkType: soft
"@blueprintjs/stylelint-plugin@workspace:packages/stylelint-plugin":
version: 0.0.0-use.local
resolution: "@blueprintjs/stylelint-plugin@workspace:packages/stylelint-plugin"
dependencies:
"@blueprintjs/colors": "workspace:^"
"@blueprintjs/node-build-scripts": "workspace:^"
chai: "npm:^5.0.0"
mocha: "npm:^10.2.0"
postcss: "npm:^8.4.33"
postcss-selector-parser: "npm:^6.0.15"
postcss-value-parser: "npm:^4.2.0"
typescript: "npm:~5.3.3"
peerDependencies:
stylelint: ^14.12.1 || ^15.10.3
languageName: unknown
linkType: soft
"@blueprintjs/table-dev-app@workspace:packages/table-dev-app":
version: 0.0.0-use.local
resolution: "@blueprintjs/table-dev-app@workspace:packages/table-dev-app"
dependencies:
"@blueprintjs/core": "workspace:^"
"@blueprintjs/table": "workspace:^"
"@blueprintjs/webpack-build-scripts": "workspace:^"
"@types/lodash": "npm:~4.14.202"
classnames: "npm:^2.3.1"
copy-webpack-plugin: "npm:^12.0.2"
lodash: "npm:^4.17.21"
normalize.css: "npm:^8.0.1"
npm-run-all: "npm:^4.1.5"
react: "npm:^16.14.0"
react-dom: "npm:^16.14.0"
webpack: "npm:^5.90.0"
webpack-dev-server: "npm:^4.15.1"
languageName: unknown
linkType: soft
"@blueprintjs/table@workspace:^, @blueprintjs/table@workspace:packages/table":
version: 0.0.0-use.local
resolution: "@blueprintjs/table@workspace:packages/table"
dependencies:
"@blueprintjs/colors": "workspace:^"
"@blueprintjs/core": "workspace:^"
"@blueprintjs/node-build-scripts": "workspace:^"
"@blueprintjs/test-commons": "workspace:^"
classnames: "npm:^2.3.1"
enzyme: "npm:^3.11.0"
karma: "npm:^6.4.2"
mocha: "npm:^10.2.0"
npm-run-all: "npm:^4.1.5"
react: "npm:^16.14.0"
react-dom: "npm:^16.14.0"
react-innertext: "npm:^1.1.5"
react-test-renderer: "npm:^16.14.0"
tslib: "npm:~2.6.2"
typescript: "npm:~5.3.3"
webpack: "npm:^5.90.0"
peerDependencies:
"@types/react": ^16.14.41 || 17 || 18
react: ^16.8 || 17 || 18
react-dom: ^16.8 || 17 || 18
peerDependenciesMeta:
"@types/react":
optional: true
languageName: unknown
linkType: soft
"@blueprintjs/test-commons@workspace:^, @blueprintjs/test-commons@workspace:packages/test-commons":