-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
5295 lines (5295 loc) · 194 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": "devide",
"version": "0.0.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "devide",
"version": "0.0.1",
"dependencies": {
"openai": "^4.47.1"
},
"devDependencies": {
"@microsoft/live-share": "^1.4.0",
"@microsoft/teams-js": "^2.23.0",
"@types/debug": "^4.1.12",
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.89.0",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"@vscode/test-cli": "^0.0.9",
"@vscode/test-electron": "^2.3.9",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"fluid-framework": "^1.4.0",
"typescript": "^5.4.5"
},
"engines": {
"vscode": "^1.89.0"
}
},
"node_modules/@bcoe/v8-coverage": {
"version": "0.2.3",
"resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz",
"integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==",
"dev": true,
"license": "MIT"
},
"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,
"license": "MIT",
"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.10.0",
"resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz",
"integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==",
"dev": true,
"license": "MIT",
"engines": {
"node": "^12.0.0 || ^14.0.0 || >=16.0.0"
}
},
"node_modules/@eslint/eslintrc": {
"version": "2.1.4",
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz",
"integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==",
"dev": true,
"license": "MIT",
"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/eslintrc/node_modules/brace-expansion": {
"version": "1.1.11",
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
"integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
"dev": true,
"license": "MIT",
"dependencies": {
"balanced-match": "^1.0.0",
"concat-map": "0.0.1"
}
},
"node_modules/@eslint/eslintrc/node_modules/minimatch": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
"dev": true,
"license": "ISC",
"dependencies": {
"brace-expansion": "^1.1.7"
},
"engines": {
"node": "*"
}
},
"node_modules/@eslint/js": {
"version": "8.57.0",
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz",
"integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==",
"dev": true,
"license": "MIT",
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
}
},
"node_modules/@fluidframework/aqueduct": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@fluidframework/aqueduct/-/aqueduct-1.4.0.tgz",
"integrity": "sha512-b3I3fWGAWuXQbyuEFeeEi3GVVUOYPWJfFaB4httsu5Jn4C0QSkKxftkielDlor9/7rCJYjHc4IEWViaVO+kBbA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^0.32.2",
"@fluidframework/container-definitions": "^1.4.0",
"@fluidframework/container-loader": "^1.4.0",
"@fluidframework/container-runtime": "^1.4.0",
"@fluidframework/container-runtime-definitions": "^1.4.0",
"@fluidframework/core-interfaces": "^1.4.0",
"@fluidframework/datastore": "^1.4.0",
"@fluidframework/datastore-definitions": "^1.4.0",
"@fluidframework/map": "^1.4.0",
"@fluidframework/request-handler": "^1.4.0",
"@fluidframework/runtime-definitions": "^1.4.0",
"@fluidframework/runtime-utils": "^1.4.0",
"@fluidframework/synthesize": "^1.4.0",
"@fluidframework/view-interfaces": "^1.4.0",
"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==",
"dev": true,
"license": "MIT",
"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.2.0",
"resolved": "https://registry.npmjs.org/@fluidframework/azure-client/-/azure-client-1.2.0.tgz",
"integrity": "sha512-jpfYF6I1uwwCqOc8X0fOgZz4Lj91QFzKV4S9lM7jSW84GxytlL3nDanj9+EYC+vLn4liRVaOCA3zRwpkDNXRWg==",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^1.1.1",
"@fluidframework/container-definitions": "^1.4.0",
"@fluidframework/container-loader": "^1.4.0",
"@fluidframework/core-interfaces": "^1.4.0",
"@fluidframework/driver-definitions": "^1.4.0",
"@fluidframework/driver-utils": "^1.4.0",
"@fluidframework/fluid-static": "^1.4.0",
"@fluidframework/map": "^1.4.0",
"@fluidframework/protocol-definitions": "^1.0.0",
"@fluidframework/routerlicious-driver": "^1.4.0",
"@fluidframework/runtime-utils": "^1.4.0",
"@fluidframework/server-services-client": "^0.1036.5002",
"axios": "^0.28.0",
"uuid": "^8.3.1"
},
"peerDependencies": {
"fluid-framework": "^1.4.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==",
"dev": true,
"license": "MIT"
},
"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==",
"dev": true,
"license": "MIT",
"peer": true,
"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.4.0",
"resolved": "https://registry.npmjs.org/@fluidframework/container-definitions/-/container-definitions-1.4.0.tgz",
"integrity": "sha512-UwyxdX739ltQhQ9Zr2n7mBKN2eYEVnY7GCsV60ZfLUawb021eeL0rVZZgT0t3BiTCCilBMl4Bw4KQ8XyYu2g/w==",
"dev": true,
"license": "MIT",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/core-interfaces": "^1.4.0",
"@fluidframework/driver-definitions": "^1.4.0",
"@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==",
"dev": true,
"license": "MIT",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1"
}
},
"node_modules/@fluidframework/container-loader": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@fluidframework/container-loader/-/container-loader-1.4.0.tgz",
"integrity": "sha512-D54tW/W5EXLb2nRUGCNd8bID9t9KVkQJmtnHfnQ/JggpaBWODaQRp2tCDtidwo8y6bkiqIheMGjIdjgP9SqJzw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^0.32.2",
"@fluidframework/container-definitions": "^1.4.0",
"@fluidframework/container-utils": "^1.4.0",
"@fluidframework/core-interfaces": "^1.4.0",
"@fluidframework/driver-definitions": "^1.4.0",
"@fluidframework/driver-utils": "^1.4.0",
"@fluidframework/protocol-base": "^0.1036.5002",
"@fluidframework/protocol-definitions": "^0.1028.2000",
"@fluidframework/telemetry-utils": "^1.4.0",
"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==",
"dev": true,
"license": "MIT",
"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==",
"dev": true,
"license": "MIT",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1"
}
},
"node_modules/@fluidframework/container-runtime": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@fluidframework/container-runtime/-/container-runtime-1.4.0.tgz",
"integrity": "sha512-KENgBxuPD7GdNmdjmsyVJpPKZwfXoRlzAxaMNhGdMSbi6oXDrd1LSekY5tchhsLWBpB5ucZpuvmSgbU+h9z3HQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^0.32.2",
"@fluidframework/container-definitions": "^1.4.0",
"@fluidframework/container-runtime-definitions": "^1.4.0",
"@fluidframework/container-utils": "^1.4.0",
"@fluidframework/core-interfaces": "^1.4.0",
"@fluidframework/datastore": "^1.4.0",
"@fluidframework/driver-definitions": "^1.4.0",
"@fluidframework/driver-utils": "^1.4.0",
"@fluidframework/garbage-collector": "^1.4.0",
"@fluidframework/protocol-base": "^0.1036.5002",
"@fluidframework/protocol-definitions": "^0.1028.2000",
"@fluidframework/runtime-definitions": "^1.4.0",
"@fluidframework/runtime-utils": "^1.4.0",
"@fluidframework/telemetry-utils": "^1.4.0",
"double-ended-queue": "^2.1.0-0",
"events": "^3.1.0",
"uuid": "^8.3.1"
}
},
"node_modules/@fluidframework/container-runtime-definitions": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@fluidframework/container-runtime-definitions/-/container-runtime-definitions-1.4.0.tgz",
"integrity": "sha512-0rlswYsMVQiD1/btlJ5Ebf3rfTyFd06E2/zRJiKWiaMzgmn9QqF7OoVtiJfAIUsyey+dR8hnI0IFlB1IMfIPOg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/container-definitions": "^1.4.0",
"@fluidframework/core-interfaces": "^1.4.0",
"@fluidframework/driver-definitions": "^1.4.0",
"@fluidframework/protocol-definitions": "^0.1028.2000",
"@fluidframework/runtime-definitions": "^1.4.0"
}
},
"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==",
"dev": true,
"license": "MIT",
"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==",
"dev": true,
"license": "MIT",
"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==",
"dev": true,
"license": "MIT",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1"
}
},
"node_modules/@fluidframework/container-utils": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@fluidframework/container-utils/-/container-utils-1.4.0.tgz",
"integrity": "sha512-OKYpvuzz5N62gQn8JELMyuKEwJAlToiLNWJP/dn/PS1HCKux5C/Mg7Twdi19DCgXP/hp5qvzAd+EHPqYWxMUGg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^0.32.2",
"@fluidframework/container-definitions": "^1.4.0",
"@fluidframework/protocol-definitions": "^0.1028.2000",
"@fluidframework/telemetry-utils": "^1.4.0"
}
},
"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==",
"dev": true,
"license": "MIT",
"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==",
"dev": true,
"license": "MIT",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1"
}
},
"node_modules/@fluidframework/core-interfaces": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@fluidframework/core-interfaces/-/core-interfaces-1.4.0.tgz",
"integrity": "sha512-PDIglmsa9BgFh7Xhfs32KA3Q34/arTVHF4m3M0IuAByP4z8Oi2lVuNENZnBEk+IJMcrUhUDk5Q9LH8KGfoAw+Q==",
"dev": true,
"license": "MIT"
},
"node_modules/@fluidframework/datastore": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@fluidframework/datastore/-/datastore-1.4.0.tgz",
"integrity": "sha512-xV8cfmNzGAcpbQMrtEXTe7N6h6IkybrStrguyhZB6zBFzaPw3RNeAsMTiSxEMeVkU4UFcnI/ZU2rMalzVVC3Tg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^0.32.2",
"@fluidframework/container-definitions": "^1.4.0",
"@fluidframework/container-utils": "^1.4.0",
"@fluidframework/core-interfaces": "^1.4.0",
"@fluidframework/datastore-definitions": "^1.4.0",
"@fluidframework/driver-definitions": "^1.4.0",
"@fluidframework/driver-utils": "^1.4.0",
"@fluidframework/garbage-collector": "^1.4.0",
"@fluidframework/protocol-base": "^0.1036.5002",
"@fluidframework/protocol-definitions": "^0.1028.2000",
"@fluidframework/runtime-definitions": "^1.4.0",
"@fluidframework/runtime-utils": "^1.4.0",
"@fluidframework/telemetry-utils": "^1.4.0",
"lodash": "^4.17.21",
"uuid": "^8.3.1"
}
},
"node_modules/@fluidframework/datastore-definitions": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@fluidframework/datastore-definitions/-/datastore-definitions-1.4.0.tgz",
"integrity": "sha512-Xmebp+XFyK2K8EIauQx10UdwOXYskuSyQt8pSZ6ggTMMFpUsnx44tSR8I8KacSFoYkrWzG/G64osRu23SPCcjQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^0.32.2",
"@fluidframework/container-definitions": "^1.4.0",
"@fluidframework/core-interfaces": "^1.4.0",
"@fluidframework/protocol-definitions": "^0.1028.2000",
"@fluidframework/runtime-definitions": "^1.4.0"
}
},
"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==",
"dev": true,
"license": "MIT",
"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==",
"dev": true,
"license": "MIT",
"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==",
"dev": true,
"license": "MIT",
"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==",
"dev": true,
"license": "MIT",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1"
}
},
"node_modules/@fluidframework/driver-base": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@fluidframework/driver-base/-/driver-base-1.4.0.tgz",
"integrity": "sha512-w3fYGp1Bkdjp9he3W3dSPQb1vU+zsRIcZZV9wGNfPA1ii7z9rnXzSgscn39IdLbZqvS2704endNwOIYHyBT34g==",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^0.32.2",
"@fluidframework/driver-definitions": "^1.4.0",
"@fluidframework/driver-utils": "^1.4.0",
"@fluidframework/protocol-definitions": "^0.1028.2000",
"@fluidframework/telemetry-utils": "^1.4.0"
}
},
"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==",
"dev": true,
"license": "MIT",
"peer": true,
"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==",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1"
}
},
"node_modules/@fluidframework/driver-definitions": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@fluidframework/driver-definitions/-/driver-definitions-1.4.0.tgz",
"integrity": "sha512-ay6Wwl8zGS64fjDsdh2iOeKiVVxT57Opeqjp6DqSglnnJi6AkSfYVoOVlMZ5+vJTfYJN3N4ptjrP/i3Mao9zPA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/core-interfaces": "^1.4.0",
"@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==",
"dev": true,
"license": "MIT",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1"
}
},
"node_modules/@fluidframework/driver-utils": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@fluidframework/driver-utils/-/driver-utils-1.4.0.tgz",
"integrity": "sha512-NPTFw54a+EnIzop7iwrHTONdt0UAjW59HhMlYVPMH8/aOBodddHl7oi2Ek96nZLc+6qruHImjJ+0OW+NxNS+Gw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^0.32.2",
"@fluidframework/core-interfaces": "^1.4.0",
"@fluidframework/driver-definitions": "^1.4.0",
"@fluidframework/gitresources": "^0.1036.5002",
"@fluidframework/protocol-base": "^0.1036.5002",
"@fluidframework/protocol-definitions": "^0.1028.2000",
"@fluidframework/telemetry-utils": "^1.4.0",
"axios": "^0.28.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==",
"dev": true,
"license": "MIT",
"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==",
"dev": true,
"license": "MIT",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1"
}
},
"node_modules/@fluidframework/fluid-static": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@fluidframework/fluid-static/-/fluid-static-1.4.0.tgz",
"integrity": "sha512-YlSX6Ibm3HquB+swxoIJt6QM1Bd6R9rBHp/HYDR9/9JuQwCIqW1xvF2NHmXPN/TGl51DnbhSB0gtm9k6pYd7pg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@fluidframework/aqueduct": "^1.4.0",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^0.32.2",
"@fluidframework/container-definitions": "^1.4.0",
"@fluidframework/container-loader": "^1.4.0",
"@fluidframework/container-runtime-definitions": "^1.4.0",
"@fluidframework/core-interfaces": "^1.4.0",
"@fluidframework/datastore-definitions": "^1.4.0",
"@fluidframework/protocol-definitions": "^0.1028.2000",
"@fluidframework/request-handler": "^1.4.0",
"@fluidframework/runtime-definitions": "^1.4.0",
"@fluidframework/runtime-utils": "^1.4.0"
}
},
"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==",
"dev": true,
"license": "MIT",
"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==",
"dev": true,
"license": "MIT",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1"
}
},
"node_modules/@fluidframework/garbage-collector": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@fluidframework/garbage-collector/-/garbage-collector-1.4.0.tgz",
"integrity": "sha512-bwt1mv3B2PcvVN/JqBkm8MwdRydVboBM7MguQkANDGkmUPD56dRzjBYEdOl3yNZJEO/xJ2v15RPrkf1coI78Bg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^0.32.2",
"@fluidframework/runtime-definitions": "^1.4.0"
}
},
"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==",
"dev": true,
"license": "MIT",
"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.5002",
"resolved": "https://registry.npmjs.org/@fluidframework/gitresources/-/gitresources-0.1036.5002.tgz",
"integrity": "sha512-/xdmCca+arU9x9tDGdIl2CCk0DmpWlFjZdcTdWjLNiexKMVKDrHmSw9vCpUMlGmECq8EOO7fyzBnAGM+nu+i0g==",
"dev": true,
"license": "MIT"
},
"node_modules/@fluidframework/map": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@fluidframework/map/-/map-1.4.0.tgz",
"integrity": "sha512-KBdHBxCcIvPtsUSqnc5Ztgs2U01FwgnsW8WF3bl+TGt55Xs4esm3+p43WNkET1YU5Q95RVocRVp03dYMN7xelQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^0.32.2",
"@fluidframework/container-utils": "^1.4.0",
"@fluidframework/core-interfaces": "^1.4.0",
"@fluidframework/datastore-definitions": "^1.4.0",
"@fluidframework/driver-utils": "^1.4.0",
"@fluidframework/protocol-definitions": "^0.1028.2000",
"@fluidframework/runtime-definitions": "^1.4.0",
"@fluidframework/runtime-utils": "^1.4.0",
"@fluidframework/shared-object-base": "^1.4.0",
"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==",
"dev": true,
"license": "MIT",
"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==",
"dev": true,
"license": "MIT",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1"
}
},
"node_modules/@fluidframework/merge-tree": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@fluidframework/merge-tree/-/merge-tree-1.4.0.tgz",
"integrity": "sha512-UJq7AfD52bp8ecoJLxArGI8506hTFjkNYLU2TXj08Fn8pi6MYN8WBMrCgAGJ47P7ytP1YfXOOWLzeT2ODuYJYw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^0.32.2",
"@fluidframework/container-definitions": "^1.4.0",
"@fluidframework/container-utils": "^1.4.0",
"@fluidframework/core-interfaces": "^1.4.0",
"@fluidframework/datastore-definitions": "^1.4.0",
"@fluidframework/protocol-definitions": "^0.1028.2000",
"@fluidframework/runtime-definitions": "^1.4.0",
"@fluidframework/runtime-utils": "^1.4.0",
"@fluidframework/shared-object-base": "^1.4.0",
"@fluidframework/telemetry-utils": "^1.4.0"
}
},
"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==",
"dev": true,
"license": "MIT",
"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==",
"dev": true,
"license": "MIT",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1"
}
},
"node_modules/@fluidframework/protocol-base": {
"version": "0.1036.5002",
"resolved": "https://registry.npmjs.org/@fluidframework/protocol-base/-/protocol-base-0.1036.5002.tgz",
"integrity": "sha512-mlI9okyLeSusGx7qU32NDJ4GJptSzVo3V6tPDhphPIOPtyOVTBuL4EQRFYdceoSLHlxEdVnQprwhyoRiMNw7Kw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@fluidframework/common-utils": "^0.32.2",
"@fluidframework/gitresources": "^0.1036.5002",
"@fluidframework/protocol-definitions": "^0.1028.2000",
"lodash": "^4.17.21"
}
},
"node_modules/@fluidframework/protocol-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==",
"dev": true,
"license": "MIT",
"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/protocol-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==",
"dev": true,
"license": "MIT",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1"
}
},
"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==",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1"
}
},
"node_modules/@fluidframework/request-handler": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@fluidframework/request-handler/-/request-handler-1.4.0.tgz",
"integrity": "sha512-KDYjQcrdvSuHXBtIG+LkDCcIjiDdw1CKX4iWi/aQrbGOTFVyLzfb2SnEXOBz7sw0YuMhxf+S322KTcX/OWd12w==",
"dev": true,
"license": "MIT",
"dependencies": {
"@fluidframework/common-utils": "^0.32.2",
"@fluidframework/container-runtime-definitions": "^1.4.0",
"@fluidframework/core-interfaces": "^1.4.0",
"@fluidframework/runtime-definitions": "^1.4.0",
"@fluidframework/runtime-utils": "^1.4.0"
}
},
"node_modules/@fluidframework/request-handler/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==",
"dev": true,
"license": "MIT",
"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/routerlicious-driver": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@fluidframework/routerlicious-driver/-/routerlicious-driver-1.4.0.tgz",
"integrity": "sha512-iyLywWEgo7zWYCiJj0GPzsrn4lmLw65GYJLEod57fBCk9eLRRxhQ2GJuu2k9XGV6nCFadEc1ZEKufDUNIiBPow==",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^0.32.2",
"@fluidframework/driver-base": "^1.4.0",
"@fluidframework/driver-definitions": "^1.4.0",
"@fluidframework/driver-utils": "^1.4.0",
"@fluidframework/gitresources": "^0.1036.5002",
"@fluidframework/protocol-base": "^0.1036.5002",
"@fluidframework/protocol-definitions": "^0.1028.2000",
"@fluidframework/server-services-client": "^0.1036.5002",
"@fluidframework/telemetry-utils": "^1.4.0",
"cross-fetch": "^3.1.5",
"json-stringify-safe": "5.0.1",
"querystring": "^0.2.0",
"socket.io-client": "^4.4.1",
"url-parse": "^1.5.8",
"uuid": "^8.3.1"
}
},
"node_modules/@fluidframework/routerlicious-driver/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==",
"dev": true,
"license": "MIT",
"peer": true,
"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/routerlicious-driver/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==",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1"
}
},
"node_modules/@fluidframework/runtime-definitions": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@fluidframework/runtime-definitions/-/runtime-definitions-1.4.0.tgz",
"integrity": "sha512-GewpwBxbeMutnHHXzVWsFYbGQJHKh8dFNqTiW0covMfaOOhXVSM0qzuf7RY7qX9n8Vn/bK3zF4WRo6gx/32fmg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^0.32.2",
"@fluidframework/container-definitions": "^1.4.0",
"@fluidframework/core-interfaces": "^1.4.0",
"@fluidframework/driver-definitions": "^1.4.0",
"@fluidframework/protocol-definitions": "^0.1028.2000"
}
},
"node_modules/@fluidframework/runtime-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==",
"dev": true,
"license": "MIT",
"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/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==",
"dev": true,
"license": "MIT",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1"
}
},
"node_modules/@fluidframework/runtime-utils": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@fluidframework/runtime-utils/-/runtime-utils-1.4.0.tgz",
"integrity": "sha512-0drnuEdUja1m2401FXcsB9l66x5oCGjgW43mLjZgZFKcz5v5jYZml8OKWAtLmwfI/UNLJ9bQkb/nHQSM0Tf3Rw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^0.32.2",
"@fluidframework/container-definitions": "^1.4.0",
"@fluidframework/container-runtime-definitions": "^1.4.0",
"@fluidframework/core-interfaces": "^1.4.0",
"@fluidframework/datastore-definitions": "^1.4.0",
"@fluidframework/garbage-collector": "^1.4.0",
"@fluidframework/protocol-base": "^0.1036.5002",
"@fluidframework/protocol-definitions": "^0.1028.2000",
"@fluidframework/runtime-definitions": "^1.4.0",
"@fluidframework/telemetry-utils": "^1.4.0"
}
},
"node_modules/@fluidframework/runtime-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==",
"dev": true,
"license": "MIT",
"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",