-
Notifications
You must be signed in to change notification settings - Fork 4
/
yarn.lock
6434 lines (5798 loc) · 231 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: 10
"@arcanis/slice-ansi@npm:^1.1.1":
version: 1.1.1
resolution: "@arcanis/slice-ansi@npm:1.1.1"
dependencies:
grapheme-splitter: "npm:^1.0.4"
checksum: 10/14ed60cb45750d386c64229ac7bab20e10eedc193503fa4decff764162d329d6d3363ed2cd3debec833186ee54affe4f824f6e8eff531295117fd1ebda200270
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0":
version: 7.18.6
resolution: "@babel/code-frame@npm:7.18.6"
dependencies:
"@babel/highlight": "npm:^7.18.6"
checksum: 10/195e2be3172d7684bf95cff69ae3b7a15a9841ea9d27d3c843662d50cdd7d6470fd9c8e64be84d031117e4a4083486effba39f9aef6bbb2c89f7f21bcfba33ba
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-validator-identifier@npm:7.18.6"
checksum: 10/9386e19302aefeadcb02f1e5593e43c40adef5ed64746ee338c3772a0a423f6f339f5547bc898b5bfa904e2b4b994c020ab1fb4fe108b696ac74ebb3e4c83663
languageName: node
linkType: hard
"@babel/highlight@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/highlight@npm:7.18.6"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.18.6"
chalk: "npm:^2.0.0"
js-tokens: "npm:^4.0.0"
checksum: 10/92d8ee61549de5ff5120e945e774728e5ccd57fd3b2ed6eace020ec744823d4a98e242be1453d21764a30a14769ecd62170fba28539b211799bbaf232bbb2789
languageName: node
linkType: hard
"@biomejs/biome@npm:^1.6.3":
version: 1.6.3
resolution: "@biomejs/biome@npm:1.6.3"
dependencies:
"@biomejs/cli-darwin-arm64": "npm:1.6.3"
"@biomejs/cli-darwin-x64": "npm:1.6.3"
"@biomejs/cli-linux-arm64": "npm:1.6.3"
"@biomejs/cli-linux-arm64-musl": "npm:1.6.3"
"@biomejs/cli-linux-x64": "npm:1.6.3"
"@biomejs/cli-linux-x64-musl": "npm:1.6.3"
"@biomejs/cli-win32-arm64": "npm:1.6.3"
"@biomejs/cli-win32-x64": "npm:1.6.3"
dependenciesMeta:
"@biomejs/cli-darwin-arm64":
optional: true
"@biomejs/cli-darwin-x64":
optional: true
"@biomejs/cli-linux-arm64":
optional: true
"@biomejs/cli-linux-arm64-musl":
optional: true
"@biomejs/cli-linux-x64":
optional: true
"@biomejs/cli-linux-x64-musl":
optional: true
"@biomejs/cli-win32-arm64":
optional: true
"@biomejs/cli-win32-x64":
optional: true
bin:
biome: bin/biome
checksum: 10/7e8350282ad5ae34b99afd401163eed4e7f1184fed30abb71af08f3855a0d1a792e3c384c4ae29ed6fa9d377631670c1430828e0ca5ba413ee968529ed95f148
languageName: node
linkType: hard
"@biomejs/cli-darwin-arm64@npm:1.6.3":
version: 1.6.3
resolution: "@biomejs/cli-darwin-arm64@npm:1.6.3"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@biomejs/cli-darwin-x64@npm:1.6.3":
version: 1.6.3
resolution: "@biomejs/cli-darwin-x64@npm:1.6.3"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@biomejs/cli-linux-arm64-musl@npm:1.6.3":
version: 1.6.3
resolution: "@biomejs/cli-linux-arm64-musl@npm:1.6.3"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@biomejs/cli-linux-arm64@npm:1.6.3":
version: 1.6.3
resolution: "@biomejs/cli-linux-arm64@npm:1.6.3"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@biomejs/cli-linux-x64-musl@npm:1.6.3":
version: 1.6.3
resolution: "@biomejs/cli-linux-x64-musl@npm:1.6.3"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@biomejs/cli-linux-x64@npm:1.6.3":
version: 1.6.3
resolution: "@biomejs/cli-linux-x64@npm:1.6.3"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@biomejs/cli-win32-arm64@npm:1.6.3":
version: 1.6.3
resolution: "@biomejs/cli-win32-arm64@npm:1.6.3"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@biomejs/cli-win32-x64@npm:1.6.3":
version: 1.6.3
resolution: "@biomejs/cli-win32-x64@npm:1.6.3"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@chevrotain/types@npm:^9.1.0":
version: 9.1.0
resolution: "@chevrotain/types@npm:9.1.0"
checksum: 10/091dbff29fa2c9e4ac2f7c0b0f98be67a7f0fc492bf871f3b9b46b7ec4bc91f5dadfc59157423add1eeb38873ac9a375c6687531760ae908b1539ba42b08aee0
languageName: node
linkType: hard
"@chevrotain/utils@npm:^9.1.0":
version: 9.1.0
resolution: "@chevrotain/utils@npm:9.1.0"
checksum: 10/707f3fac207f2e26243c44ad27650132a5be8a20f3e05e507ace201f7b10804f18a6a94d9dde08c722986dad7bd1fc805b1b3fb891227ce3977acbc920a065f2
languageName: node
linkType: hard
"@fluid-experimental/data-objects@npm:2.0.0-rc.1.0.4":
version: 2.0.0-rc.1.0.4
resolution: "@fluid-experimental/data-objects@npm:2.0.0-rc.1.0.4"
dependencies:
"@fluid-internal/client-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/aqueduct": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/core-interfaces": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/core-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/datastore-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/map": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/runtime-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
events: "npm:^3.1.0"
checksum: 10/ed8fa80765db64b590966045cafb178fb077529c3666877a00ae7e341460e4e0d3e49adacf92740ecd21055231cf3c82c4342366d4f8865a921eed02a8774061
languageName: node
linkType: hard
"@fluid-experimental/data-objects@patch:@fluid-experimental/data-objects@npm:2.0.0-rc.1.0.4#.yarn/patches/@fluid-experimental-data-objects-npm-2.0.0-rc.1.0.4-46f9458e1b.patch::locator=fluid-react%40workspace%3A.":
version: 2.0.0-rc.1.0.4
resolution: "@fluid-experimental/data-objects@patch:@fluid-experimental/data-objects@npm%3A2.0.0-rc.1.0.4#.yarn/patches/@fluid-experimental-data-objects-npm-2.0.0-rc.1.0.4-46f9458e1b.patch::version=2.0.0-rc.1.0.4&hash=db773e&locator=fluid-react%40workspace%3A."
dependencies:
"@fluid-internal/client-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/aqueduct": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/core-interfaces": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/core-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/datastore-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/map": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/runtime-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
events: "npm:^3.1.0"
checksum: 10/97909c57864e28c84241af1d40e73d6ec4ad261ede9a382e1565cc374874e19effb92ad3e6d4cb56109631c56c4c4d7e6f82e46f3f2d90da7a255a73a15ed84c
languageName: node
linkType: hard
"@fluid-internal/client-utils@npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0":
version: 2.0.0-rc.1.0.4
resolution: "@fluid-internal/client-utils@npm:2.0.0-rc.1.0.4"
dependencies:
"@fluidframework/core-interfaces": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/core-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@types/events": "npm:^3.0.0"
base64-js: "npm:^1.5.1"
buffer: "npm:^6.0.3"
events: "npm:^3.1.0"
lodash: "npm:^4.17.21"
sha.js: "npm:^2.4.11"
checksum: 10/2dcef04a03c84de27777b36e5e193e0c61b77c8ee0811e010ee90b5e04b93fc9011a075d2f8e27dae90026e47f48abd4453f413fd256871f134294c516e5b695
languageName: node
linkType: hard
"@fluidframework/aqueduct@npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0":
version: 2.0.0-rc.1.0.4
resolution: "@fluidframework/aqueduct@npm:2.0.0-rc.1.0.4"
dependencies:
"@fluid-internal/client-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/container-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/container-runtime": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/container-runtime-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/core-interfaces": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/core-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/datastore": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/datastore-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/map": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/request-handler": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/runtime-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/runtime-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/synthesize": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/view-interfaces": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
uuid: "npm:^9.0.0"
checksum: 10/bb58cd122e236b183baaa618eaeed3e6ebf96f08f5debe53ea08ee8541562b2f3ae8c12c8c0dfc27f51a876f45beb515444bf6080bc6111692ad4f2c2cc18517
languageName: node
linkType: hard
"@fluidframework/azure-client@npm:^2.0.0-rc.1.0.4":
version: 2.0.0-rc.1.0.4
resolution: "@fluidframework/azure-client@npm:2.0.0-rc.1.0.4"
dependencies:
"@fluidframework/container-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/container-loader": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/core-interfaces": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/core-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/driver-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/driver-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/fluid-static": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/map": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/protocol-definitions": "npm:^3.1.0"
"@fluidframework/routerlicious-driver": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/runtime-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/server-services-client": "npm:^3.0.0"
"@fluidframework/telemetry-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
axios: "npm:^1.6.2"
checksum: 10/45d3d94cc00745c95c1952e4e8279110d85c9d90a4feb9f9f0062114028502c03fb1d3596621fb5bf6aa22813d6fb5e74593fc6fc24783032b8a26754289afd1
languageName: node
linkType: hard
"@fluidframework/azure-service-utils@npm:^2.0.0-rc.1.0.4":
version: 2.0.0-rc.1.0.4
resolution: "@fluidframework/azure-service-utils@npm:2.0.0-rc.1.0.4"
dependencies:
"@fluidframework/protocol-definitions": "npm:^3.1.0"
jsrsasign: "npm:^10.5.25"
uuid: "npm:^9.0.0"
checksum: 10/85c36cf15204fda28a0c0fdff0e6f179c7fddac4abdba7a32518afcbcef28c5c08d408146fccf01e8c38ed52609b7b1d13d815489eb27e686b9ebde95c3c5287
languageName: node
linkType: hard
"@fluidframework/common-definitions@npm:^1.1.0":
version: 1.1.0
resolution: "@fluidframework/common-definitions@npm:1.1.0"
checksum: 10/53533f7eda66e89fbff9c02da27cda7cb36f54b8f8997ee68b3420e285d1ce612b5a881c4d8fb6b76289be90c84f63a09f8ab2892161e82c181d0b707281b4f8
languageName: node
linkType: hard
"@fluidframework/common-utils@npm:^3.1.0":
version: 3.1.0
resolution: "@fluidframework/common-utils@npm:3.1.0"
dependencies:
"@fluidframework/common-definitions": "npm:^1.1.0"
"@types/events": "npm:^3.0.0"
base64-js: "npm:^1.5.1"
buffer: "npm:^6.0.3"
events: "npm:^3.1.0"
lodash: "npm:^4.17.21"
sha.js: "npm:^2.4.11"
checksum: 10/53c1e0ebbd8aa07950d6de8ac250b8be652af648b311772913e5070fafe8bb2b5a69b62f8bd699e030d0062ab2889ee14673aa9e8f0490cb553fbc2e99462451
languageName: node
linkType: hard
"@fluidframework/container-definitions@npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0, @fluidframework/container-definitions@npm:^2.0.0-rc.1.0.4":
version: 2.0.0-rc.1.0.4
resolution: "@fluidframework/container-definitions@npm:2.0.0-rc.1.0.4"
dependencies:
"@fluidframework/core-interfaces": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/driver-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/protocol-definitions": "npm:^3.1.0"
events: "npm:^3.1.0"
checksum: 10/263e3bfd42705aecd9cfc963a5e48064d5f284f98eec392a86346176fa491dfdc5e6c006832765bab375a5d188dbf7263475114cddfe82166c5918a2ee8d830e
languageName: node
linkType: hard
"@fluidframework/container-loader@npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0, @fluidframework/container-loader@npm:^2.0.0-rc.1.0.4":
version: 2.0.0-rc.1.0.4
resolution: "@fluidframework/container-loader@npm:2.0.0-rc.1.0.4"
dependencies:
"@fluid-internal/client-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/container-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/core-interfaces": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/core-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/driver-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/driver-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/protocol-base": "npm:^3.0.0"
"@fluidframework/protocol-definitions": "npm:^3.1.0"
"@fluidframework/telemetry-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
debug: "npm:^4.3.4"
double-ended-queue: "npm:^2.1.0-0"
events: "npm:^3.1.0"
url: "npm:^0.11.0"
uuid: "npm:^9.0.0"
checksum: 10/8036ec3ce2d5a9eabeafaccf9f85f4318ccb845d10363dc1c611bb6c3fe0b6515de3df69b662f5700ebf2aaace6dca84d75e9a5b65acacc33112c3493366d811
languageName: node
linkType: hard
"@fluidframework/container-runtime-definitions@npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0":
version: 2.0.0-rc.1.0.4
resolution: "@fluidframework/container-runtime-definitions@npm:2.0.0-rc.1.0.4"
dependencies:
"@fluidframework/container-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/core-interfaces": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/driver-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/protocol-definitions": "npm:^3.1.0"
"@fluidframework/runtime-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
checksum: 10/e2978b4e12999298daf105b37ee9ffb628e87bf915e266b84993af31d7427222166816949de7200b8f28d184803aea8cd5484d6c9852a8bca4a533b81660b21b
languageName: node
linkType: hard
"@fluidframework/container-runtime@npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0":
version: 2.0.0-rc.1.0.4
resolution: "@fluidframework/container-runtime@npm:2.0.0-rc.1.0.4"
dependencies:
"@fluid-internal/client-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/container-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/container-runtime-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/core-interfaces": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/core-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/datastore": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/driver-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/driver-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/id-compressor": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/protocol-definitions": "npm:^3.1.0"
"@fluidframework/runtime-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/runtime-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/telemetry-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@tylerbu/sorted-btree-es6": "npm:^1.8.0"
double-ended-queue: "npm:^2.1.0-0"
events: "npm:^3.1.0"
lz4js: "npm:^0.2.0"
uuid: "npm:^9.0.0"
checksum: 10/5a91f3994851bf18829a23f72ae2ef170b42c1951aecae7ad20671bbc95c4f0c33dfe03ea286dadbafcf94f2bd2cc0d513de8440ec83e3170eedc51690660a50
languageName: node
linkType: hard
"@fluidframework/core-interfaces@npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0":
version: 2.0.0-rc.1.0.4
resolution: "@fluidframework/core-interfaces@npm:2.0.0-rc.1.0.4"
checksum: 10/4de0cd3baaafbc5113eeeca790a2caa123bb3fba96961b1f0a94f87be0c027ebce9239944e4439994b17673b4420c8c7c1b3355023c2ebd0032e4ae8a8d28ff9
languageName: node
linkType: hard
"@fluidframework/core-utils@npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0":
version: 2.0.0-rc.1.0.4
resolution: "@fluidframework/core-utils@npm:2.0.0-rc.1.0.4"
checksum: 10/3d3153b734da22cd12f0e782640ba6ad30fdc0fd2093be49ad0f2c72cbe96d9c00b40580c75356e868dab2708e0d36aed395b8d20503c8355e30cfe108a2bb2c
languageName: node
linkType: hard
"@fluidframework/datastore-definitions@npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0":
version: 2.0.0-rc.1.0.4
resolution: "@fluidframework/datastore-definitions@npm:2.0.0-rc.1.0.4"
dependencies:
"@fluidframework/container-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/core-interfaces": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/id-compressor": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/protocol-definitions": "npm:^3.1.0"
"@fluidframework/runtime-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
checksum: 10/24dd19a29b63b805021ff63f3f5dd320abe6312e1ca6c8608e3355e3541e6b2e6dd039e53ae6eeb1f5e9127f98ad4a4547770c14f3d3d86755797a8c78c62181
languageName: node
linkType: hard
"@fluidframework/datastore@npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0":
version: 2.0.0-rc.1.0.4
resolution: "@fluidframework/datastore@npm:2.0.0-rc.1.0.4"
dependencies:
"@fluid-internal/client-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/container-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/core-interfaces": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/core-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/datastore-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/driver-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/driver-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/protocol-definitions": "npm:^3.1.0"
"@fluidframework/runtime-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/runtime-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/telemetry-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
lodash: "npm:^4.17.21"
uuid: "npm:^9.0.0"
checksum: 10/f73f11a42821403497e18a7e5819b9b9238aafa3c40d9d62877e2ca1076706b97b68f0dcfaff6e535723734d7f89f2d305951e83343caf462493cc1d4a03dd12
languageName: node
linkType: hard
"@fluidframework/driver-base@npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0":
version: 2.0.0-rc.1.0.4
resolution: "@fluidframework/driver-base@npm:2.0.0-rc.1.0.4"
dependencies:
"@fluid-internal/client-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/core-interfaces": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/core-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/driver-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/driver-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/protocol-definitions": "npm:^3.1.0"
"@fluidframework/telemetry-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
checksum: 10/da845e95437d63d5d870dd71a4ca28832f8689c5a323c1a12fdda2d8d5ec549fc93bcb2a3b54ab4d705d7da46669228c7a3a924e3f307e9807b5bf96d7472e4e
languageName: node
linkType: hard
"@fluidframework/driver-definitions@npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0":
version: 2.0.0-rc.1.0.4
resolution: "@fluidframework/driver-definitions@npm:2.0.0-rc.1.0.4"
dependencies:
"@fluidframework/core-interfaces": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/protocol-definitions": "npm:^3.1.0"
checksum: 10/55db91a855dd2c1e0733995b4dac7794ead39b832461a1ac5453896d0310f01e4820580e85483ff347179c374dfcc4d767df943269f3c3beb1735499b136e936
languageName: node
linkType: hard
"@fluidframework/driver-utils@npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0":
version: 2.0.0-rc.1.0.4
resolution: "@fluidframework/driver-utils@npm:2.0.0-rc.1.0.4"
dependencies:
"@fluid-internal/client-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/core-interfaces": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/core-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/driver-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/gitresources": "npm:^3.0.0"
"@fluidframework/protocol-base": "npm:^3.0.0"
"@fluidframework/protocol-definitions": "npm:^3.1.0"
"@fluidframework/telemetry-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
axios: "npm:^1.6.2"
lz4js: "npm:^0.2.0"
url: "npm:^0.11.0"
uuid: "npm:^9.0.0"
checksum: 10/8593d9f690ed1ab172567a8733b7891739856e75902d515921c82728bd98e94a9c458ccddc331d2dbe6aea81feb622c3e6b0f6b24aed11503d58410927c791ba
languageName: node
linkType: hard
"@fluidframework/fluid-static@npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0, @fluidframework/fluid-static@npm:^2.0.0-rc.1.0.4":
version: 2.0.0-rc.1.0.4
resolution: "@fluidframework/fluid-static@npm:2.0.0-rc.1.0.4"
dependencies:
"@fluid-internal/client-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/aqueduct": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/container-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/container-loader": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/container-runtime": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/container-runtime-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/core-interfaces": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/datastore-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/protocol-definitions": "npm:^3.1.0"
"@fluidframework/request-handler": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/runtime-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/runtime-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
checksum: 10/35e930f5e0ad81d51701711cc31bae696268af851f7d868f676673b0c15c4cb96cdee687daa917f756c41db87eb6254c034c86c90b3bb1ff75cf8150a7591c19
languageName: node
linkType: hard
"@fluidframework/gitresources@npm:^3.0.0, @fluidframework/gitresources@npm:~3.0.0":
version: 3.0.0
resolution: "@fluidframework/gitresources@npm:3.0.0"
checksum: 10/392e9ca3d3906cfdc446ad0115824da36ef33170d6288396e31726e6477cc773b2173ac44b266fd610e844b6af7388a673f42ba895fc6fa4f6e99c613b1775c7
languageName: node
linkType: hard
"@fluidframework/id-compressor@npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0":
version: 2.0.0-rc.1.0.4
resolution: "@fluidframework/id-compressor@npm:2.0.0-rc.1.0.4"
dependencies:
"@fluid-internal/client-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/core-interfaces": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/core-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/telemetry-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@tylerbu/sorted-btree-es6": "npm:^1.8.0"
uuid: "npm:^9.0.0"
checksum: 10/b76414d7b05dae4f643f343df1566dc620d89751e5a9a1ce4c423b412eb163f895273ab49371cd5d14cd8c3e9eefb92684e58dcb62b0dc3e61d65d5ba697a490
languageName: node
linkType: hard
"@fluidframework/map@npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0, @fluidframework/map@npm:^2.0.0-rc.1.0.4":
version: 2.0.0-rc.1.0.4
resolution: "@fluidframework/map@npm:2.0.0-rc.1.0.4"
dependencies:
"@fluid-internal/client-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/core-interfaces": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/core-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/datastore-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/driver-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/merge-tree": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/protocol-definitions": "npm:^3.1.0"
"@fluidframework/runtime-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/runtime-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/shared-object-base": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/telemetry-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
path-browserify: "npm:^1.0.1"
checksum: 10/9bf38dcde395521184e388378aa42826caabb45adcb2017281b4c34be835c66effab185a2defa850c8d7589f7beb744297231b16e031fc63509cb711c44d6613
languageName: node
linkType: hard
"@fluidframework/merge-tree@npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0":
version: 2.0.0-rc.1.0.4
resolution: "@fluidframework/merge-tree@npm:2.0.0-rc.1.0.4"
dependencies:
"@fluid-internal/client-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/container-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/core-interfaces": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/core-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/datastore-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/protocol-definitions": "npm:^3.1.0"
"@fluidframework/runtime-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/runtime-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/shared-object-base": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/telemetry-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
checksum: 10/8f5e65880b9771f9aac39abccff7b9c5fe733f1c091f65de68383f4a16c8dab3a1d7118fffa60cc77a7464cd36759e3f567eac60ee791265e312163e60322d05
languageName: node
linkType: hard
"@fluidframework/protocol-base@npm:^3.0.0, @fluidframework/protocol-base@npm:~3.0.0":
version: 3.0.0
resolution: "@fluidframework/protocol-base@npm:3.0.0"
dependencies:
"@fluidframework/common-utils": "npm:^3.1.0"
"@fluidframework/gitresources": "npm:~3.0.0"
"@fluidframework/protocol-definitions": "npm:^3.1.0"
events: "npm:^3.1.0"
checksum: 10/ae4e1b59f27534d3581d3d2d5dba37908be63a4e0268c083b6bfe3d1956e730ec3b1efdb374092ce713c596eb72ade6186657a1f32c9c7990d9281510ac69489
languageName: node
linkType: hard
"@fluidframework/protocol-definitions@npm:^3.1.0":
version: 3.1.0
resolution: "@fluidframework/protocol-definitions@npm:3.1.0"
checksum: 10/e5d64b22c49655e74eb4f58f79018fbdd809a01c8b33fe2e95bbf52f433c32b8cfb8dca8b845a5aa24c85a4b612b08cd93b4a6c4d5400f507ae11ad83153c22f
languageName: node
linkType: hard
"@fluidframework/request-handler@npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0":
version: 2.0.0-rc.1.0.4
resolution: "@fluidframework/request-handler@npm:2.0.0-rc.1.0.4"
dependencies:
"@fluidframework/container-runtime-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/core-interfaces": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/core-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/runtime-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/runtime-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
checksum: 10/0a540c5efad38b92441d5d1469c9e93bdecf21d4c48eacb0847655d0d7b048bac37227c178d4bbc4ddf2837ea74679a5413c1aac0c90cdc5cef5a75d38842753
languageName: node
linkType: hard
"@fluidframework/routerlicious-driver@npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0":
version: 2.0.0-rc.1.0.4
resolution: "@fluidframework/routerlicious-driver@npm:2.0.0-rc.1.0.4"
dependencies:
"@fluid-internal/client-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/core-interfaces": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/core-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/driver-base": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/driver-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/driver-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/gitresources": "npm:^3.0.0"
"@fluidframework/protocol-base": "npm:^3.0.0"
"@fluidframework/protocol-definitions": "npm:^3.1.0"
"@fluidframework/server-services-client": "npm:^3.0.0"
"@fluidframework/telemetry-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
cross-fetch: "npm:^3.1.5"
json-stringify-safe: "npm:5.0.1"
socket.io-client: "npm:^4.6.1"
url-parse: "npm:^1.5.8"
uuid: "npm:^9.0.0"
checksum: 10/031d5619c1456ba9596b031bc1d77bcdeb8c16123d4ff743c5bf77932670edb11eaeb42509cfdfe102e0f3325f12f21cf2deea52c1a1144df3b69964dd6ed7ba
languageName: node
linkType: hard
"@fluidframework/runtime-definitions@npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0":
version: 2.0.0-rc.1.0.4
resolution: "@fluidframework/runtime-definitions@npm:2.0.0-rc.1.0.4"
dependencies:
"@fluidframework/container-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/core-interfaces": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/driver-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/id-compressor": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/protocol-definitions": "npm:^3.1.0"
checksum: 10/d826b4b6461b4bcf0763cd0a8740995ab9f1e1115485bd84bc7176ef3f860d061d021c7a718214dc1a6b489f11cb5947ccde8885aa472333a4366c05b81a7ce2
languageName: node
linkType: hard
"@fluidframework/runtime-utils@npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0":
version: 2.0.0-rc.1.0.4
resolution: "@fluidframework/runtime-utils@npm:2.0.0-rc.1.0.4"
dependencies:
"@fluid-internal/client-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/container-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/container-runtime-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/core-interfaces": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/core-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/datastore-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/driver-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/protocol-definitions": "npm:^3.1.0"
"@fluidframework/runtime-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/telemetry-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
checksum: 10/62187a9d90006c53d9da29872f04652693f57f664a87d4344b6b46d474f0b4e7affd1a3b67f383f3ef47bab4f59ebfffc3fa33dda7fbeee550dd0ec218c5c0fe
languageName: node
linkType: hard
"@fluidframework/server-services-client@npm:^3.0.0":
version: 3.0.0
resolution: "@fluidframework/server-services-client@npm:3.0.0"
dependencies:
"@fluidframework/common-utils": "npm:^3.1.0"
"@fluidframework/gitresources": "npm:~3.0.0"
"@fluidframework/protocol-base": "npm:~3.0.0"
"@fluidframework/protocol-definitions": "npm:^3.1.0"
axios: "npm:^1.6.2"
crc-32: "npm:1.2.0"
debug: "npm:^4.3.4"
json-stringify-safe: "npm:^5.0.1"
jsrsasign: "npm:^10.5.25"
jwt-decode: "npm:^4.0.0"
querystring: "npm:^0.2.0"
sillyname: "npm:^0.1.0"
uuid: "npm:^9.0.0"
checksum: 10/bc62e3279bc585b5834fceaa95f4ac011caa0755e2be0b0aadd173c12d4c1574d4f1dcbcd0963fa1c309763e9a66b6545264ddd92f017a5f5aa0de7af5db5083
languageName: node
linkType: hard
"@fluidframework/shared-object-base@npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0":
version: 2.0.0-rc.1.0.4
resolution: "@fluidframework/shared-object-base@npm:2.0.0-rc.1.0.4"
dependencies:
"@fluid-internal/client-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/container-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/container-runtime": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/core-interfaces": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/core-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/datastore": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/datastore-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/protocol-definitions": "npm:^3.1.0"
"@fluidframework/runtime-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/runtime-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/telemetry-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
uuid: "npm:^9.0.0"
checksum: 10/89c25b8339b46d0bf1c4f1a207ab11be01a7b62c83a3a9ced9245a591e3d6ee5838fbfb091b447c0afd18179e5383ee5fb92a2d45ef70d8e26abd743eeb631e2
languageName: node
linkType: hard
"@fluidframework/synthesize@npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0":
version: 2.0.0-rc.1.0.4
resolution: "@fluidframework/synthesize@npm:2.0.0-rc.1.0.4"
dependencies:
"@fluidframework/core-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
checksum: 10/2455123a281cec85e969b56690654ef08d8fac35ed7b42d3e903a636f2f49dd18d48739b5e7f98259a01d7ac0585c0618725436a21fd350c06304eefa0f0b185
languageName: node
linkType: hard
"@fluidframework/telemetry-utils@npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0":
version: 2.0.0-rc.1.0.4
resolution: "@fluidframework/telemetry-utils@npm:2.0.0-rc.1.0.4"
dependencies:
"@fluid-internal/client-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/core-interfaces": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/core-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/protocol-definitions": "npm:^3.1.0"
debug: "npm:^4.3.4"
events: "npm:^3.1.0"
uuid: "npm:^9.0.0"
checksum: 10/b56225b6458314381ddfdea2215b795ee79103a2f5c511f6ae1eb36223f9d57916e27bac03a9a7584605dfd578a00648038a97ccbf692602cadb7a46836bafe1
languageName: node
linkType: hard
"@fluidframework/test-runtime-utils@npm:^2.0.0-rc.1.0.4":
version: 2.0.0-rc.1.0.4
resolution: "@fluidframework/test-runtime-utils@npm:2.0.0-rc.1.0.4"
dependencies:
"@fluid-internal/client-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/container-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/core-interfaces": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/core-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/datastore-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/driver-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/id-compressor": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/protocol-definitions": "npm:^3.1.0"
"@fluidframework/routerlicious-driver": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/runtime-definitions": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/runtime-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
"@fluidframework/telemetry-utils": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
events: "npm:^3.1.0"
jsrsasign: "npm:^10.5.25"
uuid: "npm:^9.0.0"
checksum: 10/e9776772d4b6f7a8d4f6750b56f65511d3f24fdd7acf1f0751f7120c09564a4d390c9d62dc43a047d6e028b442ec973fb56c919981504b3c1d1d0a6b9588e83d
languageName: node
linkType: hard
"@fluidframework/view-interfaces@npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0":
version: 2.0.0-rc.1.0.4
resolution: "@fluidframework/view-interfaces@npm:2.0.0-rc.1.0.4"
dependencies:
"@fluidframework/core-interfaces": "npm:>=2.0.0-rc.1.0.4 <2.0.0-rc.1.1.0"
checksum: 10/8137d2d011cf11bcedfff7ca2629161e0367bf625d303e4b9da85d905699fe5e2e4becbaf9aeb17bd959b6bf44bd6dc2417480e8536b002a0f4051ab94576219
languageName: node
linkType: hard
"@gar/promisify@npm:^1.1.3":
version: 1.1.3
resolution: "@gar/promisify@npm:1.1.3"
checksum: 10/052dd232140fa60e81588000cbe729a40146579b361f1070bce63e2a761388a22a16d00beeffc504bd3601cb8e055c57b21a185448b3ed550cf50716f4fd442e
languageName: node
linkType: hard
"@isaacs/cliui@npm:^8.0.2":
version: 8.0.2
resolution: "@isaacs/cliui@npm:8.0.2"
dependencies:
string-width: "npm:^5.1.2"
string-width-cjs: "npm:string-width@^4.2.0"
strip-ansi: "npm:^7.0.1"
strip-ansi-cjs: "npm:strip-ansi@^6.0.1"
wrap-ansi: "npm:^8.1.0"
wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0"
checksum: 10/e9ed5fd27c3aec1095e3a16e0c0cf148d1fee55a38665c35f7b3f86a9b5d00d042ddaabc98e8a1cb7463b9378c15f22a94eb35e99469c201453eb8375191f243
languageName: node
linkType: hard
"@lezer/common@npm:^0.15.0, @lezer/common@npm:^0.15.7":
version: 0.15.12
resolution: "@lezer/common@npm:0.15.12"
checksum: 10/0e31e1bbfdf503a6a4f241b8797c7beba59da517f75d23ad24a7332a50861a6dfdd597c6679c8d54784d0aa6c271268891c5fe20e32f0c9d9916a4439db2e879
languageName: node
linkType: hard
"@lezer/lr@npm:^0.15.4":
version: 0.15.8
resolution: "@lezer/lr@npm:0.15.8"
dependencies:
"@lezer/common": "npm:^0.15.0"
checksum: 10/55c406d8e48091969f5b37bcafbeee1932015658e3539be71d059387104cb49907f966edd36f528f25efc06f6b3a124c95c2ba67d38c655573267f084bd63541
languageName: node
linkType: hard
"@lmdb/lmdb-darwin-arm64@npm:2.5.2":
version: 2.5.2
resolution: "@lmdb/lmdb-darwin-arm64@npm:2.5.2"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@lmdb/lmdb-darwin-arm64@npm:2.8.5":
version: 2.8.5
resolution: "@lmdb/lmdb-darwin-arm64@npm:2.8.5"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@lmdb/lmdb-darwin-x64@npm:2.5.2":
version: 2.5.2
resolution: "@lmdb/lmdb-darwin-x64@npm:2.5.2"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@lmdb/lmdb-darwin-x64@npm:2.8.5":
version: 2.8.5
resolution: "@lmdb/lmdb-darwin-x64@npm:2.8.5"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@lmdb/lmdb-linux-arm64@npm:2.5.2":
version: 2.5.2
resolution: "@lmdb/lmdb-linux-arm64@npm:2.5.2"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@lmdb/lmdb-linux-arm64@npm:2.8.5":
version: 2.8.5
resolution: "@lmdb/lmdb-linux-arm64@npm:2.8.5"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@lmdb/lmdb-linux-arm@npm:2.5.2":
version: 2.5.2
resolution: "@lmdb/lmdb-linux-arm@npm:2.5.2"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@lmdb/lmdb-linux-arm@npm:2.8.5":
version: 2.8.5
resolution: "@lmdb/lmdb-linux-arm@npm:2.8.5"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@lmdb/lmdb-linux-x64@npm:2.5.2":
version: 2.5.2
resolution: "@lmdb/lmdb-linux-x64@npm:2.5.2"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@lmdb/lmdb-linux-x64@npm:2.8.5":
version: 2.8.5
resolution: "@lmdb/lmdb-linux-x64@npm:2.8.5"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@lmdb/lmdb-win32-x64@npm:2.5.2":
version: 2.5.2
resolution: "@lmdb/lmdb-win32-x64@npm:2.5.2"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@lmdb/lmdb-win32-x64@npm:2.8.5":
version: 2.8.5
resolution: "@lmdb/lmdb-win32-x64@npm:2.8.5"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@mischnic/json-sourcemap@npm:^0.1.0":
version: 0.1.0
resolution: "@mischnic/json-sourcemap@npm:0.1.0"
dependencies:
"@lezer/common": "npm:^0.15.7"
"@lezer/lr": "npm:^0.15.4"
json5: "npm:^2.2.1"
checksum: 10/9595e67ba973e38be33601d2114ab3bf061298d8f078ca3878ea463f3aeae7c174795544406b90bb488ea1001d133abef3346b541c9036babf836730479ff1e9
languageName: node
linkType: hard
"@msgpackr-extract/msgpackr-extract-darwin-arm64@npm:2.1.2":
version: 2.1.2
resolution: "@msgpackr-extract/msgpackr-extract-darwin-arm64@npm:2.1.2"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@msgpackr-extract/msgpackr-extract-darwin-arm64@npm:3.0.2":
version: 3.0.2
resolution: "@msgpackr-extract/msgpackr-extract-darwin-arm64@npm:3.0.2"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@msgpackr-extract/msgpackr-extract-darwin-x64@npm:2.1.2":
version: 2.1.2
resolution: "@msgpackr-extract/msgpackr-extract-darwin-x64@npm:2.1.2"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@msgpackr-extract/msgpackr-extract-darwin-x64@npm:3.0.2":
version: 3.0.2
resolution: "@msgpackr-extract/msgpackr-extract-darwin-x64@npm:3.0.2"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@msgpackr-extract/msgpackr-extract-linux-arm64@npm:2.1.2":
version: 2.1.2
resolution: "@msgpackr-extract/msgpackr-extract-linux-arm64@npm:2.1.2"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@msgpackr-extract/msgpackr-extract-linux-arm64@npm:3.0.2":
version: 3.0.2
resolution: "@msgpackr-extract/msgpackr-extract-linux-arm64@npm:3.0.2"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@msgpackr-extract/msgpackr-extract-linux-arm@npm:2.1.2":
version: 2.1.2
resolution: "@msgpackr-extract/msgpackr-extract-linux-arm@npm:2.1.2"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@msgpackr-extract/msgpackr-extract-linux-arm@npm:3.0.2":
version: 3.0.2
resolution: "@msgpackr-extract/msgpackr-extract-linux-arm@npm:3.0.2"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@msgpackr-extract/msgpackr-extract-linux-x64@npm:2.1.2":
version: 2.1.2
resolution: "@msgpackr-extract/msgpackr-extract-linux-x64@npm:2.1.2"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@msgpackr-extract/msgpackr-extract-linux-x64@npm:3.0.2":
version: 3.0.2
resolution: "@msgpackr-extract/msgpackr-extract-linux-x64@npm:3.0.2"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@msgpackr-extract/msgpackr-extract-win32-x64@npm:2.1.2":
version: 2.1.2
resolution: "@msgpackr-extract/msgpackr-extract-win32-x64@npm:2.1.2"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@msgpackr-extract/msgpackr-extract-win32-x64@npm:3.0.2":
version: 3.0.2
resolution: "@msgpackr-extract/msgpackr-extract-win32-x64@npm:3.0.2"
conditions: os=win32 & cpu=x64
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: 10/6ab2a9b8a1d67b067922c36f259e3b3dfd6b97b219c540877a4944549a4d49ea5ceba5663905ab5289682f1f3c15ff441d02f0447f620a42e1cb5e1937174d4b
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: 10/012480b5ca9d97bff9261571dbbec7bbc6033f69cc92908bc1ecfad0792361a5a1994bc48674b9ef76419d056a03efadfce5a6cf6dbc0a36559571a7a483f6f0
languageName: node
linkType: hard
"@nodelib/fs.walk@npm:^1.2.3":
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: 10/40033e33e96e97d77fba5a238e4bba4487b8284678906a9f616b5579ddaf868a18874c0054a75402c9fbaaa033a25ceae093af58c9c30278e35c23c9479e79b0
languageName: node
linkType: hard
"@npmcli/fs@npm:^2.1.0":
version: 2.1.1
resolution: "@npmcli/fs@npm:2.1.1"
dependencies:
"@gar/promisify": "npm:^1.1.3"
semver: "npm:^7.3.5"
checksum: 10/ffa5114d9cbf76c9757ffc97f04fab41ad50ea8cb5bead37e76d6082b7926f4c56fb57e62b200a8012b8cec74d27238835e4738c637ac20ec6f1e8d3f3745479
languageName: node
linkType: hard
"@npmcli/move-file@npm:^2.0.0":
version: 2.0.0
resolution: "@npmcli/move-file@npm:2.0.0"
dependencies:
mkdirp: "npm:^1.0.4"
rimraf: "npm:^3.0.2"
checksum: 10/1388777b507b0c592d53f41b9d182e1a8de7763bc625fc07999b8edbc22325f074e5b3ec90af79c89d6987fdb2325bc66d59f483258543c14a43661621f841b0
languageName: node
linkType: hard
"@parcel/bundler-default@npm:2.12.0":
version: 2.12.0
resolution: "@parcel/bundler-default@npm:2.12.0"
dependencies:
"@parcel/diagnostic": "npm:2.12.0"
"@parcel/graph": "npm:3.2.0"
"@parcel/plugin": "npm:2.12.0"
"@parcel/rust": "npm:2.12.0"
"@parcel/utils": "npm:2.12.0"
nullthrows: "npm:^1.1.1"
checksum: 10/0c70e43d42bd3e2cf38aa19a6d4bc6b9f0fdaac84b4579b7186e55b6b47faf7d7c50ac4d0b9f50215916f4436ec335a45bda3b6025c0506fbf16525b2d592ff5
languageName: node
linkType: hard
"@parcel/cache@npm:2.12.0":
version: 2.12.0
resolution: "@parcel/cache@npm:2.12.0"
dependencies:
"@parcel/fs": "npm:2.12.0"
"@parcel/logger": "npm:2.12.0"
"@parcel/utils": "npm:2.12.0"
lmdb: "npm:2.8.5"
peerDependencies:
"@parcel/core": ^2.12.0
checksum: 10/370be28d05522f397e37ab869aa7cfc355b698186bbd3c8393eea175db2634e3cb5a574180e9c1e98830d5c9c2d89335f99ae09bc8127ebd2c41120913164b37
languageName: node
linkType: hard
"@parcel/cache@npm:2.6.2":
version: 2.6.2
resolution: "@parcel/cache@npm:2.6.2"
dependencies:
"@parcel/fs": "npm:2.6.2"
"@parcel/logger": "npm:2.6.2"