-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathpackage-lock.json
More file actions
12840 lines (12840 loc) · 421 KB
/
Copy pathpackage-lock.json
File metadata and controls
12840 lines (12840 loc) · 421 KB
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": "brainstorm",
"version": "0.0.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "brainstorm",
"version": "0.0.1",
"license": "MIT",
"dependencies": {
"@azure/identity": "^4.13.0",
"@azure/msal-browser": "^5.9.0",
"@fluentui/react-icons": "^2.0.319",
"@fluidframework/azure-client": "^2.111.0",
"@fluidframework/odsp-client": "^2.111.0",
"@fluidframework/telemetry-utils": "^2.111.0",
"@fluidframework/test-runtime-utils": "^2.111.0",
"@microsoft/microsoft-graph-client": "^3.0.7",
"axios": "^1.18.0",
"fluid-framework": "^2.111.0",
"hashids": "^2.2.10",
"jsrsasign": "^11.1.1",
"react": "^19.2.7",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^19.2.7",
"react-transition-state": "^2.4.0",
"unique-names-generator": "^4.7.1",
"uuid": "^14.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@fluidframework/azure-local-service": "^2.111.0",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/devtools": "^2.111.0",
"@microsoft/microsoft-graph-types": "^2.43.1",
"@playwright/test": "^1.57.0",
"@tailwindcss/cli": "^4.2.0",
"@types/debug": "^4.1.13",
"@types/jsrsasign": "^10.5.15",
"@types/node": "^22.20.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.62.1",
"@typescript-eslint/parser": "^8.62.1",
"copy-webpack-plugin": "^13.0.1",
"cross-env": "^10.1.0",
"css-loader": "^7.1.4",
"dotenv-webpack": "^8.1.1",
"eslint": "^9.39.2",
"eslint-plugin-react": "^7.37.5",
"globals": "^17.3.0",
"html-webpack-plugin": "^5.6.6",
"mini-css-extract-plugin": "^2.10.2",
"playwright": "^1.58.2",
"prettier": "^3.9.4",
"style-loader": "^4.0.0",
"tailwindcss": "^4.2.0",
"ts-loader": "^9.5.4",
"typescript": "~6.0",
"webpack": "^5.108.4",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.5"
},
"engines": {
"node": ">=22"
}
},
"node_modules/@azure/abort-controller": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/@azure/abort-controller/-/abort-controller-2.1.2.tgz",
"integrity": "sha512-nBrLsEWm4J2u5LpAPjxADTlq3trDgVZZXHNKabeXZtpq3d3AbN/KGO82R87rdDz5/lYB024rtEf10/q0urNgsA==",
"dependencies": {
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@azure/core-auth": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@azure/core-auth/-/core-auth-1.9.0.tgz",
"integrity": "sha512-FPwHpZywuyasDSLMqJ6fhbOK3TqUdviZNF8OqRGA4W5Ewib2lEEZ+pBsYcBa88B2NGO/SEnYPGhyBqNlE8ilSw==",
"dependencies": {
"@azure/abort-controller": "^2.0.0",
"@azure/core-util": "^1.11.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@azure/core-client": {
"version": "1.9.2",
"resolved": "https://registry.npmjs.org/@azure/core-client/-/core-client-1.9.2.tgz",
"integrity": "sha512-kRdry/rav3fUKHl/aDLd/pDLcB+4pOFwPPTVEExuMyaI5r+JBbMWqRbCY1pn5BniDaU3lRxO9eaQ1AmSMehl/w==",
"dependencies": {
"@azure/abort-controller": "^2.0.0",
"@azure/core-auth": "^1.4.0",
"@azure/core-rest-pipeline": "^1.9.1",
"@azure/core-tracing": "^1.0.0",
"@azure/core-util": "^1.6.1",
"@azure/logger": "^1.0.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@azure/core-rest-pipeline": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@azure/core-rest-pipeline/-/core-rest-pipeline-1.18.1.tgz",
"integrity": "sha512-/wS73UEDrxroUEVywEm7J0p2c+IIiVxyfigCGfsKvCxxCET4V/Hef2aURqltrXMRjNmdmt5IuOgIpl8f6xdO5A==",
"dependencies": {
"@azure/abort-controller": "^2.0.0",
"@azure/core-auth": "^1.8.0",
"@azure/core-tracing": "^1.0.1",
"@azure/core-util": "^1.11.0",
"@azure/logger": "^1.0.0",
"http-proxy-agent": "^7.0.0",
"https-proxy-agent": "^7.0.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@azure/core-tracing": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@azure/core-tracing/-/core-tracing-1.2.0.tgz",
"integrity": "sha512-UKTiEJPkWcESPYJz3X5uKRYyOcJD+4nYph+KpfdPRnQJVrZfk0KJgdnaAWKfhsBBtAf/D58Az4AvCJEmWgIBAg==",
"dependencies": {
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@azure/core-util": {
"version": "1.11.0",
"resolved": "https://registry.npmjs.org/@azure/core-util/-/core-util-1.11.0.tgz",
"integrity": "sha512-DxOSLua+NdpWoSqULhjDyAZTXFdP/LKkqtYuxxz1SCN289zk3OG8UOpnCQAz/tygyACBtWp/BoO72ptK7msY8g==",
"dependencies": {
"@azure/abort-controller": "^2.0.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@azure/identity": {
"version": "4.13.0",
"resolved": "https://registry.npmjs.org/@azure/identity/-/identity-4.13.0.tgz",
"integrity": "sha512-uWC0fssc+hs1TGGVkkghiaFkkS7NkTxfnCH+Hdg+yTehTpMcehpok4PgUKKdyCH+9ldu6FhiHRv84Ntqj1vVcw==",
"license": "MIT",
"dependencies": {
"@azure/abort-controller": "^2.0.0",
"@azure/core-auth": "^1.9.0",
"@azure/core-client": "^1.9.2",
"@azure/core-rest-pipeline": "^1.17.0",
"@azure/core-tracing": "^1.0.0",
"@azure/core-util": "^1.11.0",
"@azure/logger": "^1.0.0",
"@azure/msal-browser": "^4.2.0",
"@azure/msal-node": "^3.5.0",
"open": "^10.1.0",
"tslib": "^2.2.0"
},
"engines": {
"node": ">=20.0.0"
}
},
"node_modules/@azure/identity/node_modules/@azure/msal-browser": {
"version": "4.28.1",
"resolved": "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-4.28.1.tgz",
"integrity": "sha512-al2u2fTchbClq3L4C1NlqLm+vwKfhYCPtZN2LR/9xJVaQ4Mnrwf5vANvuyPSJHcGvw50UBmhuVmYUAhTEetTpA==",
"license": "MIT",
"dependencies": {
"@azure/msal-common": "15.14.1"
},
"engines": {
"node": ">=0.8.0"
}
},
"node_modules/@azure/identity/node_modules/@azure/msal-common": {
"version": "15.14.1",
"resolved": "https://registry.npmjs.org/@azure/msal-common/-/msal-common-15.14.1.tgz",
"integrity": "sha512-IkzF7Pywt6QKTS0kwdCv/XV8x8JXknZDvSjj/IccooxnP373T5jaadO3FnOrbWo3S0UqkfIDyZNTaQ/oAgRdXw==",
"license": "MIT",
"engines": {
"node": ">=0.8.0"
}
},
"node_modules/@azure/logger": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/@azure/logger/-/logger-1.1.4.tgz",
"integrity": "sha512-4IXXzcCdLdlXuCG+8UKEwLA1T1NHqUfanhXYHiQTn+6sfWCZXduqbtXDGceg3Ce5QxTGo7EqmbV6Bi+aqKuClQ==",
"dependencies": {
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@azure/msal-browser": {
"version": "5.9.0",
"resolved": "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-5.9.0.tgz",
"integrity": "sha512-CzE+4PefDSJWj26zU7G1bKchlGRRHMBFreG4tAlGuzyI8hAPiYGobaJvZBgZBf6L63iphX7VH+ityL8VgEQz9Q==",
"license": "MIT",
"dependencies": {
"@azure/msal-common": "16.5.2"
},
"engines": {
"node": ">=0.8.0"
}
},
"node_modules/@azure/msal-browser/node_modules/@azure/msal-common": {
"version": "16.5.2",
"resolved": "https://registry.npmjs.org/@azure/msal-common/-/msal-common-16.5.2.tgz",
"integrity": "sha512-GkDEL6TYo3HgT3UuqakdgE9PZfc1hMki6+Hwgy1uddb/EauvAKfu85vVhuofRSo22D1xTnWt8Ucwfg4vSCVwvA==",
"license": "MIT",
"engines": {
"node": ">=0.8.0"
}
},
"node_modules/@azure/msal-common": {
"version": "15.5.1",
"resolved": "https://registry.npmjs.org/@azure/msal-common/-/msal-common-15.5.1.tgz",
"integrity": "sha512-oxK0khbc4Bg1bKQnqDr7ikULhVL2OHgSrIq0Vlh4b6+hm4r0lr6zPMQE8ZvmacJuh+ZZGKBM5iIObhF1q1QimQ==",
"license": "MIT",
"engines": {
"node": ">=0.8.0"
}
},
"node_modules/@azure/msal-node": {
"version": "3.5.1",
"resolved": "https://registry.npmjs.org/@azure/msal-node/-/msal-node-3.5.1.tgz",
"integrity": "sha512-dkgMYM5B6tI88r/oqf5bYd93WkenQpaWwiszJDk7avVjso8cmuKRTW97dA1RMi6RhihZFLtY1VtWxU9+sW2T5g==",
"license": "MIT",
"dependencies": {
"@azure/msal-common": "15.5.1",
"jsonwebtoken": "^9.0.0",
"uuid": "^8.3.0"
},
"engines": {
"node": ">=16"
}
},
"node_modules/@azure/msal-node/node_modules/uuid": {
"version": "8.3.2",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz",
"integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==",
"license": "MIT",
"bin": {
"uuid": "dist/bin/uuid"
}
},
"node_modules/@babel/runtime": {
"version": "7.27.0",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.27.0.tgz",
"integrity": "sha512-VtPOkrdPHZsKc/clNqyi9WUA8TINkZ4cGk63UUE3u4pmB2k+ZMQRDuIOagv8UVd6j7k0T3+RRIb7beKTebNbcw==",
"dependencies": {
"regenerator-runtime": "^0.14.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@colors/colors": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.6.0.tgz",
"integrity": "sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=0.1.90"
}
},
"node_modules/@dabh/diagnostics": {
"version": "2.0.8",
"resolved": "https://registry.npmjs.org/@dabh/diagnostics/-/diagnostics-2.0.8.tgz",
"integrity": "sha512-R4MSXTVnuMzGD7bzHdW2ZhhdPC/igELENcq5IjEverBvq5hn1SXCWcsi6eSsdWP0/Ur+SItRRjAktmdoX/8R/Q==",
"dev": true,
"license": "MIT",
"dependencies": {
"@so-ric/colorspace": "^1.1.6",
"enabled": "2.0.x",
"kuler": "^2.0.0"
}
},
"node_modules/@discoveryjs/json-ext": {
"version": "0.6.3",
"resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.6.3.tgz",
"integrity": "sha512-4B4OijXeVNOPZlYA2oEwWOTkzyltLao+xbotHQeqN++Rv27Y6s818+n2Qkp8q+Fxhn0t/5lA5X1Mxktud8eayQ==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=14.17.0"
}
},
"node_modules/@emotion/hash": {
"version": "0.9.2",
"resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.2.tgz",
"integrity": "sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g=="
},
"node_modules/@epic-web/invariant": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@epic-web/invariant/-/invariant-1.0.0.tgz",
"integrity": "sha512-lrTPqgvfFQtR/eY/qkIzp98OGdNJu0m5ji3q/nJI8v3SXkRKEnWiOxMmbvcSoAIzv/cGiuvRy57k4suKQSAdwA==",
"dev": true,
"license": "MIT"
},
"node_modules/@eslint-community/eslint-utils": {
"version": "4.9.1",
"resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.1.tgz",
"integrity": "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"eslint-visitor-keys": "^3.4.3"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"url": "https://opencollective.com/eslint"
},
"peerDependencies": {
"eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
}
},
"node_modules/@eslint-community/regexpp": {
"version": "4.12.2",
"resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz",
"integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==",
"dev": true,
"license": "MIT",
"engines": {
"node": "^12.0.0 || ^14.0.0 || >=16.0.0"
}
},
"node_modules/@eslint/config-array": {
"version": "0.21.1",
"resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.1.tgz",
"integrity": "sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@eslint/object-schema": "^2.1.7",
"debug": "^4.3.1",
"minimatch": "^3.1.2"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
}
},
"node_modules/@eslint/config-helpers": {
"version": "0.4.2",
"resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.4.2.tgz",
"integrity": "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@eslint/core": "^0.17.0"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
}
},
"node_modules/@eslint/core": {
"version": "0.17.0",
"resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.17.0.tgz",
"integrity": "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@types/json-schema": "^7.0.15"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
}
},
"node_modules/@eslint/eslintrc": {
"version": "3.3.3",
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.3.tgz",
"integrity": "sha512-Kr+LPIUVKz2qkx1HAMH8q1q6azbqBAsXJUxBl/ODDuVPX45Z9DfwB8tPjTi6nNZ8BuM3nbJxC5zCAg5elnBUTQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"ajv": "^6.12.4",
"debug": "^4.3.2",
"espree": "^10.0.1",
"globals": "^14.0.0",
"ignore": "^5.2.0",
"import-fresh": "^3.2.1",
"js-yaml": "^4.1.1",
"minimatch": "^3.1.2",
"strip-json-comments": "^3.1.1"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"funding": {
"url": "https://opencollective.com/eslint"
}
},
"node_modules/@eslint/eslintrc/node_modules/globals": {
"version": "14.0.0",
"resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz",
"integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==",
"dev": true,
"engines": {
"node": ">=18"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/@eslint/js": {
"version": "9.39.2",
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.2.tgz",
"integrity": "sha512-q1mjIoW1VX4IvSocvM/vbTiveKC4k9eLrajNEuSsmjymSDEbpGddtpfOoN7YGAqBK3NG+uqo8ia4PDTt8buCYA==",
"dev": true,
"license": "MIT",
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"funding": {
"url": "https://eslint.org/donate"
}
},
"node_modules/@eslint/object-schema": {
"version": "2.1.7",
"resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.7.tgz",
"integrity": "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==",
"dev": true,
"license": "Apache-2.0",
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
}
},
"node_modules/@eslint/plugin-kit": {
"version": "0.4.1",
"resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.4.1.tgz",
"integrity": "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@eslint/core": "^0.17.0",
"levn": "^0.4.1"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
}
},
"node_modules/@fluentui/react-icons": {
"version": "2.0.319",
"resolved": "https://registry.npmjs.org/@fluentui/react-icons/-/react-icons-2.0.319.tgz",
"integrity": "sha512-4yN0ovAxlOXL5jM3ULuYu6pAwvMWm1MjojDXn5tVKDkXQwlLpXCUFwf5Vgzp5jU6jJXrENj4v64MN6w7FJjotw==",
"license": "MIT",
"dependencies": {
"@griffel/react": "^1.0.0",
"tslib": "^2.1.0"
},
"peerDependencies": {
"react": ">=16.8.0 <20.0.0"
}
},
"node_modules/@fluid-internal/client-utils": {
"version": "2.111.0",
"resolved": "https://registry.npmjs.org/@fluid-internal/client-utils/-/client-utils-2.111.0.tgz",
"integrity": "sha512-/F88D4vQyaQQjiPacSO4iV2cwEV1bNjEm4dFE1I2xwje3Td3wMx+KEmevutfx4XPK35m/o1K1xya9+X2jUQ17g==",
"license": "MIT",
"dependencies": {
"@fluidframework/core-interfaces": "~2.111.0",
"@fluidframework/core-utils": "~2.111.0",
"@types/events_pkg": "npm:@types/events@^3.0.0",
"base64-js": "^1.5.1",
"buffer": "^6.0.3",
"events_pkg": "npm:events@^3.1.0",
"sha.js": "^2.4.12"
}
},
"node_modules/@fluid-internal/presence-definitions": {
"version": "2.111.0",
"resolved": "https://registry.npmjs.org/@fluid-internal/presence-definitions/-/presence-definitions-2.111.0.tgz",
"integrity": "sha512-1oSZ2GnBybU9YPxXZSOZmyas8Fw2Fy+nhevsj97EnQ1n3pXb3StviwH4T7vIw139UVN8SoUGKQwlXSlYxIJc2Q==",
"license": "MIT",
"dependencies": {
"@fluidframework/core-interfaces": "~2.111.0",
"@fluidframework/id-compressor": "~2.111.0"
}
},
"node_modules/@fluid-internal/presence-runtime": {
"version": "2.111.0",
"resolved": "https://registry.npmjs.org/@fluid-internal/presence-runtime/-/presence-runtime-2.111.0.tgz",
"integrity": "sha512-j1zFEjtg/6AZtIulAuIrb8u2lP/Wa1mUCxdhWCKM0Z4DciG503YDrXVdA6lNnuSW56URQOy0WGxdmf/H5h9+wQ==",
"license": "MIT",
"dependencies": {
"@fluid-internal/client-utils": "~2.111.0",
"@fluid-internal/presence-definitions": "~2.111.0",
"@fluidframework/container-definitions": "~2.111.0",
"@fluidframework/container-runtime-definitions": "~2.111.0",
"@fluidframework/core-interfaces": "~2.111.0",
"@fluidframework/core-utils": "~2.111.0",
"@fluidframework/id-compressor": "~2.111.0",
"@fluidframework/runtime-definitions": "~2.111.0",
"@fluidframework/telemetry-utils": "~2.111.0"
}
},
"node_modules/@fluidframework/aqueduct": {
"version": "2.111.0",
"resolved": "https://registry.npmjs.org/@fluidframework/aqueduct/-/aqueduct-2.111.0.tgz",
"integrity": "sha512-w4eSvYp2c6C5dUV3/uualQsxXI9wpfY1w/Q+6197R0cRBqA0yXrYNXRohc41gFnxm6wuiJLl/bQQKxGp5Zn3eQ==",
"license": "MIT",
"dependencies": {
"@fluid-internal/client-utils": "~2.111.0",
"@fluidframework/container-definitions": "~2.111.0",
"@fluidframework/container-runtime": "~2.111.0",
"@fluidframework/container-runtime-definitions": "~2.111.0",
"@fluidframework/core-interfaces": "~2.111.0",
"@fluidframework/core-utils": "~2.111.0",
"@fluidframework/datastore": "~2.111.0",
"@fluidframework/datastore-definitions": "~2.111.0",
"@fluidframework/map": "~2.111.0",
"@fluidframework/request-handler": "~2.111.0",
"@fluidframework/runtime-definitions": "~2.111.0",
"@fluidframework/runtime-utils": "~2.111.0",
"@fluidframework/shared-object-base": "~2.111.0",
"@fluidframework/synthesize": "~2.111.0",
"@fluidframework/telemetry-utils": "~2.111.0",
"@fluidframework/tree": "~2.111.0"
}
},
"node_modules/@fluidframework/azure-client": {
"version": "2.111.0",
"resolved": "https://registry.npmjs.org/@fluidframework/azure-client/-/azure-client-2.111.0.tgz",
"integrity": "sha512-+eZf7OU3ett0eraxuWtDk8MAG7ZOLsfnjqbuWMoLA+WHTjrrGxUW6Cn92qs6CNHSy5XEcCVCp2xzyNwZLmv1hg==",
"license": "MIT",
"dependencies": {
"@fluidframework/container-definitions": "~2.111.0",
"@fluidframework/container-loader": "~2.111.0",
"@fluidframework/core-interfaces": "~2.111.0",
"@fluidframework/driver-definitions": "~2.111.0",
"@fluidframework/driver-utils": "~2.111.0",
"@fluidframework/fluid-static": "~2.111.0",
"@fluidframework/routerlicious-driver": "~2.111.0",
"@fluidframework/runtime-definitions": "~2.111.0",
"@fluidframework/telemetry-utils": "~2.111.0"
}
},
"node_modules/@fluidframework/azure-local-service": {
"version": "2.111.0",
"resolved": "https://registry.npmjs.org/@fluidframework/azure-local-service/-/azure-local-service-2.111.0.tgz",
"integrity": "sha512-i+KnUVOX/LJx0sEcLGxKkP6YCwuge8J6jRIot2Mq2zGy8wBpxU7mB9gD/TiF5/S3p66wHOUoWOYn0iRqMkSxvw==",
"dev": true,
"license": "MIT",
"dependencies": {
"tinylicious": "^7.0.1"
},
"bin": {
"azure-local-service": "index.js"
}
},
"node_modules/@fluidframework/build-common": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/@fluidframework/build-common/-/build-common-2.0.3.tgz",
"integrity": "sha512-1LU/2uyCeMxf63z5rhFOFEBvFyBogZ7ZXwzXLxyBhSgq/fGiq8PLjBW7uX++r0LcVCdaWyopf7w060eJpANYdg==",
"dev": true,
"bin": {
"gen-version": "bin/gen-version"
}
},
"node_modules/@fluidframework/cell": {
"version": "2.111.0",
"resolved": "https://registry.npmjs.org/@fluidframework/cell/-/cell-2.111.0.tgz",
"integrity": "sha512-rI4NqvU7HDNomDxeuQU3xT+Ohlp/BxnKDIV9YFye3p/G2gEU4FQhlkghz+/Gk4eNwGQQh1wXvToiN0g7gKSgmA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@fluidframework/core-interfaces": "~2.111.0",
"@fluidframework/core-utils": "~2.111.0",
"@fluidframework/datastore-definitions": "~2.111.0",
"@fluidframework/driver-definitions": "~2.111.0",
"@fluidframework/driver-utils": "~2.111.0",
"@fluidframework/runtime-definitions": "~2.111.0",
"@fluidframework/shared-object-base": "~2.111.0"
}
},
"node_modules/@fluidframework/common-definitions": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@fluidframework/common-definitions/-/common-definitions-1.1.0.tgz",
"integrity": "sha512-WQYtG9tkx2j7i1JSXPvwLnQsqCOZAghMj0aGciqjZVNppUly/XBpAjb4V6FEUCEjxCScPKhyE+1rhV1ep52NgA=="
},
"node_modules/@fluidframework/common-utils": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@fluidframework/common-utils/-/common-utils-3.1.0.tgz",
"integrity": "sha512-KpBQqpZKAHCKFMoxtAdrgqL1nIJhT7r2IRGmS3Rm5CMTLsegQ8ifX5lFvd6IbjeWmvLz1qLsY3eS5HBYqy9CVQ==",
"dependencies": {
"@fluidframework/common-definitions": "^1.1.0",
"@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.111.0",
"resolved": "https://registry.npmjs.org/@fluidframework/container-definitions/-/container-definitions-2.111.0.tgz",
"integrity": "sha512-8I5imQzkvKkZHqt1OyXUx3puRjY7obPqYYjttqfS1Pnmg58h2Co7Ecj4J7mzKkVKCB+oA8YWbAeMnubSo7yHEw==",
"license": "MIT",
"dependencies": {
"@fluidframework/core-interfaces": "~2.111.0",
"@fluidframework/driver-definitions": "~2.111.0"
}
},
"node_modules/@fluidframework/container-loader": {
"version": "2.111.0",
"resolved": "https://registry.npmjs.org/@fluidframework/container-loader/-/container-loader-2.111.0.tgz",
"integrity": "sha512-Q2aqziszlD+F7OvjAY3lmIk45KgMvEH00kZl2f4VW7df8CTR8kOYj/qwkNbulso4JqDQ3LwfETvEXLY9+m3HSg==",
"license": "MIT",
"dependencies": {
"@fluid-internal/client-utils": "~2.111.0",
"@fluidframework/container-definitions": "~2.111.0",
"@fluidframework/core-interfaces": "~2.111.0",
"@fluidframework/core-utils": "~2.111.0",
"@fluidframework/driver-definitions": "~2.111.0",
"@fluidframework/driver-utils": "~2.111.0",
"@fluidframework/telemetry-utils": "~2.111.0",
"debug": "^4.3.4",
"double-ended-queue": "^2.1.0-0",
"events_pkg": "npm:events@^3.1.0",
"uuid": "^11.1.0"
}
},
"node_modules/@fluidframework/container-loader/node_modules/uuid": {
"version": "11.1.1",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-11.1.1.tgz",
"integrity": "sha512-vIYxrBCC/N/K+Js3qSN88go7kIfNPssr/hHCesKCQNAjmgvYS2oqr69kIufEG+O4+PfezOH4EbIeHCfFov8ZgQ==",
"funding": [
"https://github.com/sponsors/broofa",
"https://github.com/sponsors/ctavan"
],
"license": "MIT",
"bin": {
"uuid": "dist/esm/bin/uuid"
}
},
"node_modules/@fluidframework/container-runtime": {
"version": "2.111.0",
"resolved": "https://registry.npmjs.org/@fluidframework/container-runtime/-/container-runtime-2.111.0.tgz",
"integrity": "sha512-j5ojrlnOlwuq4W90vTYyZhe+ZhEocywITY8ZpTQuwQAhUW4B+8A0Md5kfQuQs2QOKEDikY9mmajYelC0yfTQcA==",
"license": "MIT",
"dependencies": {
"@fluid-internal/client-utils": "~2.111.0",
"@fluidframework/container-definitions": "~2.111.0",
"@fluidframework/container-runtime-definitions": "~2.111.0",
"@fluidframework/core-interfaces": "~2.111.0",
"@fluidframework/core-utils": "~2.111.0",
"@fluidframework/datastore": "~2.111.0",
"@fluidframework/driver-definitions": "~2.111.0",
"@fluidframework/driver-utils": "~2.111.0",
"@fluidframework/id-compressor": "~2.111.0",
"@fluidframework/runtime-definitions": "~2.111.0",
"@fluidframework/runtime-utils": "~2.111.0",
"@fluidframework/telemetry-utils": "~2.111.0",
"@tylerbu/sorted-btree-es6": "^2.1.1",
"double-ended-queue": "^2.1.0-0",
"lz4js": "^0.2.0",
"semver-ts": "^1.0.3",
"uuid": "^11.1.0"
}
},
"node_modules/@fluidframework/container-runtime-definitions": {
"version": "2.111.0",
"resolved": "https://registry.npmjs.org/@fluidframework/container-runtime-definitions/-/container-runtime-definitions-2.111.0.tgz",
"integrity": "sha512-Rl5VwjAkh2kaOeKx1s6jLGcoSV505VzIXrWccpnCEONMV0Bf8RzE/hC+GWQiwt1lnSDy0PGYvthoyJ6hjKjrjA==",
"license": "MIT",
"dependencies": {
"@fluid-internal/client-utils": "~2.111.0",
"@fluidframework/container-definitions": "~2.111.0",
"@fluidframework/core-interfaces": "~2.111.0",
"@fluidframework/driver-definitions": "~2.111.0",
"@fluidframework/runtime-definitions": "~2.111.0"
}
},
"node_modules/@fluidframework/container-runtime/node_modules/uuid": {
"version": "11.1.1",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-11.1.1.tgz",
"integrity": "sha512-vIYxrBCC/N/K+Js3qSN88go7kIfNPssr/hHCesKCQNAjmgvYS2oqr69kIufEG+O4+PfezOH4EbIeHCfFov8ZgQ==",
"funding": [
"https://github.com/sponsors/broofa",
"https://github.com/sponsors/ctavan"
],
"license": "MIT",
"bin": {
"uuid": "dist/esm/bin/uuid"
}
},
"node_modules/@fluidframework/core-interfaces": {
"version": "2.111.0",
"resolved": "https://registry.npmjs.org/@fluidframework/core-interfaces/-/core-interfaces-2.111.0.tgz",
"integrity": "sha512-Ykp/zqSO0eYPxJC/0f05waLLHUamzCbRnLVXT/xcRXS/C1UvT4L2xuqNK/X7dxR5rqQtkeaaNdmDzygDeAqagA==",
"license": "MIT"
},
"node_modules/@fluidframework/core-utils": {
"version": "2.111.0",
"resolved": "https://registry.npmjs.org/@fluidframework/core-utils/-/core-utils-2.111.0.tgz",
"integrity": "sha512-dIYaKbnimwC4pEnt+hRde1Khhvrtqs6zZmYPlEDcXYNkuSWHK56aA7xb1jmgeEjpb23uK0afYvUFcqqthE08zQ==",
"license": "MIT"
},
"node_modules/@fluidframework/counter": {
"version": "2.111.0",
"resolved": "https://registry.npmjs.org/@fluidframework/counter/-/counter-2.111.0.tgz",
"integrity": "sha512-xEpWBtBhKFvXirWj+ir8Cf5DFJYOOVI2Mrgx4ChjFFmeWvq/3jlmz8XIn11lynU8N6s+joLKO/ZItJNoXsCAYg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@fluidframework/core-interfaces": "~2.111.0",
"@fluidframework/core-utils": "~2.111.0",
"@fluidframework/datastore-definitions": "~2.111.0",
"@fluidframework/driver-definitions": "~2.111.0",
"@fluidframework/driver-utils": "~2.111.0",
"@fluidframework/runtime-definitions": "~2.111.0",
"@fluidframework/shared-object-base": "~2.111.0"
}
},
"node_modules/@fluidframework/datastore": {
"version": "2.111.0",
"resolved": "https://registry.npmjs.org/@fluidframework/datastore/-/datastore-2.111.0.tgz",
"integrity": "sha512-qwbae76RqauV83RBzmP/64A5TknzwStWZDBat2Fz1eUsagAthWNZR+bd+y/y/cTE2RkcpRhansJ/NUtOUJtQ5w==",
"license": "MIT",
"dependencies": {
"@fluid-internal/client-utils": "~2.111.0",
"@fluidframework/container-definitions": "~2.111.0",
"@fluidframework/core-interfaces": "~2.111.0",
"@fluidframework/core-utils": "~2.111.0",
"@fluidframework/datastore-definitions": "~2.111.0",
"@fluidframework/driver-definitions": "~2.111.0",
"@fluidframework/driver-utils": "~2.111.0",
"@fluidframework/id-compressor": "~2.111.0",
"@fluidframework/runtime-definitions": "~2.111.0",
"@fluidframework/runtime-utils": "~2.111.0",
"@fluidframework/telemetry-utils": "~2.111.0",
"uuid": "^11.1.0"
}
},
"node_modules/@fluidframework/datastore-definitions": {
"version": "2.111.0",
"resolved": "https://registry.npmjs.org/@fluidframework/datastore-definitions/-/datastore-definitions-2.111.0.tgz",
"integrity": "sha512-R5IN9wOkxm+oSDSNB6qimM9Ez1fP59mUALVJgFDe58QGaGaqnUbGR0T6Ga4ZS+fG5O1N34g+ony3Jq3LK6fp7g==",
"license": "MIT",
"dependencies": {
"@fluidframework/container-definitions": "~2.111.0",
"@fluidframework/core-interfaces": "~2.111.0",
"@fluidframework/driver-definitions": "~2.111.0",
"@fluidframework/id-compressor": "~2.111.0",
"@fluidframework/runtime-definitions": "~2.111.0"
}
},
"node_modules/@fluidframework/datastore/node_modules/uuid": {
"version": "11.1.1",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-11.1.1.tgz",
"integrity": "sha512-vIYxrBCC/N/K+Js3qSN88go7kIfNPssr/hHCesKCQNAjmgvYS2oqr69kIufEG+O4+PfezOH4EbIeHCfFov8ZgQ==",
"funding": [
"https://github.com/sponsors/broofa",
"https://github.com/sponsors/ctavan"
],
"license": "MIT",
"bin": {
"uuid": "dist/esm/bin/uuid"
}
},
"node_modules/@fluidframework/devtools": {
"version": "2.111.0",
"resolved": "https://registry.npmjs.org/@fluidframework/devtools/-/devtools-2.111.0.tgz",
"integrity": "sha512-uZc/wL2OysrLNxQU0D2Rat5gHNObxVYJtlXRJaMx8G8y+MNK+dBewjijU0WfoV9lzDISE1xFIoFevPfoToufyg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@fluidframework/container-definitions": "~2.111.0",
"@fluidframework/core-interfaces": "~2.111.0",
"@fluidframework/devtools-core": "~2.111.0",
"@fluidframework/fluid-static": "~2.111.0"
}
},
"node_modules/@fluidframework/devtools-core": {
"version": "2.111.0",
"resolved": "https://registry.npmjs.org/@fluidframework/devtools-core/-/devtools-core-2.111.0.tgz",
"integrity": "sha512-iOFi/Qe2Ck+a6BDaIYKLI1ccgqbw5QlaazxZBpokBJr6SW2ik9LGQsOf3Tt/6fxKQVRSXt40BdreTDQSPL1Xxw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@fluid-internal/client-utils": "~2.111.0",
"@fluidframework/aqueduct": "~2.111.0",
"@fluidframework/cell": "~2.111.0",
"@fluidframework/container-definitions": "~2.111.0",
"@fluidframework/container-loader": "~2.111.0",
"@fluidframework/container-runtime": "~2.111.0",
"@fluidframework/container-runtime-definitions": "~2.111.0",
"@fluidframework/core-interfaces": "~2.111.0",
"@fluidframework/core-utils": "~2.111.0",
"@fluidframework/counter": "~2.111.0",
"@fluidframework/datastore-definitions": "~2.111.0",
"@fluidframework/driver-definitions": "~2.111.0",
"@fluidframework/map": "~2.111.0",
"@fluidframework/matrix": "~2.111.0",
"@fluidframework/runtime-definitions": "~2.111.0",
"@fluidframework/sequence": "~2.111.0",
"@fluidframework/shared-object-base": "~2.111.0",
"@fluidframework/telemetry-utils": "~2.111.0",
"@fluidframework/tree": "~2.111.0"
}
},
"node_modules/@fluidframework/driver-base": {
"version": "2.111.0",
"resolved": "https://registry.npmjs.org/@fluidframework/driver-base/-/driver-base-2.111.0.tgz",
"integrity": "sha512-CWeIJgdJDCe/33SVi3OgJxnzgY2mqbNurriMon6sX5js/zHX9gqQlcrQJuGZdTDlbq3YJMxshKoxaIgU1RQokA==",
"license": "MIT",
"dependencies": {
"@fluid-internal/client-utils": "~2.111.0",
"@fluidframework/core-interfaces": "~2.111.0",
"@fluidframework/core-utils": "~2.111.0",
"@fluidframework/driver-definitions": "~2.111.0",
"@fluidframework/driver-utils": "~2.111.0",
"@fluidframework/telemetry-utils": "~2.111.0"
}
},
"node_modules/@fluidframework/driver-definitions": {
"version": "2.111.0",
"resolved": "https://registry.npmjs.org/@fluidframework/driver-definitions/-/driver-definitions-2.111.0.tgz",
"integrity": "sha512-QtvyeoRHemhtlD4Xe9s8DUtVffQayddRUIlJZJSaI64vZjoUZ2S7B7aAcinhTeibFwA8wATckRirrgFQk01u4Q==",
"license": "MIT",
"dependencies": {
"@fluidframework/core-interfaces": "~2.111.0"
}
},
"node_modules/@fluidframework/driver-utils": {
"version": "2.111.0",
"resolved": "https://registry.npmjs.org/@fluidframework/driver-utils/-/driver-utils-2.111.0.tgz",
"integrity": "sha512-7bFJrmYGtAtcUKRr40glSZOBAVj6rkeFBmbNOJVCxZVZhfOlx5QnTLAOKBE75xirbwAUqWmAGZrVGuK9vkbWOg==",
"license": "MIT",
"dependencies": {
"@fluid-internal/client-utils": "~2.111.0",
"@fluidframework/core-interfaces": "~2.111.0",
"@fluidframework/core-utils": "~2.111.0",
"@fluidframework/driver-definitions": "~2.111.0",
"@fluidframework/telemetry-utils": "~2.111.0",
"lz4js": "^0.2.0",
"uuid": "^11.1.0"
}
},
"node_modules/@fluidframework/driver-utils/node_modules/uuid": {
"version": "11.1.1",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-11.1.1.tgz",
"integrity": "sha512-vIYxrBCC/N/K+Js3qSN88go7kIfNPssr/hHCesKCQNAjmgvYS2oqr69kIufEG+O4+PfezOH4EbIeHCfFov8ZgQ==",
"funding": [
"https://github.com/sponsors/broofa",
"https://github.com/sponsors/ctavan"
],
"license": "MIT",
"bin": {
"uuid": "dist/esm/bin/uuid"
}
},
"node_modules/@fluidframework/fluid-static": {
"version": "2.111.0",
"resolved": "https://registry.npmjs.org/@fluidframework/fluid-static/-/fluid-static-2.111.0.tgz",
"integrity": "sha512-Va3wazRioHpGwvCzARM02nCEpTEvDCpyUKHYQHAhI2fIEKlY9HkmMltIfIw0Ypuwb3UP0ZbQkO3AtT2cmPFu1g==",
"license": "MIT",
"dependencies": {
"@fluid-internal/client-utils": "~2.111.0",
"@fluid-internal/presence-definitions": "~2.111.0",
"@fluid-internal/presence-runtime": "~2.111.0",
"@fluidframework/aqueduct": "~2.111.0",
"@fluidframework/container-definitions": "~2.111.0",
"@fluidframework/container-loader": "~2.111.0",
"@fluidframework/container-runtime": "~2.111.0",
"@fluidframework/container-runtime-definitions": "~2.111.0",
"@fluidframework/core-interfaces": "~2.111.0",
"@fluidframework/core-utils": "~2.111.0",
"@fluidframework/datastore-definitions": "~2.111.0",
"@fluidframework/driver-definitions": "~2.111.0",
"@fluidframework/request-handler": "~2.111.0",
"@fluidframework/runtime-definitions": "~2.111.0",
"@fluidframework/runtime-utils": "~2.111.0",
"@fluidframework/shared-object-base": "~2.111.0",
"@fluidframework/telemetry-utils": "~2.111.0",
"@fluidframework/tree": "~2.111.0",
"semver-ts": "^1.0.3"
}
},
"node_modules/@fluidframework/gitresources": {
"version": "7.0.1",
"resolved": "https://registry.npmjs.org/@fluidframework/gitresources/-/gitresources-7.0.1.tgz",
"integrity": "sha512-sFEdPL46Hz/xuP51nwT19JubSeb3fBBrNQXwnRLCcmaX+fXdxg7rkyVLTgue0swgdJ73Oh98eTYpxplkq+FSJA==",
"license": "MIT"
},
"node_modules/@fluidframework/id-compressor": {
"version": "2.111.0",
"resolved": "https://registry.npmjs.org/@fluidframework/id-compressor/-/id-compressor-2.111.0.tgz",
"integrity": "sha512-Iohzit9XM395urM+FsckTFLbgd6nSh8qnWt3GHMDfGjc5eUsbf91KNfTnDjKpPQe8PHUJ5tt6MVcTQmNh+jjew==",
"license": "MIT",
"dependencies": {
"@fluid-internal/client-utils": "~2.111.0",
"@fluidframework/core-interfaces": "~2.111.0",
"@fluidframework/core-utils": "~2.111.0",
"@fluidframework/telemetry-utils": "~2.111.0",
"@tylerbu/sorted-btree-es6": "^2.1.1",
"uuid": "^11.1.0"
}
},
"node_modules/@fluidframework/id-compressor/node_modules/uuid": {
"version": "11.1.1",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-11.1.1.tgz",
"integrity": "sha512-vIYxrBCC/N/K+Js3qSN88go7kIfNPssr/hHCesKCQNAjmgvYS2oqr69kIufEG+O4+PfezOH4EbIeHCfFov8ZgQ==",
"funding": [
"https://github.com/sponsors/broofa",
"https://github.com/sponsors/ctavan"
],
"license": "MIT",
"bin": {
"uuid": "dist/esm/bin/uuid"
}
},
"node_modules/@fluidframework/map": {
"version": "2.111.0",
"resolved": "https://registry.npmjs.org/@fluidframework/map/-/map-2.111.0.tgz",
"integrity": "sha512-brNu+AjZ9vOPOBboNOg9qWt96/74ggEQyUiOu1q30N0ikeykCAILzv4IX/dsJaX50dM7Rm5XR8Ziz/beSdE3Kw==",
"license": "MIT",
"dependencies": {
"@fluid-internal/client-utils": "~2.111.0",
"@fluidframework/core-interfaces": "~2.111.0",
"@fluidframework/core-utils": "~2.111.0",
"@fluidframework/datastore-definitions": "~2.111.0",
"@fluidframework/driver-definitions": "~2.111.0",
"@fluidframework/driver-utils": "~2.111.0",
"@fluidframework/runtime-definitions": "~2.111.0",
"@fluidframework/runtime-utils": "~2.111.0",
"@fluidframework/shared-object-base": "~2.111.0",
"@fluidframework/telemetry-utils": "~2.111.0",
"path-browserify": "^1.0.1"
}
},
"node_modules/@fluidframework/matrix": {
"version": "2.111.0",
"resolved": "https://registry.npmjs.org/@fluidframework/matrix/-/matrix-2.111.0.tgz",
"integrity": "sha512-M4l002LL/dS6NlhL85pma4G+nWp4ccFusQaULjoctSCwChFhrrymYxy1PNKjtKnr4X7LHdpAnFQo0ouh6z2qEQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@fluid-internal/client-utils": "~2.111.0",
"@fluidframework/core-interfaces": "~2.111.0",
"@fluidframework/core-utils": "~2.111.0",
"@fluidframework/datastore-definitions": "~2.111.0",
"@fluidframework/driver-definitions": "~2.111.0",
"@fluidframework/driver-utils": "~2.111.0",
"@fluidframework/merge-tree": "~2.111.0",
"@fluidframework/runtime-definitions": "~2.111.0",
"@fluidframework/runtime-utils": "~2.111.0",
"@fluidframework/shared-object-base": "~2.111.0",
"@fluidframework/telemetry-utils": "~2.111.0",
"@tiny-calc/nano": "0.0.0-alpha.5",
"double-ended-queue": "^2.1.0-0"
}
},
"node_modules/@fluidframework/merge-tree": {
"version": "2.111.0",
"resolved": "https://registry.npmjs.org/@fluidframework/merge-tree/-/merge-tree-2.111.0.tgz",
"integrity": "sha512-RRJ1bVHVveQhr4POcoGb2BO+DYtVFACGuC2nNnooQCXQJnaHsQ5ABpF1Q4R3dA04esErdE2+2cJ8Q9324fvgdA==",
"license": "MIT",
"dependencies": {
"@fluid-internal/client-utils": "~2.111.0",
"@fluidframework/container-definitions": "~2.111.0",
"@fluidframework/core-interfaces": "~2.111.0",
"@fluidframework/core-utils": "~2.111.0",
"@fluidframework/datastore-definitions": "~2.111.0",
"@fluidframework/driver-definitions": "~2.111.0",
"@fluidframework/runtime-definitions": "~2.111.0",
"@fluidframework/runtime-utils": "~2.111.0",
"@fluidframework/shared-object-base": "~2.111.0",
"@fluidframework/telemetry-utils": "~2.111.0"
}
},
"node_modules/@fluidframework/odsp-client": {
"version": "2.111.0",
"resolved": "https://registry.npmjs.org/@fluidframework/odsp-client/-/odsp-client-2.111.0.tgz",
"integrity": "sha512-QyMJ8k06TgxO6uPCKWzEOhNDB6uD3QJZwSH4XeqZ8OhF3fvzJR5/wB9crD6jJZeD74Lo0QkQbJLn0bYWMNehlw==",
"license": "MIT",
"dependencies": {
"@fluid-internal/client-utils": "~2.111.0",
"@fluidframework/container-definitions": "~2.111.0",
"@fluidframework/container-loader": "~2.111.0",
"@fluidframework/core-interfaces": "~2.111.0",
"@fluidframework/core-utils": "~2.111.0",
"@fluidframework/driver-definitions": "~2.111.0",