-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage-lock.json
3710 lines (3710 loc) · 145 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-matrix-parallel-test",
"version": "1.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "shared-matrix-parallel-test",
"version": "1.0.0",
"dependencies": {
"@fluidframework/azure-client": "^1.1.1",
"@fluidframework/matrix": "^1.3.7",
"@fluidframework/test-client-utils": "^1.3.7"
},
"devDependencies": {
"@types/node": "^18.15.5",
"esbuild": "^0.17.12",
"npm-run-all": "^4.1.5",
"start-server-and-test": "2.0.1",
"typescript": "^4.6.3"
}
},
"node_modules/@esbuild/android-arm": {
"version": "0.17.19",
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.17.19.tgz",
"integrity": "sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==",
"cpu": [
"arm"
],
"dev": true,
"optional": true,
"os": [
"android"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/android-arm64": {
"version": "0.17.19",
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.17.19.tgz",
"integrity": "sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==",
"cpu": [
"arm64"
],
"dev": true,
"optional": true,
"os": [
"android"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/android-x64": {
"version": "0.17.19",
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.17.19.tgz",
"integrity": "sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==",
"cpu": [
"x64"
],
"dev": true,
"optional": true,
"os": [
"android"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/darwin-arm64": {
"version": "0.17.19",
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.17.19.tgz",
"integrity": "sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==",
"cpu": [
"arm64"
],
"dev": true,
"optional": true,
"os": [
"darwin"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/darwin-x64": {
"version": "0.17.19",
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.17.19.tgz",
"integrity": "sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==",
"cpu": [
"x64"
],
"dev": true,
"optional": true,
"os": [
"darwin"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/freebsd-arm64": {
"version": "0.17.19",
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.19.tgz",
"integrity": "sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==",
"cpu": [
"arm64"
],
"dev": true,
"optional": true,
"os": [
"freebsd"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/freebsd-x64": {
"version": "0.17.19",
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.17.19.tgz",
"integrity": "sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==",
"cpu": [
"x64"
],
"dev": true,
"optional": true,
"os": [
"freebsd"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/linux-arm": {
"version": "0.17.19",
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.17.19.tgz",
"integrity": "sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==",
"cpu": [
"arm"
],
"dev": true,
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/linux-arm64": {
"version": "0.17.19",
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.17.19.tgz",
"integrity": "sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==",
"cpu": [
"arm64"
],
"dev": true,
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/linux-ia32": {
"version": "0.17.19",
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.17.19.tgz",
"integrity": "sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==",
"cpu": [
"ia32"
],
"dev": true,
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/linux-loong64": {
"version": "0.17.19",
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.17.19.tgz",
"integrity": "sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==",
"cpu": [
"loong64"
],
"dev": true,
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/linux-mips64el": {
"version": "0.17.19",
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.17.19.tgz",
"integrity": "sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==",
"cpu": [
"mips64el"
],
"dev": true,
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/linux-ppc64": {
"version": "0.17.19",
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.17.19.tgz",
"integrity": "sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==",
"cpu": [
"ppc64"
],
"dev": true,
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/linux-riscv64": {
"version": "0.17.19",
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.17.19.tgz",
"integrity": "sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==",
"cpu": [
"riscv64"
],
"dev": true,
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/linux-s390x": {
"version": "0.17.19",
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.17.19.tgz",
"integrity": "sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==",
"cpu": [
"s390x"
],
"dev": true,
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/linux-x64": {
"version": "0.17.19",
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.17.19.tgz",
"integrity": "sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==",
"cpu": [
"x64"
],
"dev": true,
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/netbsd-x64": {
"version": "0.17.19",
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.17.19.tgz",
"integrity": "sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==",
"cpu": [
"x64"
],
"dev": true,
"optional": true,
"os": [
"netbsd"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/openbsd-x64": {
"version": "0.17.19",
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.17.19.tgz",
"integrity": "sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==",
"cpu": [
"x64"
],
"dev": true,
"optional": true,
"os": [
"openbsd"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/sunos-x64": {
"version": "0.17.19",
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.17.19.tgz",
"integrity": "sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==",
"cpu": [
"x64"
],
"dev": true,
"optional": true,
"os": [
"sunos"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/win32-arm64": {
"version": "0.17.19",
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.17.19.tgz",
"integrity": "sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==",
"cpu": [
"arm64"
],
"dev": true,
"optional": true,
"os": [
"win32"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/win32-ia32": {
"version": "0.17.19",
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.17.19.tgz",
"integrity": "sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==",
"cpu": [
"ia32"
],
"dev": true,
"optional": true,
"os": [
"win32"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/win32-x64": {
"version": "0.17.19",
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.17.19.tgz",
"integrity": "sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==",
"cpu": [
"x64"
],
"dev": true,
"optional": true,
"os": [
"win32"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@fluidframework/aqueduct": {
"version": "1.3.7",
"resolved": "https://registry.npmjs.org/@fluidframework/aqueduct/-/aqueduct-1.3.7.tgz",
"integrity": "sha512-eXWGpzXnATNUIta5xJauwW8QDqw7sCjaVsF2yk5me3aeRZ9vi5a6bWeHuheADMARyYPrTWoDVINFR0H3EXFnjg==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^0.32.2",
"@fluidframework/container-definitions": "^1.3.7",
"@fluidframework/container-loader": "^1.3.7",
"@fluidframework/container-runtime": "^1.3.7",
"@fluidframework/container-runtime-definitions": "^1.3.7",
"@fluidframework/core-interfaces": "^1.3.7",
"@fluidframework/datastore": "^1.3.7",
"@fluidframework/datastore-definitions": "^1.3.7",
"@fluidframework/map": "^1.3.7",
"@fluidframework/request-handler": "^1.3.7",
"@fluidframework/runtime-definitions": "^1.3.7",
"@fluidframework/runtime-utils": "^1.3.7",
"@fluidframework/synthesize": "^1.3.7",
"@fluidframework/view-interfaces": "^1.3.7",
"uuid": "^8.3.1"
}
},
"node_modules/@fluidframework/aqueduct/node_modules/@fluidframework/common-utils": {
"version": "0.32.2",
"resolved": "https://registry.npmjs.org/@fluidframework/common-utils/-/common-utils-0.32.2.tgz",
"integrity": "sha512-PoGX7/l0vWKt5JaAxcgFOdGje30Q6qSE06YzFIKh9Ba3oq7B60+TFqu7c2ErQt6sNddmvcAcAiLVNaTGAip3vw==",
"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/azure-client": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@fluidframework/azure-client/-/azure-client-1.1.1.tgz",
"integrity": "sha512-2raaGv2nWxdMbcrw9kuDhHd8coqqVloIoM7X19NmcCVP7FLkT7n8Fj2O/7gg8ccqsaMSXNWCRhbtMpca/lcD8g==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^1.0.0",
"@fluidframework/container-definitions": "^1.3.3",
"@fluidframework/container-loader": "^1.3.3",
"@fluidframework/core-interfaces": "^1.3.3",
"@fluidframework/driver-definitions": "^1.3.3",
"@fluidframework/driver-utils": "^1.3.3",
"@fluidframework/fluid-static": "^1.3.3",
"@fluidframework/map": "^1.3.3",
"@fluidframework/protocol-definitions": "^1.0.0",
"@fluidframework/routerlicious-driver": "^1.3.3",
"@fluidframework/runtime-utils": "^1.3.3",
"@fluidframework/server-services-client": "^0.1036.5001",
"axios": "^0.21.2",
"uuid": "^8.3.1"
},
"peerDependencies": {
"fluid-framework": "^1.3.3"
}
},
"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": "1.3.7",
"resolved": "https://registry.npmjs.org/@fluidframework/container-definitions/-/container-definitions-1.3.7.tgz",
"integrity": "sha512-ESO6uI6n6Xy6gk4Yee9BoVh0JjgnG7SIh79JFKIgGLOk9mQ2j3A8glHPtWTwMxgtvfr+NCHdcE6yleWGWnBU7g==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/core-interfaces": "^1.3.7",
"@fluidframework/driver-definitions": "^1.3.7",
"@fluidframework/protocol-definitions": "^0.1028.2000",
"events": "^3.1.0"
}
},
"node_modules/@fluidframework/container-definitions/node_modules/@fluidframework/protocol-definitions": {
"version": "0.1028.2000",
"resolved": "https://registry.npmjs.org/@fluidframework/protocol-definitions/-/protocol-definitions-0.1028.2000.tgz",
"integrity": "sha512-ZUPCmPFcK7UAK4RkfVWfzQPAWFvYNm6ywP51V42YC38gCGye+Epvyr3beA+FSaHPIZGxm5+Uw52+ykTvmDb2UA==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1"
}
},
"node_modules/@fluidframework/container-loader": {
"version": "1.3.7",
"resolved": "https://registry.npmjs.org/@fluidframework/container-loader/-/container-loader-1.3.7.tgz",
"integrity": "sha512-BDAW9cCD4VOV8vAHjv7/n6Bl9TOumkvBcvBJQfg9tXBnBDCxwgjvB5Azpg/rKlxZn9LXLArbTUd1oeT5i1B01g==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^0.32.2",
"@fluidframework/container-definitions": "^1.3.7",
"@fluidframework/container-utils": "^1.3.7",
"@fluidframework/core-interfaces": "^1.3.7",
"@fluidframework/driver-definitions": "^1.3.7",
"@fluidframework/driver-utils": "^1.3.7",
"@fluidframework/protocol-base": "^0.1036.5001",
"@fluidframework/protocol-definitions": "^0.1028.2000",
"@fluidframework/telemetry-utils": "^1.3.7",
"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-loader/node_modules/@fluidframework/common-utils": {
"version": "0.32.2",
"resolved": "https://registry.npmjs.org/@fluidframework/common-utils/-/common-utils-0.32.2.tgz",
"integrity": "sha512-PoGX7/l0vWKt5JaAxcgFOdGje30Q6qSE06YzFIKh9Ba3oq7B60+TFqu7c2ErQt6sNddmvcAcAiLVNaTGAip3vw==",
"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-loader/node_modules/@fluidframework/protocol-definitions": {
"version": "0.1028.2000",
"resolved": "https://registry.npmjs.org/@fluidframework/protocol-definitions/-/protocol-definitions-0.1028.2000.tgz",
"integrity": "sha512-ZUPCmPFcK7UAK4RkfVWfzQPAWFvYNm6ywP51V42YC38gCGye+Epvyr3beA+FSaHPIZGxm5+Uw52+ykTvmDb2UA==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1"
}
},
"node_modules/@fluidframework/container-runtime": {
"version": "1.3.7",
"resolved": "https://registry.npmjs.org/@fluidframework/container-runtime/-/container-runtime-1.3.7.tgz",
"integrity": "sha512-dqzcvJlcSWfIS8iTWiqFk3uk+LInZK+gOcNUS2QWR+nOwzI70lQV+UqCb1lxErG1zRcQotga1yn+KSzccZlRxg==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^0.32.2",
"@fluidframework/container-definitions": "^1.3.7",
"@fluidframework/container-runtime-definitions": "^1.3.7",
"@fluidframework/container-utils": "^1.3.7",
"@fluidframework/core-interfaces": "^1.3.7",
"@fluidframework/datastore": "^1.3.7",
"@fluidframework/driver-definitions": "^1.3.7",
"@fluidframework/driver-utils": "^1.3.7",
"@fluidframework/garbage-collector": "^1.3.7",
"@fluidframework/protocol-base": "^0.1036.5001",
"@fluidframework/protocol-definitions": "^0.1028.2000",
"@fluidframework/runtime-definitions": "^1.3.7",
"@fluidframework/runtime-utils": "^1.3.7",
"@fluidframework/telemetry-utils": "^1.3.7",
"double-ended-queue": "^2.1.0-0",
"events": "^3.1.0",
"uuid": "^8.3.1"
}
},
"node_modules/@fluidframework/container-runtime-definitions": {
"version": "1.3.7",
"resolved": "https://registry.npmjs.org/@fluidframework/container-runtime-definitions/-/container-runtime-definitions-1.3.7.tgz",
"integrity": "sha512-86RzJm/2/j0es+4oKiJTSsC2/zkp2KGFR/2ALccl58Hru+zttnRMn31DIcc2c7YDNHB6IuaZ7V2UKh26AAnkAg==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/container-definitions": "^1.3.7",
"@fluidframework/core-interfaces": "^1.3.7",
"@fluidframework/driver-definitions": "^1.3.7",
"@fluidframework/protocol-definitions": "^0.1028.2000",
"@fluidframework/runtime-definitions": "^1.3.7"
}
},
"node_modules/@fluidframework/container-runtime-definitions/node_modules/@fluidframework/protocol-definitions": {
"version": "0.1028.2000",
"resolved": "https://registry.npmjs.org/@fluidframework/protocol-definitions/-/protocol-definitions-0.1028.2000.tgz",
"integrity": "sha512-ZUPCmPFcK7UAK4RkfVWfzQPAWFvYNm6ywP51V42YC38gCGye+Epvyr3beA+FSaHPIZGxm5+Uw52+ykTvmDb2UA==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1"
}
},
"node_modules/@fluidframework/container-runtime/node_modules/@fluidframework/common-utils": {
"version": "0.32.2",
"resolved": "https://registry.npmjs.org/@fluidframework/common-utils/-/common-utils-0.32.2.tgz",
"integrity": "sha512-PoGX7/l0vWKt5JaAxcgFOdGje30Q6qSE06YzFIKh9Ba3oq7B60+TFqu7c2ErQt6sNddmvcAcAiLVNaTGAip3vw==",
"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-runtime/node_modules/@fluidframework/protocol-definitions": {
"version": "0.1028.2000",
"resolved": "https://registry.npmjs.org/@fluidframework/protocol-definitions/-/protocol-definitions-0.1028.2000.tgz",
"integrity": "sha512-ZUPCmPFcK7UAK4RkfVWfzQPAWFvYNm6ywP51V42YC38gCGye+Epvyr3beA+FSaHPIZGxm5+Uw52+ykTvmDb2UA==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1"
}
},
"node_modules/@fluidframework/container-utils": {
"version": "1.3.7",
"resolved": "https://registry.npmjs.org/@fluidframework/container-utils/-/container-utils-1.3.7.tgz",
"integrity": "sha512-XFt6iSD6RzJ+1dafwwzFgWA9U0yEvda0328zAGNT//c5H6cNSipxDuos7CJrDJWy2goQkBuyTYxpiSzsi7dNWg==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^0.32.2",
"@fluidframework/container-definitions": "^1.3.7",
"@fluidframework/protocol-definitions": "^0.1028.2000",
"@fluidframework/telemetry-utils": "^1.3.7"
}
},
"node_modules/@fluidframework/container-utils/node_modules/@fluidframework/common-utils": {
"version": "0.32.2",
"resolved": "https://registry.npmjs.org/@fluidframework/common-utils/-/common-utils-0.32.2.tgz",
"integrity": "sha512-PoGX7/l0vWKt5JaAxcgFOdGje30Q6qSE06YzFIKh9Ba3oq7B60+TFqu7c2ErQt6sNddmvcAcAiLVNaTGAip3vw==",
"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-utils/node_modules/@fluidframework/protocol-definitions": {
"version": "0.1028.2000",
"resolved": "https://registry.npmjs.org/@fluidframework/protocol-definitions/-/protocol-definitions-0.1028.2000.tgz",
"integrity": "sha512-ZUPCmPFcK7UAK4RkfVWfzQPAWFvYNm6ywP51V42YC38gCGye+Epvyr3beA+FSaHPIZGxm5+Uw52+ykTvmDb2UA==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1"
}
},
"node_modules/@fluidframework/core-interfaces": {
"version": "1.3.7",
"resolved": "https://registry.npmjs.org/@fluidframework/core-interfaces/-/core-interfaces-1.3.7.tgz",
"integrity": "sha512-Rzsb1xK4h5imIddai+BW+XNWnpM1FEZR9UBWSKb+vMr0PCVBJwe4BTi6vxA7+o8OgdzVMOmOZhqnivKNUrGYKw=="
},
"node_modules/@fluidframework/datastore": {
"version": "1.3.7",
"resolved": "https://registry.npmjs.org/@fluidframework/datastore/-/datastore-1.3.7.tgz",
"integrity": "sha512-RaGLO3VUCIQhbh5D6h2PLnZ79Fw2aUbZSCltiQdKBWbBp4FzUgP+qqrtzSTd62waIzCod50aODUBNoYP+MqqoA==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^0.32.2",
"@fluidframework/container-definitions": "^1.3.7",
"@fluidframework/container-utils": "^1.3.7",
"@fluidframework/core-interfaces": "^1.3.7",
"@fluidframework/datastore-definitions": "^1.3.7",
"@fluidframework/driver-definitions": "^1.3.7",
"@fluidframework/driver-utils": "^1.3.7",
"@fluidframework/garbage-collector": "^1.3.7",
"@fluidframework/protocol-base": "^0.1036.5001",
"@fluidframework/protocol-definitions": "^0.1028.2000",
"@fluidframework/runtime-definitions": "^1.3.7",
"@fluidframework/runtime-utils": "^1.3.7",
"@fluidframework/telemetry-utils": "^1.3.7",
"lodash": "^4.17.21",
"uuid": "^8.3.1"
}
},
"node_modules/@fluidframework/datastore-definitions": {
"version": "1.3.7",
"resolved": "https://registry.npmjs.org/@fluidframework/datastore-definitions/-/datastore-definitions-1.3.7.tgz",
"integrity": "sha512-ucco5cnYvJEVBtzdeB2vYrdnDswjYAyX2H/OnL4+3gffUcJWCIuXQuON+AHv3uw/ESrOP0CUhuYv6ulT1SajNQ==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^0.32.2",
"@fluidframework/container-definitions": "^1.3.7",
"@fluidframework/core-interfaces": "^1.3.7",
"@fluidframework/protocol-definitions": "^0.1028.2000",
"@fluidframework/runtime-definitions": "^1.3.7"
}
},
"node_modules/@fluidframework/datastore-definitions/node_modules/@fluidframework/common-utils": {
"version": "0.32.2",
"resolved": "https://registry.npmjs.org/@fluidframework/common-utils/-/common-utils-0.32.2.tgz",
"integrity": "sha512-PoGX7/l0vWKt5JaAxcgFOdGje30Q6qSE06YzFIKh9Ba3oq7B60+TFqu7c2ErQt6sNddmvcAcAiLVNaTGAip3vw==",
"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/datastore-definitions/node_modules/@fluidframework/protocol-definitions": {
"version": "0.1028.2000",
"resolved": "https://registry.npmjs.org/@fluidframework/protocol-definitions/-/protocol-definitions-0.1028.2000.tgz",
"integrity": "sha512-ZUPCmPFcK7UAK4RkfVWfzQPAWFvYNm6ywP51V42YC38gCGye+Epvyr3beA+FSaHPIZGxm5+Uw52+ykTvmDb2UA==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1"
}
},
"node_modules/@fluidframework/datastore/node_modules/@fluidframework/common-utils": {
"version": "0.32.2",
"resolved": "https://registry.npmjs.org/@fluidframework/common-utils/-/common-utils-0.32.2.tgz",
"integrity": "sha512-PoGX7/l0vWKt5JaAxcgFOdGje30Q6qSE06YzFIKh9Ba3oq7B60+TFqu7c2ErQt6sNddmvcAcAiLVNaTGAip3vw==",
"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/datastore/node_modules/@fluidframework/protocol-definitions": {
"version": "0.1028.2000",
"resolved": "https://registry.npmjs.org/@fluidframework/protocol-definitions/-/protocol-definitions-0.1028.2000.tgz",
"integrity": "sha512-ZUPCmPFcK7UAK4RkfVWfzQPAWFvYNm6ywP51V42YC38gCGye+Epvyr3beA+FSaHPIZGxm5+Uw52+ykTvmDb2UA==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1"
}
},
"node_modules/@fluidframework/driver-base": {
"version": "1.3.7",
"resolved": "https://registry.npmjs.org/@fluidframework/driver-base/-/driver-base-1.3.7.tgz",
"integrity": "sha512-egZTjkAAQXATbIj5K5Ou7mNfthIKpQzogjrU+l//lHVsXyKJhShsowl4mTLs9VvYfNE5NLove7fdSEoh1coyLA==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^0.32.2",
"@fluidframework/driver-definitions": "^1.3.7",
"@fluidframework/driver-utils": "^1.3.7",
"@fluidframework/protocol-definitions": "^0.1028.2000",
"@fluidframework/telemetry-utils": "^1.3.7"
}
},
"node_modules/@fluidframework/driver-base/node_modules/@fluidframework/common-utils": {
"version": "0.32.2",
"resolved": "https://registry.npmjs.org/@fluidframework/common-utils/-/common-utils-0.32.2.tgz",
"integrity": "sha512-PoGX7/l0vWKt5JaAxcgFOdGje30Q6qSE06YzFIKh9Ba3oq7B60+TFqu7c2ErQt6sNddmvcAcAiLVNaTGAip3vw==",
"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/driver-base/node_modules/@fluidframework/protocol-definitions": {
"version": "0.1028.2000",
"resolved": "https://registry.npmjs.org/@fluidframework/protocol-definitions/-/protocol-definitions-0.1028.2000.tgz",
"integrity": "sha512-ZUPCmPFcK7UAK4RkfVWfzQPAWFvYNm6ywP51V42YC38gCGye+Epvyr3beA+FSaHPIZGxm5+Uw52+ykTvmDb2UA==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1"
}
},
"node_modules/@fluidframework/driver-definitions": {
"version": "1.3.7",
"resolved": "https://registry.npmjs.org/@fluidframework/driver-definitions/-/driver-definitions-1.3.7.tgz",
"integrity": "sha512-JZfOgfkOA9sdmMDDs1L83UtU1Zoe73E0QFXu3hlL3JUllDEmMvwzZkwJf+H82PdpHTu/gR99lPMz3GVtWoU5hQ==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/core-interfaces": "^1.3.7",
"@fluidframework/protocol-definitions": "^0.1028.2000"
}
},
"node_modules/@fluidframework/driver-definitions/node_modules/@fluidframework/protocol-definitions": {
"version": "0.1028.2000",
"resolved": "https://registry.npmjs.org/@fluidframework/protocol-definitions/-/protocol-definitions-0.1028.2000.tgz",
"integrity": "sha512-ZUPCmPFcK7UAK4RkfVWfzQPAWFvYNm6ywP51V42YC38gCGye+Epvyr3beA+FSaHPIZGxm5+Uw52+ykTvmDb2UA==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1"
}
},
"node_modules/@fluidframework/driver-utils": {
"version": "1.3.7",
"resolved": "https://registry.npmjs.org/@fluidframework/driver-utils/-/driver-utils-1.3.7.tgz",
"integrity": "sha512-N8dHnrgZJrvbC8DSY0MAbcFNhRJeoryQKYz0b7fjO3P/RE1GRQfU5phlBWlkQwJKPo5Zh+I9o2S6kQY1oz6DcQ==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^0.32.2",
"@fluidframework/core-interfaces": "^1.3.7",
"@fluidframework/driver-definitions": "^1.3.7",
"@fluidframework/gitresources": "^0.1036.5001",
"@fluidframework/protocol-base": "^0.1036.5001",
"@fluidframework/protocol-definitions": "^0.1028.2000",
"@fluidframework/telemetry-utils": "^1.3.7",
"axios": "^0.26.0",
"uuid": "^8.3.1"
}
},
"node_modules/@fluidframework/driver-utils/node_modules/@fluidframework/common-utils": {
"version": "0.32.2",
"resolved": "https://registry.npmjs.org/@fluidframework/common-utils/-/common-utils-0.32.2.tgz",
"integrity": "sha512-PoGX7/l0vWKt5JaAxcgFOdGje30Q6qSE06YzFIKh9Ba3oq7B60+TFqu7c2ErQt6sNddmvcAcAiLVNaTGAip3vw==",
"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/driver-utils/node_modules/@fluidframework/protocol-definitions": {
"version": "0.1028.2000",
"resolved": "https://registry.npmjs.org/@fluidframework/protocol-definitions/-/protocol-definitions-0.1028.2000.tgz",
"integrity": "sha512-ZUPCmPFcK7UAK4RkfVWfzQPAWFvYNm6ywP51V42YC38gCGye+Epvyr3beA+FSaHPIZGxm5+Uw52+ykTvmDb2UA==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1"
}
},
"node_modules/@fluidframework/driver-utils/node_modules/axios": {
"version": "0.26.1",
"resolved": "https://registry.npmjs.org/axios/-/axios-0.26.1.tgz",
"integrity": "sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==",
"dependencies": {
"follow-redirects": "^1.14.8"
}
},
"node_modules/@fluidframework/fluid-static": {
"version": "1.3.7",
"resolved": "https://registry.npmjs.org/@fluidframework/fluid-static/-/fluid-static-1.3.7.tgz",
"integrity": "sha512-Rnuvx/xjy6GuA2/VN2J3I2RLkVMLch1QVqlN5UWZqpSFUx3O8+NPTVC9pocTOnTJTvhO3dqgPmGpJgIigZizbQ==",
"dependencies": {
"@fluidframework/aqueduct": "^1.3.7",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^0.32.2",
"@fluidframework/container-definitions": "^1.3.7",
"@fluidframework/container-loader": "^1.3.7",
"@fluidframework/container-runtime-definitions": "^1.3.7",
"@fluidframework/core-interfaces": "^1.3.7",
"@fluidframework/datastore-definitions": "^1.3.7",
"@fluidframework/protocol-definitions": "^0.1028.2000",
"@fluidframework/request-handler": "^1.3.7",
"@fluidframework/runtime-definitions": "^1.3.7",
"@fluidframework/runtime-utils": "^1.3.7"
}
},
"node_modules/@fluidframework/fluid-static/node_modules/@fluidframework/common-utils": {
"version": "0.32.2",
"resolved": "https://registry.npmjs.org/@fluidframework/common-utils/-/common-utils-0.32.2.tgz",
"integrity": "sha512-PoGX7/l0vWKt5JaAxcgFOdGje30Q6qSE06YzFIKh9Ba3oq7B60+TFqu7c2ErQt6sNddmvcAcAiLVNaTGAip3vw==",
"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/fluid-static/node_modules/@fluidframework/protocol-definitions": {
"version": "0.1028.2000",
"resolved": "https://registry.npmjs.org/@fluidframework/protocol-definitions/-/protocol-definitions-0.1028.2000.tgz",
"integrity": "sha512-ZUPCmPFcK7UAK4RkfVWfzQPAWFvYNm6ywP51V42YC38gCGye+Epvyr3beA+FSaHPIZGxm5+Uw52+ykTvmDb2UA==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1"
}
},
"node_modules/@fluidframework/garbage-collector": {
"version": "1.3.7",
"resolved": "https://registry.npmjs.org/@fluidframework/garbage-collector/-/garbage-collector-1.3.7.tgz",
"integrity": "sha512-w9FRDXN+/vWnL3JHBteGqY4Df1VvUXJ6DVR/PWJLh1pUyVUvpDAXya9ldxhmPw1CRja+TSc1nxwMWennJVAywQ==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^0.32.2",
"@fluidframework/runtime-definitions": "^1.3.7"
}
},
"node_modules/@fluidframework/garbage-collector/node_modules/@fluidframework/common-utils": {
"version": "0.32.2",
"resolved": "https://registry.npmjs.org/@fluidframework/common-utils/-/common-utils-0.32.2.tgz",
"integrity": "sha512-PoGX7/l0vWKt5JaAxcgFOdGje30Q6qSE06YzFIKh9Ba3oq7B60+TFqu7c2ErQt6sNddmvcAcAiLVNaTGAip3vw==",
"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/gitresources": {
"version": "0.1036.5001",
"resolved": "https://registry.npmjs.org/@fluidframework/gitresources/-/gitresources-0.1036.5001.tgz",
"integrity": "sha512-Beg1A/eR7wCPYYb5u5iqqc092NkWnSvl4XCn2ImA4FDKtnYggD2/KYd9Hp0feM6Z99aU4FYSBidL2NewWlvF7A=="
},
"node_modules/@fluidframework/map": {
"version": "1.3.7",
"resolved": "https://registry.npmjs.org/@fluidframework/map/-/map-1.3.7.tgz",
"integrity": "sha512-O9YYytm3OIkl6BuC3WGQQtwJZnh50BjfkRGECvhJtMSgEvGE1U6STpk1xuOwnjcK7SsnrkNQd9hMCTZgUMe0VQ==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^0.32.2",
"@fluidframework/container-utils": "^1.3.7",
"@fluidframework/core-interfaces": "^1.3.7",
"@fluidframework/datastore-definitions": "^1.3.7",
"@fluidframework/driver-utils": "^1.3.7",
"@fluidframework/protocol-definitions": "^0.1028.2000",
"@fluidframework/runtime-definitions": "^1.3.7",
"@fluidframework/runtime-utils": "^1.3.7",
"@fluidframework/shared-object-base": "^1.3.7",
"path-browserify": "^1.0.1"
}
},
"node_modules/@fluidframework/map/node_modules/@fluidframework/common-utils": {
"version": "0.32.2",
"resolved": "https://registry.npmjs.org/@fluidframework/common-utils/-/common-utils-0.32.2.tgz",
"integrity": "sha512-PoGX7/l0vWKt5JaAxcgFOdGje30Q6qSE06YzFIKh9Ba3oq7B60+TFqu7c2ErQt6sNddmvcAcAiLVNaTGAip3vw==",
"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/map/node_modules/@fluidframework/protocol-definitions": {
"version": "0.1028.2000",
"resolved": "https://registry.npmjs.org/@fluidframework/protocol-definitions/-/protocol-definitions-0.1028.2000.tgz",
"integrity": "sha512-ZUPCmPFcK7UAK4RkfVWfzQPAWFvYNm6ywP51V42YC38gCGye+Epvyr3beA+FSaHPIZGxm5+Uw52+ykTvmDb2UA==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1"
}
},
"node_modules/@fluidframework/matrix": {
"version": "1.3.7",
"resolved": "https://registry.npmjs.org/@fluidframework/matrix/-/matrix-1.3.7.tgz",
"integrity": "sha512-52S6yvOQCwvV2gHelK8cdh2bGn3usZ09sK2Aqvlp0Yv0i0/XVadLoESy1StCxcsX+mvjozZKMPPsxiA9w2hwWg==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^0.32.2",
"@fluidframework/core-interfaces": "^1.3.7",
"@fluidframework/datastore-definitions": "^1.3.7",
"@fluidframework/merge-tree": "^1.3.7",
"@fluidframework/protocol-base": "^0.1036.5001",
"@fluidframework/protocol-definitions": "^0.1028.2000",
"@fluidframework/runtime-definitions": "^1.3.7",
"@fluidframework/runtime-utils": "^1.3.7",
"@fluidframework/shared-object-base": "^1.3.7",
"@fluidframework/telemetry-utils": "^1.3.7",
"@tiny-calc/nano": "0.0.0-alpha.5",
"events": "^3.1.0",
"tslib": "^1.10.0"
}
},
"node_modules/@fluidframework/matrix/node_modules/@fluidframework/common-utils": {
"version": "0.32.2",
"resolved": "https://registry.npmjs.org/@fluidframework/common-utils/-/common-utils-0.32.2.tgz",
"integrity": "sha512-PoGX7/l0vWKt5JaAxcgFOdGje30Q6qSE06YzFIKh9Ba3oq7B60+TFqu7c2ErQt6sNddmvcAcAiLVNaTGAip3vw==",
"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/matrix/node_modules/@fluidframework/protocol-definitions": {
"version": "0.1028.2000",
"resolved": "https://registry.npmjs.org/@fluidframework/protocol-definitions/-/protocol-definitions-0.1028.2000.tgz",
"integrity": "sha512-ZUPCmPFcK7UAK4RkfVWfzQPAWFvYNm6ywP51V42YC38gCGye+Epvyr3beA+FSaHPIZGxm5+Uw52+ykTvmDb2UA==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1"
}
},
"node_modules/@fluidframework/merge-tree": {
"version": "1.3.7",
"resolved": "https://registry.npmjs.org/@fluidframework/merge-tree/-/merge-tree-1.3.7.tgz",
"integrity": "sha512-YA9/fRrTN8LkSw2H1/CgjkfWY1hW6PreHRJbBYZVVC469vXzMGOf+A8xBWS33A4U3oDNBj4ymVb9Ijy87vTKIA==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^0.32.2",
"@fluidframework/container-definitions": "^1.3.7",
"@fluidframework/container-utils": "^1.3.7",
"@fluidframework/core-interfaces": "^1.3.7",
"@fluidframework/datastore-definitions": "^1.3.7",
"@fluidframework/protocol-definitions": "^0.1028.2000",
"@fluidframework/runtime-definitions": "^1.3.7",
"@fluidframework/runtime-utils": "^1.3.7",
"@fluidframework/shared-object-base": "^1.3.7",
"@fluidframework/telemetry-utils": "^1.3.7"
}
},
"node_modules/@fluidframework/merge-tree/node_modules/@fluidframework/common-utils": {
"version": "0.32.2",
"resolved": "https://registry.npmjs.org/@fluidframework/common-utils/-/common-utils-0.32.2.tgz",
"integrity": "sha512-PoGX7/l0vWKt5JaAxcgFOdGje30Q6qSE06YzFIKh9Ba3oq7B60+TFqu7c2ErQt6sNddmvcAcAiLVNaTGAip3vw==",
"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/merge-tree/node_modules/@fluidframework/protocol-definitions": {
"version": "0.1028.2000",
"resolved": "https://registry.npmjs.org/@fluidframework/protocol-definitions/-/protocol-definitions-0.1028.2000.tgz",
"integrity": "sha512-ZUPCmPFcK7UAK4RkfVWfzQPAWFvYNm6ywP51V42YC38gCGye+Epvyr3beA+FSaHPIZGxm5+Uw52+ykTvmDb2UA==",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1"
}
},