-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage-lock.json
2795 lines (2795 loc) · 108 KB
/
package-lock.json
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
{
"name": "shared-tree-watch-party",
"version": "0.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "shared-tree-watch-party",
"version": "0.0.0",
"dependencies": {
"@fluid-experimental/tree2": "2.0.0-dev.5.3.2.178189",
"@fluidframework/azure-client": "2.0.0-dev.5.3.2.178189",
"@fluidframework/test-client-utils": "2.0.0-dev.5.3.2.178189",
"@fluidframework/test-runtime-utils": "2.0.0-dev.5.3.2.178189",
"fluid-framework": "2.0.0-dev.5.3.2.178189"
},
"devDependencies": {
"@types/youtube": "^0.0.47",
"eslint": "^8.49.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"vite": "^4.4.5"
}
},
"node_modules/@aashutoshrathi/word-wrap": {
"version": "1.2.6",
"resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz",
"integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/@esbuild/android-arm": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.20.tgz",
"integrity": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==",
"cpu": [
"arm"
],
"dev": true,
"optional": true,
"os": [
"android"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/android-arm64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz",
"integrity": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==",
"cpu": [
"arm64"
],
"dev": true,
"optional": true,
"os": [
"android"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/android-x64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.20.tgz",
"integrity": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==",
"cpu": [
"x64"
],
"dev": true,
"optional": true,
"os": [
"android"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/darwin-arm64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz",
"integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==",
"cpu": [
"arm64"
],
"dev": true,
"optional": true,
"os": [
"darwin"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/darwin-x64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz",
"integrity": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==",
"cpu": [
"x64"
],
"dev": true,
"optional": true,
"os": [
"darwin"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/freebsd-arm64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz",
"integrity": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==",
"cpu": [
"arm64"
],
"dev": true,
"optional": true,
"os": [
"freebsd"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/freebsd-x64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz",
"integrity": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==",
"cpu": [
"x64"
],
"dev": true,
"optional": true,
"os": [
"freebsd"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/linux-arm": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz",
"integrity": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==",
"cpu": [
"arm"
],
"dev": true,
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/linux-arm64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz",
"integrity": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==",
"cpu": [
"arm64"
],
"dev": true,
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/linux-ia32": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz",
"integrity": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==",
"cpu": [
"ia32"
],
"dev": true,
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/linux-loong64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz",
"integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==",
"cpu": [
"loong64"
],
"dev": true,
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/linux-mips64el": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz",
"integrity": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==",
"cpu": [
"mips64el"
],
"dev": true,
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/linux-ppc64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz",
"integrity": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==",
"cpu": [
"ppc64"
],
"dev": true,
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/linux-riscv64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz",
"integrity": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==",
"cpu": [
"riscv64"
],
"dev": true,
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/linux-s390x": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz",
"integrity": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==",
"cpu": [
"s390x"
],
"dev": true,
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/linux-x64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz",
"integrity": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==",
"cpu": [
"x64"
],
"dev": true,
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/netbsd-x64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz",
"integrity": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==",
"cpu": [
"x64"
],
"dev": true,
"optional": true,
"os": [
"netbsd"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/openbsd-x64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz",
"integrity": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==",
"cpu": [
"x64"
],
"dev": true,
"optional": true,
"os": [
"openbsd"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/sunos-x64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz",
"integrity": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==",
"cpu": [
"x64"
],
"dev": true,
"optional": true,
"os": [
"sunos"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/win32-arm64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz",
"integrity": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==",
"cpu": [
"arm64"
],
"dev": true,
"optional": true,
"os": [
"win32"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/win32-ia32": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz",
"integrity": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==",
"cpu": [
"ia32"
],
"dev": true,
"optional": true,
"os": [
"win32"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/win32-x64": {
"version": "0.18.20",
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz",
"integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==",
"cpu": [
"x64"
],
"dev": true,
"optional": true,
"os": [
"win32"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@eslint-community/eslint-utils": {
"version": "4.4.0",
"resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz",
"integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==",
"dev": true,
"dependencies": {
"eslint-visitor-keys": "^3.3.0"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"peerDependencies": {
"eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
}
},
"node_modules/@eslint-community/regexpp": {
"version": "4.8.1",
"resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.8.1.tgz",
"integrity": "sha512-PWiOzLIUAjN/w5K17PoF4n6sKBw0gqLHPhywmYHP4t1VFQQVYeb1yWsJwnMVEMl3tUHME7X/SJPZLmtG7XBDxQ==",
"dev": true,
"engines": {
"node": "^12.0.0 || ^14.0.0 || >=16.0.0"
}
},
"node_modules/@eslint/eslintrc": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.2.tgz",
"integrity": "sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==",
"dev": true,
"dependencies": {
"ajv": "^6.12.4",
"debug": "^4.3.2",
"espree": "^9.6.0",
"globals": "^13.19.0",
"ignore": "^5.2.0",
"import-fresh": "^3.2.1",
"js-yaml": "^4.1.0",
"minimatch": "^3.1.2",
"strip-json-comments": "^3.1.1"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"url": "https://opencollective.com/eslint"
}
},
"node_modules/@eslint/js": {
"version": "8.49.0",
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.49.0.tgz",
"integrity": "sha512-1S8uAY/MTJqVx0SC4epBq+N2yhuwtNwLbJYNZyhL2pO1ZVKn5HFXav5T41Ryzy9K9V7ZId2JB2oy/W4aCd9/2w==",
"dev": true,
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
}
},
"node_modules/@fluid-experimental/tree2": {
"version": "2.0.0-dev.5.3.2.178189",
"resolved": "https://registry.npmjs.org/@fluid-experimental/tree2/-/tree2-2.0.0-dev.5.3.2.178189.tgz",
"integrity": "sha512-cWOWvI4qGv32iqrJIg2Va97+wDb+PlgEtUG+Oci4kHXnf+2vmanl3Ml6UbdexoDqkKDArj47xbLgd7Gmo1FCcA==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^1.1.1",
"@fluidframework/container-runtime": "2.0.0-dev.5.3.2.178189",
"@fluidframework/core-interfaces": "2.0.0-dev.5.3.2.178189",
"@fluidframework/core-utils": "2.0.0-dev.5.3.2.178189",
"@fluidframework/datastore-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/protocol-definitions": "^1.1.0",
"@fluidframework/runtime-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/runtime-utils": "2.0.0-dev.5.3.2.178189",
"@fluidframework/shared-object-base": "2.0.0-dev.5.3.2.178189",
"@sinclair/typebox": "^0.28.8",
"@ungap/structured-clone": "^0.3.4",
"sorted-btree": "^1.8.0",
"uuid": "^8.3.1"
}
},
"node_modules/@fluidframework/aqueduct": {
"version": "2.0.0-dev.5.3.2.178189",
"resolved": "https://registry.npmjs.org/@fluidframework/aqueduct/-/aqueduct-2.0.0-dev.5.3.2.178189.tgz",
"integrity": "sha512-rd3Y/pKc7pBPCbV75e9bbtgoNcOWdzZ963e2UpCnu8LAoSy1RhknX94aGb1MerscLYpzxd0dz8t61HB1ohpIQA==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^1.1.1",
"@fluidframework/container-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/container-runtime": "2.0.0-dev.5.3.2.178189",
"@fluidframework/container-runtime-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/core-interfaces": "2.0.0-dev.5.3.2.178189",
"@fluidframework/datastore": "2.0.0-dev.5.3.2.178189",
"@fluidframework/datastore-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/map": "2.0.0-dev.5.3.2.178189",
"@fluidframework/request-handler": "2.0.0-dev.5.3.2.178189",
"@fluidframework/runtime-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/runtime-utils": "2.0.0-dev.5.3.2.178189",
"@fluidframework/synthesize": "2.0.0-dev.5.3.2.178189",
"@fluidframework/view-interfaces": "2.0.0-dev.5.3.2.178189",
"uuid": "^8.3.1"
}
},
"node_modules/@fluidframework/azure-client": {
"version": "2.0.0-dev.5.3.2.178189",
"resolved": "https://registry.npmjs.org/@fluidframework/azure-client/-/azure-client-2.0.0-dev.5.3.2.178189.tgz",
"integrity": "sha512-91/duX1zmAM2q0+WdOxgUZ62TK2lFEp92LZbjs7bcG6CquPfaUxPqmfrNmoZixZwX6Yd1TSaYmeg7YFfepWGLg==",
"dependencies": {
"@fluidframework/common-utils": "^1.1.1",
"@fluidframework/container-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/container-loader": "2.0.0-dev.5.3.2.178189",
"@fluidframework/core-interfaces": "2.0.0-dev.5.3.2.178189",
"@fluidframework/driver-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/driver-utils": "2.0.0-dev.5.3.2.178189",
"@fluidframework/fluid-static": "2.0.0-dev.5.3.2.178189",
"@fluidframework/map": "2.0.0-dev.5.3.2.178189",
"@fluidframework/protocol-definitions": "^1.1.0",
"@fluidframework/routerlicious-driver": "2.0.0-dev.5.3.2.178189",
"@fluidframework/runtime-utils": "2.0.0-dev.5.3.2.178189",
"@fluidframework/server-services-client": "^0.1038.4000",
"@fluidframework/telemetry-utils": "2.0.0-dev.5.3.2.178189",
"axios": "^0.26.0"
}
},
"node_modules/@fluidframework/common-definitions": {
"version": "0.20.1",
"resolved": "https://registry.npmjs.org/@fluidframework/common-definitions/-/common-definitions-0.20.1.tgz",
"integrity": "sha512-KaoQ7w2MDH5OeRKVatL5yVOCFg+9wD6bLSLFh1/TV1EZM46l49iBqO7UVjUtPE6BIm0jvvOzJXULGVSpzokX3g=="
},
"node_modules/@fluidframework/common-utils": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@fluidframework/common-utils/-/common-utils-1.1.1.tgz",
"integrity": "sha512-XCPEFE1JAg+juQZYQQVZjHZJlM5+Wm9NxRbsnsix05M1tSq0p3SLqwgfaSGssXhLLX5QtG+aF1QD5a3LA1qtNQ==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@types/events": "^3.0.0",
"base64-js": "^1.5.1",
"buffer": "^6.0.3",
"events": "^3.1.0",
"lodash": "^4.17.21",
"sha.js": "^2.4.11"
}
},
"node_modules/@fluidframework/container-definitions": {
"version": "2.0.0-dev.5.3.2.178189",
"resolved": "https://registry.npmjs.org/@fluidframework/container-definitions/-/container-definitions-2.0.0-dev.5.3.2.178189.tgz",
"integrity": "sha512-jCbwDQDIGzJ0ZCQVICOgb1vnNxB3JoFiSZKpMb8c5JKNbGhoJm6UiwYTP6nFpIc+UHwYJDlHSMtV+cJTLfnGiw==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/core-interfaces": "2.0.0-dev.5.3.2.178189",
"@fluidframework/driver-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/protocol-definitions": "^1.1.0",
"events": "^3.1.0"
}
},
"node_modules/@fluidframework/container-loader": {
"version": "2.0.0-dev.5.3.2.178189",
"resolved": "https://registry.npmjs.org/@fluidframework/container-loader/-/container-loader-2.0.0-dev.5.3.2.178189.tgz",
"integrity": "sha512-o0emdjLLJwH3U9Ya89GCUBHHsjh5oFiwdOVVrSNogcvVL60W8Ow+arRKTVqFVbWBJu4wfu7T8G/XHU+tRHOthA==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^1.1.1",
"@fluidframework/container-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/container-utils": "2.0.0-dev.5.3.2.178189",
"@fluidframework/core-interfaces": "2.0.0-dev.5.3.2.178189",
"@fluidframework/driver-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/driver-utils": "2.0.0-dev.5.3.2.178189",
"@fluidframework/protocol-base": "^0.1039.1000",
"@fluidframework/protocol-definitions": "^1.1.0",
"@fluidframework/telemetry-utils": "2.0.0-dev.5.3.2.178189",
"abort-controller": "^3.0.0",
"double-ended-queue": "^2.1.0-0",
"events": "^3.1.0",
"lodash": "^4.17.21",
"url": "^0.11.0",
"uuid": "^8.3.1"
}
},
"node_modules/@fluidframework/container-runtime": {
"version": "2.0.0-dev.5.3.2.178189",
"resolved": "https://registry.npmjs.org/@fluidframework/container-runtime/-/container-runtime-2.0.0-dev.5.3.2.178189.tgz",
"integrity": "sha512-ZQzlXbQh2/1WmZ5JneW9fviTTvgpfWOwKUd2jmfLQi0FSELy/JxDRBgeefDueZOBKCT7Ts38ujdeN5m9dBPlvg==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^1.1.1",
"@fluidframework/container-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/container-runtime-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/container-utils": "2.0.0-dev.5.3.2.178189",
"@fluidframework/core-interfaces": "2.0.0-dev.5.3.2.178189",
"@fluidframework/core-utils": "2.0.0-dev.5.3.2.178189",
"@fluidframework/datastore": "2.0.0-dev.5.3.2.178189",
"@fluidframework/driver-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/driver-utils": "2.0.0-dev.5.3.2.178189",
"@fluidframework/protocol-definitions": "^1.1.0",
"@fluidframework/runtime-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/runtime-utils": "2.0.0-dev.5.3.2.178189",
"@fluidframework/telemetry-utils": "2.0.0-dev.5.3.2.178189",
"double-ended-queue": "^2.1.0-0",
"events": "^3.1.0",
"lz4js": "^0.2.0",
"sorted-btree": "^1.8.0",
"uuid": "^8.3.1"
}
},
"node_modules/@fluidframework/container-runtime-definitions": {
"version": "2.0.0-dev.5.3.2.178189",
"resolved": "https://registry.npmjs.org/@fluidframework/container-runtime-definitions/-/container-runtime-definitions-2.0.0-dev.5.3.2.178189.tgz",
"integrity": "sha512-0dmSeIqtJhFpeWT5GaxaurAF/Obj2QnJWi8LtH+SOfTlXaDnoEZwqvMD22/fnD4xYb4RvZ1UbpJtmeh2HHuoTA==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/container-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/core-interfaces": "2.0.0-dev.5.3.2.178189",
"@fluidframework/driver-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/protocol-definitions": "^1.1.0",
"@fluidframework/runtime-definitions": "2.0.0-dev.5.3.2.178189"
}
},
"node_modules/@fluidframework/container-utils": {
"version": "2.0.0-dev.5.3.2.178189",
"resolved": "https://registry.npmjs.org/@fluidframework/container-utils/-/container-utils-2.0.0-dev.5.3.2.178189.tgz",
"integrity": "sha512-6B9fOzPbcde+LZq1h3/gBKe4CJZ2+cCSU6q+H0IHzvYKUXNxwNctOoF2pit/o7EzPq1CG/kjRImLRXTcnukJAQ==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^1.1.1",
"@fluidframework/container-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/protocol-definitions": "^1.1.0",
"@fluidframework/telemetry-utils": "2.0.0-dev.5.3.2.178189"
}
},
"node_modules/@fluidframework/core-interfaces": {
"version": "2.0.0-dev.5.3.2.178189",
"resolved": "https://registry.npmjs.org/@fluidframework/core-interfaces/-/core-interfaces-2.0.0-dev.5.3.2.178189.tgz",
"integrity": "sha512-KkOTac2NduIafzpKV8hZ7tDOAbd9l3N6u7xeKX/w7mmQPFTfBodrVXlhJ7aQxJhgT5nZUgSL7UZL1lJs5ZvytQ=="
},
"node_modules/@fluidframework/core-utils": {
"version": "2.0.0-dev.5.3.2.178189",
"resolved": "https://registry.npmjs.org/@fluidframework/core-utils/-/core-utils-2.0.0-dev.5.3.2.178189.tgz",
"integrity": "sha512-HXQYzsUD9sPvk9tAc7pu/b0ut4y9KqsVn/0TYDIUehyORQ0NPO7onP76lGA2zZxJw7tJrtkPTre9tD+UJ9izOg=="
},
"node_modules/@fluidframework/datastore": {
"version": "2.0.0-dev.5.3.2.178189",
"resolved": "https://registry.npmjs.org/@fluidframework/datastore/-/datastore-2.0.0-dev.5.3.2.178189.tgz",
"integrity": "sha512-tA8Us1Dm+8zehzG5ZT10HNCoZfZ5zrMjySMPsX0oBQoDwQk7zYzfZSMe5r3SLwOsC+fLdOesLZ9OVO0MWXUWOg==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^1.1.1",
"@fluidframework/container-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/container-utils": "2.0.0-dev.5.3.2.178189",
"@fluidframework/core-interfaces": "2.0.0-dev.5.3.2.178189",
"@fluidframework/core-utils": "2.0.0-dev.5.3.2.178189",
"@fluidframework/datastore-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/driver-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/driver-utils": "2.0.0-dev.5.3.2.178189",
"@fluidframework/protocol-base": "^0.1039.1000",
"@fluidframework/protocol-definitions": "^1.1.0",
"@fluidframework/runtime-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/runtime-utils": "2.0.0-dev.5.3.2.178189",
"@fluidframework/telemetry-utils": "2.0.0-dev.5.3.2.178189",
"lodash": "^4.17.21",
"uuid": "^8.3.1"
}
},
"node_modules/@fluidframework/datastore-definitions": {
"version": "2.0.0-dev.5.3.2.178189",
"resolved": "https://registry.npmjs.org/@fluidframework/datastore-definitions/-/datastore-definitions-2.0.0-dev.5.3.2.178189.tgz",
"integrity": "sha512-WJAY2yXwHXlN3QjQ0zgqy3DmsbQXPbY1Nol40PKAw1mnIuMieSzU4GQ2agEv4lRbfJLzzQilzy7xR2q1BLicBg==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^1.1.1",
"@fluidframework/container-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/core-interfaces": "2.0.0-dev.5.3.2.178189",
"@fluidframework/protocol-definitions": "^1.1.0",
"@fluidframework/runtime-definitions": "2.0.0-dev.5.3.2.178189"
}
},
"node_modules/@fluidframework/driver-base": {
"version": "2.0.0-dev.5.3.2.178189",
"resolved": "https://registry.npmjs.org/@fluidframework/driver-base/-/driver-base-2.0.0-dev.5.3.2.178189.tgz",
"integrity": "sha512-vLqI9nKShZi/oG4yST7+o3//2O5onN6+2iju4PoWJQZtQ0uKK9M2QWh5lnot+wNW4o0/MxmgAjUEBlEAeOZzxw==",
"dependencies": {
"@fluidframework/common-utils": "^1.1.1",
"@fluidframework/core-interfaces": "2.0.0-dev.5.3.2.178189",
"@fluidframework/driver-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/driver-utils": "2.0.0-dev.5.3.2.178189",
"@fluidframework/protocol-definitions": "^1.1.0",
"@fluidframework/telemetry-utils": "2.0.0-dev.5.3.2.178189"
}
},
"node_modules/@fluidframework/driver-definitions": {
"version": "2.0.0-dev.5.3.2.178189",
"resolved": "https://registry.npmjs.org/@fluidframework/driver-definitions/-/driver-definitions-2.0.0-dev.5.3.2.178189.tgz",
"integrity": "sha512-MyRi+bNuc7lP81FYFdAqGiTvfr+YqUy93U3ZWNePGozhGPB7hc7qwmtH+tTPS4wLKO/KfvFcQJiV7wzchFrGKw==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/core-interfaces": "2.0.0-dev.5.3.2.178189",
"@fluidframework/protocol-definitions": "^1.1.0"
}
},
"node_modules/@fluidframework/driver-utils": {
"version": "2.0.0-dev.5.3.2.178189",
"resolved": "https://registry.npmjs.org/@fluidframework/driver-utils/-/driver-utils-2.0.0-dev.5.3.2.178189.tgz",
"integrity": "sha512-yKdsp5IF7nKGvI5rfeMsizqn6dazB7leKUFhAfcGcexU5O8H4vqJYS+mzLTXKaJOkKV2XxrSnAv8nLumJ88x8w==",
"dependencies": {
"@fluidframework/common-utils": "^1.1.1",
"@fluidframework/core-interfaces": "2.0.0-dev.5.3.2.178189",
"@fluidframework/driver-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/gitresources": "^0.1039.1000",
"@fluidframework/protocol-base": "^0.1039.1000",
"@fluidframework/protocol-definitions": "^1.1.0",
"@fluidframework/telemetry-utils": "2.0.0-dev.5.3.2.178189",
"axios": "^0.26.0",
"lz4js": "^0.2.0",
"url": "^0.11.0",
"uuid": "^8.3.1"
}
},
"node_modules/@fluidframework/fluid-static": {
"version": "2.0.0-dev.5.3.2.178189",
"resolved": "https://registry.npmjs.org/@fluidframework/fluid-static/-/fluid-static-2.0.0-dev.5.3.2.178189.tgz",
"integrity": "sha512-b8mYElSM53xaO0X4VDy7uKs/ePn0e8bsQ+TYVE4CgJBlMQs+/jcN87hz1f8MakTzZLe0wOP3y4MbOv2A4GjHYw==",
"dependencies": {
"@fluidframework/aqueduct": "2.0.0-dev.5.3.2.178189",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^1.1.1",
"@fluidframework/container-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/container-loader": "2.0.0-dev.5.3.2.178189",
"@fluidframework/container-runtime-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/core-interfaces": "2.0.0-dev.5.3.2.178189",
"@fluidframework/datastore-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/protocol-definitions": "^1.1.0",
"@fluidframework/request-handler": "2.0.0-dev.5.3.2.178189",
"@fluidframework/runtime-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/runtime-utils": "2.0.0-dev.5.3.2.178189"
}
},
"node_modules/@fluidframework/gitresources": {
"version": "0.1039.1000",
"resolved": "https://registry.npmjs.org/@fluidframework/gitresources/-/gitresources-0.1039.1000.tgz",
"integrity": "sha512-O1LAJQL6/TGXZPKHLE8Z8J8KlQ5wpODP+Pj/Q7KvNYWkIUOWepXyq873MobT2adN4hlUdwia4jqif9jaNcIQBA=="
},
"node_modules/@fluidframework/map": {
"version": "2.0.0-dev.5.3.2.178189",
"resolved": "https://registry.npmjs.org/@fluidframework/map/-/map-2.0.0-dev.5.3.2.178189.tgz",
"integrity": "sha512-ROMIPc6gEzbSF5KrUvUkbA9vEE/fP2bBTC4hGh3W7yVS5+6J0QWWWfV+COl/vkxfdIXfGP6/w1ooKmZYOl/Hkw==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^1.1.1",
"@fluidframework/container-utils": "2.0.0-dev.5.3.2.178189",
"@fluidframework/core-interfaces": "2.0.0-dev.5.3.2.178189",
"@fluidframework/datastore-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/driver-utils": "2.0.0-dev.5.3.2.178189",
"@fluidframework/protocol-definitions": "^1.1.0",
"@fluidframework/runtime-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/runtime-utils": "2.0.0-dev.5.3.2.178189",
"@fluidframework/shared-object-base": "2.0.0-dev.5.3.2.178189",
"path-browserify": "^1.0.1"
}
},
"node_modules/@fluidframework/merge-tree": {
"version": "2.0.0-dev.5.3.2.178189",
"resolved": "https://registry.npmjs.org/@fluidframework/merge-tree/-/merge-tree-2.0.0-dev.5.3.2.178189.tgz",
"integrity": "sha512-Asx614BhcWF+KnokNFRkGPy5RngtXk6iUtKLuN9BV5jhVLSvmU54xGeHZ86kjqu2BChLUz9i3Ly0I1+2bA4jmw==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^1.1.1",
"@fluidframework/container-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/container-utils": "2.0.0-dev.5.3.2.178189",
"@fluidframework/core-interfaces": "2.0.0-dev.5.3.2.178189",
"@fluidframework/datastore-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/protocol-definitions": "^1.1.0",
"@fluidframework/runtime-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/runtime-utils": "2.0.0-dev.5.3.2.178189",
"@fluidframework/shared-object-base": "2.0.0-dev.5.3.2.178189",
"@fluidframework/telemetry-utils": "2.0.0-dev.5.3.2.178189"
}
},
"node_modules/@fluidframework/protocol-base": {
"version": "0.1039.1000",
"resolved": "https://registry.npmjs.org/@fluidframework/protocol-base/-/protocol-base-0.1039.1000.tgz",
"integrity": "sha512-ohQTfRUugH3oHV1TAU+6KXUmQLZTpWW0EMx6Aa2XJZrd5IGHrJuFTo2RNsfeKKRQmdswbUG1DqrA2O6eJnEtkA==",
"dependencies": {
"@fluidframework/common-utils": "^1.1.1",
"@fluidframework/gitresources": "^0.1039.1000",
"@fluidframework/protocol-definitions": "^1.1.0",
"events": "^3.1.0",
"lodash": "^4.17.21"
}
},
"node_modules/@fluidframework/protocol-definitions": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@fluidframework/protocol-definitions/-/protocol-definitions-1.2.0.tgz",
"integrity": "sha512-2/GoupA8mjHD8gcjyn4SedqJStKlQAZxga5PtDBoh+xHsuugQRhsAHJCX+8tdqbSK4ZOo9z8iq/vWKVLUi5Dzw==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1"
}
},
"node_modules/@fluidframework/request-handler": {
"version": "2.0.0-dev.5.3.2.178189",
"resolved": "https://registry.npmjs.org/@fluidframework/request-handler/-/request-handler-2.0.0-dev.5.3.2.178189.tgz",
"integrity": "sha512-qXqfHPhF7d+qmIDnZbs4QATWG0hDc2OSAP/i2SFmTN7BQg0LsjOUrbmKjX6oRypRWHlpEVWPNv4OsRrcITO2mg==",
"dependencies": {
"@fluidframework/common-utils": "^1.1.1",
"@fluidframework/container-runtime-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/core-interfaces": "2.0.0-dev.5.3.2.178189",
"@fluidframework/runtime-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/runtime-utils": "2.0.0-dev.5.3.2.178189"
}
},
"node_modules/@fluidframework/routerlicious-driver": {
"version": "2.0.0-dev.5.3.2.178189",
"resolved": "https://registry.npmjs.org/@fluidframework/routerlicious-driver/-/routerlicious-driver-2.0.0-dev.5.3.2.178189.tgz",
"integrity": "sha512-St5BDtD5DOH7fPgGDOTwLl+iKHBIlC6UMIrhcRor7aPWu/GSeUNXLVN90Y489DSQPSh4Ad46EITbjVjyRA4lhw==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^1.1.1",
"@fluidframework/core-interfaces": "2.0.0-dev.5.3.2.178189",
"@fluidframework/driver-base": "2.0.0-dev.5.3.2.178189",
"@fluidframework/driver-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/driver-utils": "2.0.0-dev.5.3.2.178189",
"@fluidframework/gitresources": "^0.1039.1000",
"@fluidframework/protocol-base": "^0.1039.1000",
"@fluidframework/protocol-definitions": "^1.1.0",
"@fluidframework/server-services-client": "^0.1039.1000",
"@fluidframework/telemetry-utils": "2.0.0-dev.5.3.2.178189",
"cross-fetch": "^3.1.5",
"json-stringify-safe": "5.0.1",
"socket.io-client": "^4.6.1",
"url-parse": "^1.5.8",
"uuid": "^8.3.1"
}
},
"node_modules/@fluidframework/routerlicious-driver/node_modules/@fluidframework/server-services-client": {
"version": "0.1039.1000",
"resolved": "https://registry.npmjs.org/@fluidframework/server-services-client/-/server-services-client-0.1039.1000.tgz",
"integrity": "sha512-wyDH6VdcV5px+sCSAQ/5No/w+T0Mg6M7XZ5bTl/IBN/v05yxFZME3vUCt/zkviZSMYj2MoCkYT3YvD4BHAdrkw==",
"dependencies": {
"@fluidframework/common-utils": "^1.1.1",
"@fluidframework/gitresources": "^0.1039.1000",
"@fluidframework/protocol-base": "^0.1039.1000",
"@fluidframework/protocol-definitions": "^1.1.0",
"axios": "^0.26.0",
"crc-32": "1.2.0",
"debug": "^4.1.1",
"json-stringify-safe": "^5.0.1",
"jsrsasign": "^10.5.25",
"jwt-decode": "^3.0.0",
"querystring": "^0.2.0",
"sillyname": "^0.1.0",
"uuid": "^8.3.1"
}
},
"node_modules/@fluidframework/runtime-definitions": {
"version": "2.0.0-dev.5.3.2.178189",
"resolved": "https://registry.npmjs.org/@fluidframework/runtime-definitions/-/runtime-definitions-2.0.0-dev.5.3.2.178189.tgz",
"integrity": "sha512-VUXfmvxhoKlUdUr26UXgirDr+g8z37JUPp/HCWrgRDh2ATRW4j9DYURP26tJ/bCMTr/lbDIfWM/Q04HXnlBaJg==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^1.1.1",
"@fluidframework/container-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/core-interfaces": "2.0.0-dev.5.3.2.178189",
"@fluidframework/driver-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/protocol-definitions": "^1.1.0"
}
},
"node_modules/@fluidframework/runtime-utils": {
"version": "2.0.0-dev.5.3.2.178189",
"resolved": "https://registry.npmjs.org/@fluidframework/runtime-utils/-/runtime-utils-2.0.0-dev.5.3.2.178189.tgz",
"integrity": "sha512-2r/rKFcgbrCGhSFLHvOaeJNYOzikAO89U/jPkFx79eA+NtZ5l17c7Y4i9c12es7al+quo4o4q4RCQizvQ4hiqg==",
"dependencies": {
"@fluidframework/common-utils": "^1.1.1",
"@fluidframework/container-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/container-runtime-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/core-interfaces": "2.0.0-dev.5.3.2.178189",
"@fluidframework/datastore-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/driver-utils": "2.0.0-dev.5.3.2.178189",
"@fluidframework/protocol-definitions": "^1.1.0",
"@fluidframework/runtime-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/telemetry-utils": "2.0.0-dev.5.3.2.178189"
}
},
"node_modules/@fluidframework/sequence": {
"version": "2.0.0-dev.5.3.2.178189",
"resolved": "https://registry.npmjs.org/@fluidframework/sequence/-/sequence-2.0.0-dev.5.3.2.178189.tgz",
"integrity": "sha512-vQwqjvjuGMksgKe1vMmriLLG4Dqt1zQs/1fVzQ8v/PS3oyOxygCL39OBMv32ueYrN2KuSMzcSy+B7MOyND+lWw==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^1.1.1",
"@fluidframework/container-utils": "2.0.0-dev.5.3.2.178189",
"@fluidframework/core-interfaces": "2.0.0-dev.5.3.2.178189",
"@fluidframework/datastore-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/merge-tree": "2.0.0-dev.5.3.2.178189",
"@fluidframework/protocol-definitions": "^1.1.0",
"@fluidframework/runtime-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/runtime-utils": "2.0.0-dev.5.3.2.178189",
"@fluidframework/shared-object-base": "2.0.0-dev.5.3.2.178189",
"@fluidframework/telemetry-utils": "2.0.0-dev.5.3.2.178189",
"uuid": "^8.3.1"
}
},
"node_modules/@fluidframework/server-services-client": {
"version": "0.1038.4001",
"resolved": "https://registry.npmjs.org/@fluidframework/server-services-client/-/server-services-client-0.1038.4001.tgz",
"integrity": "sha512-V9ma67bvIS0G6fYGgHqcxazEZnKBajTjz13WaygUn4nhcfxAbQwl6bfyNFyD3JV910PVTFEdP2sNKjmvURfWoA==",
"dependencies": {
"@fluidframework/common-utils": "^1.1.1",
"@fluidframework/gitresources": "^0.1038.4001",
"@fluidframework/protocol-base": "^0.1038.4001",
"@fluidframework/protocol-definitions": "^1.1.0",
"axios": "^0.26.0",
"crc-32": "1.2.0",
"debug": "^4.1.1",
"json-stringify-safe": "^5.0.1",
"jsrsasign": "^10.5.25",
"jwt-decode": "^3.0.0",
"querystring": "^0.2.0",
"sillyname": "^0.1.0",
"uuid": "^8.3.1"
}
},
"node_modules/@fluidframework/server-services-client/node_modules/@fluidframework/gitresources": {
"version": "0.1038.4001",
"resolved": "https://registry.npmjs.org/@fluidframework/gitresources/-/gitresources-0.1038.4001.tgz",
"integrity": "sha512-6AWxkiTpXy4JbDKAAOyG0CzLb0h+N2+Z05U/ap9UzuFuoLPMGM4XRewQhfrhXQx/cbEi0gXC6yWY2SIOrp94hQ=="
},
"node_modules/@fluidframework/server-services-client/node_modules/@fluidframework/protocol-base": {
"version": "0.1038.4001",
"resolved": "https://registry.npmjs.org/@fluidframework/protocol-base/-/protocol-base-0.1038.4001.tgz",
"integrity": "sha512-tTY95a8iYqt+wXxbKeDuHUxSJBWGmLmXEQNS2rnw98Oo8qAX95nucTRG6pK+qCXE48MUbPoKK3gEOkWo3Eu4Tg==",
"dependencies": {
"@fluidframework/common-utils": "^1.1.1",
"@fluidframework/gitresources": "^0.1038.4001",
"@fluidframework/protocol-definitions": "^1.1.0",
"events": "^3.1.0",
"lodash": "^4.17.21"
}
},
"node_modules/@fluidframework/shared-object-base": {
"version": "2.0.0-dev.5.3.2.178189",
"resolved": "https://registry.npmjs.org/@fluidframework/shared-object-base/-/shared-object-base-2.0.0-dev.5.3.2.178189.tgz",
"integrity": "sha512-KoyeZDsKmDt8FH6tegw0GC6rpyk8YmMZ0JFqOxSl9B80Ee7Dx5ZTB9tlCxphPJItn8zeX6a/imgyqlU16S60rQ==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^1.1.1",
"@fluidframework/container-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/container-runtime": "2.0.0-dev.5.3.2.178189",
"@fluidframework/container-utils": "2.0.0-dev.5.3.2.178189",
"@fluidframework/core-interfaces": "2.0.0-dev.5.3.2.178189",
"@fluidframework/datastore": "2.0.0-dev.5.3.2.178189",
"@fluidframework/datastore-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/protocol-definitions": "^1.1.0",
"@fluidframework/runtime-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/runtime-utils": "2.0.0-dev.5.3.2.178189",
"@fluidframework/telemetry-utils": "2.0.0-dev.5.3.2.178189",
"uuid": "^8.3.1"
}
},
"node_modules/@fluidframework/synthesize": {
"version": "2.0.0-dev.5.3.2.178189",
"resolved": "https://registry.npmjs.org/@fluidframework/synthesize/-/synthesize-2.0.0-dev.5.3.2.178189.tgz",
"integrity": "sha512-oxV6jGaxaGqkwQPStdDM75Jk/+Sgyn0eRT5gdWYAmK7bgwZ0j6BEZ+mWbyGDHZ37TwZQP1+ycXreQdpWaf5OdQ==",
"dependencies": {
"@fluidframework/common-utils": "^1.1.1",
"@fluidframework/core-utils": "2.0.0-dev.5.3.2.178189"
}
},
"node_modules/@fluidframework/telemetry-utils": {
"version": "2.0.0-dev.5.3.2.178189",
"resolved": "https://registry.npmjs.org/@fluidframework/telemetry-utils/-/telemetry-utils-2.0.0-dev.5.3.2.178189.tgz",
"integrity": "sha512-FnZBVVgfD7qw7DmR67449H1PzwC4hsLn1i80r9sN/ZECioeZ8QxVijwAslMJKuEiTLshZWRl5jhtNA3QtTkUwg==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^1.1.1",
"@fluidframework/core-interfaces": "2.0.0-dev.5.3.2.178189",
"@fluidframework/core-utils": "2.0.0-dev.5.3.2.178189",
"debug": "^4.1.1",
"events": "^3.1.0",
"uuid": "^8.3.1"
}
},
"node_modules/@fluidframework/test-client-utils": {
"version": "2.0.0-dev.5.3.2.178189",
"resolved": "https://registry.npmjs.org/@fluidframework/test-client-utils/-/test-client-utils-2.0.0-dev.5.3.2.178189.tgz",
"integrity": "sha512-8AxRYQAXW6oPQqbKtidBLsk2Q5QvoJw0Jr60c2oPGZ/qIOnI0peXJNcDMERVG5+bKSyhgl7AdXddp8K1NYEqUg==",
"dependencies": {
"@fluidframework/protocol-definitions": "^1.1.0",
"@fluidframework/test-runtime-utils": "2.0.0-dev.5.3.2.178189",
"sillyname": "^0.1.0",
"uuid": "^8.3.1"
}
},
"node_modules/@fluidframework/test-runtime-utils": {
"version": "2.0.0-dev.5.3.2.178189",
"resolved": "https://registry.npmjs.org/@fluidframework/test-runtime-utils/-/test-runtime-utils-2.0.0-dev.5.3.2.178189.tgz",
"integrity": "sha512-5SRJsJk2CBLH2kTc3CztaFuAH2d/s5L2rezfIr5xulq07+4LqPc+DNdMwSGuS6sRtkjbCGRtX6cAjCVJD3ohmg==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^1.1.1",
"@fluidframework/container-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/core-interfaces": "2.0.0-dev.5.3.2.178189",
"@fluidframework/datastore-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/driver-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/driver-utils": "2.0.0-dev.5.3.2.178189",
"@fluidframework/protocol-definitions": "^1.1.0",
"@fluidframework/routerlicious-driver": "2.0.0-dev.5.3.2.178189",
"@fluidframework/runtime-definitions": "2.0.0-dev.5.3.2.178189",
"@fluidframework/runtime-utils": "2.0.0-dev.5.3.2.178189",
"@fluidframework/telemetry-utils": "2.0.0-dev.5.3.2.178189",
"axios": "^0.26.0",
"events": "^3.1.0",
"jsrsasign": "^10.5.25",
"uuid": "^8.3.1"
}
},
"node_modules/@fluidframework/view-interfaces": {
"version": "2.0.0-dev.5.3.2.178189",
"resolved": "https://registry.npmjs.org/@fluidframework/view-interfaces/-/view-interfaces-2.0.0-dev.5.3.2.178189.tgz",
"integrity": "sha512-T9pdbIi7t4iwpPppGL2OzDLTVXH6kd0Jom8eOuZq/1Hmyh604D2gfX3CBly1rH6T9JoehAZOvmY0Z8tu5uB/ZA==",
"dependencies": {
"@fluidframework/core-interfaces": "2.0.0-dev.5.3.2.178189"