-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage-lock.json
More file actions
9403 lines (9403 loc) · 374 KB
/
package-lock.json
File metadata and controls
9403 lines (9403 loc) · 374 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": "css-mashlib",
"version": "1.2.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "css-mashlib",
"version": "1.2.1",
"license": "MIT",
"dependencies": {
"@solid/community-server": "^7.1.3",
"mashlib": "^1.11.1"
}
},
"node_modules/@aws-crypto/sha256-browser": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/@aws-crypto/sha256-browser/-/sha256-browser-5.2.0.tgz",
"integrity": "sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw==",
"license": "Apache-2.0",
"dependencies": {
"@aws-crypto/sha256-js": "^5.2.0",
"@aws-crypto/supports-web-crypto": "^5.2.0",
"@aws-crypto/util": "^5.2.0",
"@aws-sdk/types": "^3.222.0",
"@aws-sdk/util-locate-window": "^3.0.0",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.6.2"
}
},
"node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-2.2.0.tgz",
"integrity": "sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==",
"license": "Apache-2.0",
"dependencies": {
"tslib": "^2.6.2"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-2.2.0.tgz",
"integrity": "sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==",
"license": "Apache-2.0",
"dependencies": {
"@smithy/is-array-buffer": "^2.2.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-2.3.0.tgz",
"integrity": "sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==",
"license": "Apache-2.0",
"dependencies": {
"@smithy/util-buffer-from": "^2.2.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-crypto/sha256-js": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/@aws-crypto/sha256-js/-/sha256-js-5.2.0.tgz",
"integrity": "sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA==",
"license": "Apache-2.0",
"dependencies": {
"@aws-crypto/util": "^5.2.0",
"@aws-sdk/types": "^3.222.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
}
},
"node_modules/@aws-crypto/supports-web-crypto": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/@aws-crypto/supports-web-crypto/-/supports-web-crypto-5.2.0.tgz",
"integrity": "sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg==",
"license": "Apache-2.0",
"dependencies": {
"tslib": "^2.6.2"
}
},
"node_modules/@aws-crypto/util": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/@aws-crypto/util/-/util-5.2.0.tgz",
"integrity": "sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "^3.222.0",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.6.2"
}
},
"node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-2.2.0.tgz",
"integrity": "sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==",
"license": "Apache-2.0",
"dependencies": {
"tslib": "^2.6.2"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-2.2.0.tgz",
"integrity": "sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==",
"license": "Apache-2.0",
"dependencies": {
"@smithy/is-array-buffer": "^2.2.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-2.3.0.tgz",
"integrity": "sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==",
"license": "Apache-2.0",
"dependencies": {
"@smithy/util-buffer-from": "^2.2.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/client-ses": {
"version": "3.876.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/client-ses/-/client-ses-3.876.0.tgz",
"integrity": "sha512-h0lzV71jCVabjJ040QZpnndiu498xxM7xScnNlFGVY9AG9GvjqH7fAqT1TiT+jc6IRXGCHgBIdmyKWQHCoEFiw==",
"license": "Apache-2.0",
"dependencies": {
"@aws-crypto/sha256-browser": "5.2.0",
"@aws-crypto/sha256-js": "5.2.0",
"@aws-sdk/core": "3.876.0",
"@aws-sdk/credential-provider-node": "3.876.0",
"@aws-sdk/middleware-host-header": "3.873.0",
"@aws-sdk/middleware-logger": "3.876.0",
"@aws-sdk/middleware-recursion-detection": "3.873.0",
"@aws-sdk/middleware-user-agent": "3.876.0",
"@aws-sdk/region-config-resolver": "3.873.0",
"@aws-sdk/types": "3.862.0",
"@aws-sdk/util-endpoints": "3.873.0",
"@aws-sdk/util-user-agent-browser": "3.873.0",
"@aws-sdk/util-user-agent-node": "3.876.0",
"@smithy/config-resolver": "^4.1.5",
"@smithy/core": "^3.8.0",
"@smithy/fetch-http-handler": "^5.1.1",
"@smithy/hash-node": "^4.0.5",
"@smithy/invalid-dependency": "^4.0.5",
"@smithy/middleware-content-length": "^4.0.5",
"@smithy/middleware-endpoint": "^4.1.18",
"@smithy/middleware-retry": "^4.1.19",
"@smithy/middleware-serde": "^4.0.9",
"@smithy/middleware-stack": "^4.0.5",
"@smithy/node-config-provider": "^4.1.4",
"@smithy/node-http-handler": "^4.1.1",
"@smithy/protocol-http": "^5.1.3",
"@smithy/smithy-client": "^4.4.10",
"@smithy/types": "^4.3.2",
"@smithy/url-parser": "^4.0.5",
"@smithy/util-base64": "^4.0.0",
"@smithy/util-body-length-browser": "^4.0.0",
"@smithy/util-body-length-node": "^4.0.0",
"@smithy/util-defaults-mode-browser": "^4.0.26",
"@smithy/util-defaults-mode-node": "^4.0.26",
"@smithy/util-endpoints": "^3.0.7",
"@smithy/util-middleware": "^4.0.5",
"@smithy/util-retry": "^4.0.7",
"@smithy/util-utf8": "^4.0.0",
"@smithy/util-waiter": "^4.0.7",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/client-sso": {
"version": "3.876.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.876.0.tgz",
"integrity": "sha512-Vf0PMF7HVpvllrfPODnBZmlz6kT/y2AvOt1RQG3+qD0VrHWzShc5nwgRZ+yyP3xkKVhZsQ3sJapfZTFnjqMOYA==",
"license": "Apache-2.0",
"dependencies": {
"@aws-crypto/sha256-browser": "5.2.0",
"@aws-crypto/sha256-js": "5.2.0",
"@aws-sdk/core": "3.876.0",
"@aws-sdk/middleware-host-header": "3.873.0",
"@aws-sdk/middleware-logger": "3.876.0",
"@aws-sdk/middleware-recursion-detection": "3.873.0",
"@aws-sdk/middleware-user-agent": "3.876.0",
"@aws-sdk/region-config-resolver": "3.873.0",
"@aws-sdk/types": "3.862.0",
"@aws-sdk/util-endpoints": "3.873.0",
"@aws-sdk/util-user-agent-browser": "3.873.0",
"@aws-sdk/util-user-agent-node": "3.876.0",
"@smithy/config-resolver": "^4.1.5",
"@smithy/core": "^3.8.0",
"@smithy/fetch-http-handler": "^5.1.1",
"@smithy/hash-node": "^4.0.5",
"@smithy/invalid-dependency": "^4.0.5",
"@smithy/middleware-content-length": "^4.0.5",
"@smithy/middleware-endpoint": "^4.1.18",
"@smithy/middleware-retry": "^4.1.19",
"@smithy/middleware-serde": "^4.0.9",
"@smithy/middleware-stack": "^4.0.5",
"@smithy/node-config-provider": "^4.1.4",
"@smithy/node-http-handler": "^4.1.1",
"@smithy/protocol-http": "^5.1.3",
"@smithy/smithy-client": "^4.4.10",
"@smithy/types": "^4.3.2",
"@smithy/url-parser": "^4.0.5",
"@smithy/util-base64": "^4.0.0",
"@smithy/util-body-length-browser": "^4.0.0",
"@smithy/util-body-length-node": "^4.0.0",
"@smithy/util-defaults-mode-browser": "^4.0.26",
"@smithy/util-defaults-mode-node": "^4.0.26",
"@smithy/util-endpoints": "^3.0.7",
"@smithy/util-middleware": "^4.0.5",
"@smithy/util-retry": "^4.0.7",
"@smithy/util-utf8": "^4.0.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/core": {
"version": "3.876.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.876.0.tgz",
"integrity": "sha512-sVFBFkdoPOPyY13NaXO1E/R9O5J6ixzHnnRbqrbXYM2QQgLNPTKIiRtmVEuVoFV9YULg+/aKm7caix8m468y9w==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "3.862.0",
"@aws-sdk/xml-builder": "3.873.0",
"@smithy/core": "^3.8.0",
"@smithy/node-config-provider": "^4.1.4",
"@smithy/property-provider": "^4.0.5",
"@smithy/protocol-http": "^5.1.3",
"@smithy/signature-v4": "^5.1.3",
"@smithy/smithy-client": "^4.4.10",
"@smithy/types": "^4.3.2",
"@smithy/util-base64": "^4.0.0",
"@smithy/util-body-length-browser": "^4.0.0",
"@smithy/util-middleware": "^4.0.5",
"@smithy/util-utf8": "^4.0.0",
"fast-xml-parser": "5.2.5",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/credential-provider-env": {
"version": "3.876.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.876.0.tgz",
"integrity": "sha512-cof7lwp2AlrAfRs0pt4W2KMS2VMBvEmpcti1UOFfSJIqkn+cyJliMJ8LHg22GI+kUexjvxdAqSbf3M7OHvEW+w==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/core": "3.876.0",
"@aws-sdk/types": "3.862.0",
"@smithy/property-provider": "^4.0.5",
"@smithy/types": "^4.3.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/credential-provider-http": {
"version": "3.876.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.876.0.tgz",
"integrity": "sha512-wzmef2NBp2+X1l8D4Q8hx1G8oI3+WdvLdPev9VnVpRYZxYGRWVPl++wvCBsCn/ZL0mdWopPkhHA3kFexQhMzvg==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/core": "3.876.0",
"@aws-sdk/types": "3.862.0",
"@smithy/fetch-http-handler": "^5.1.1",
"@smithy/node-http-handler": "^4.1.1",
"@smithy/property-provider": "^4.0.5",
"@smithy/protocol-http": "^5.1.3",
"@smithy/smithy-client": "^4.4.10",
"@smithy/types": "^4.3.2",
"@smithy/util-stream": "^4.2.4",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/credential-provider-ini": {
"version": "3.876.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.876.0.tgz",
"integrity": "sha512-JHbW6fqnJsVjGHCyko7B0NVPT1nEAPxkM3CGjUcVGsHgJBkxOLVCMQqTRyHcDdeHR2qeojlLoOHRz97xIHQjYw==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/core": "3.876.0",
"@aws-sdk/credential-provider-env": "3.876.0",
"@aws-sdk/credential-provider-http": "3.876.0",
"@aws-sdk/credential-provider-process": "3.876.0",
"@aws-sdk/credential-provider-sso": "3.876.0",
"@aws-sdk/credential-provider-web-identity": "3.876.0",
"@aws-sdk/nested-clients": "3.876.0",
"@aws-sdk/types": "3.862.0",
"@smithy/credential-provider-imds": "^4.0.7",
"@smithy/property-provider": "^4.0.5",
"@smithy/shared-ini-file-loader": "^4.0.5",
"@smithy/types": "^4.3.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/credential-provider-node": {
"version": "3.876.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.876.0.tgz",
"integrity": "sha512-eHbNt1+Hi43e8ANnwf6toapLSxfMiyGq459y3Uh6i7NBOiWWKEsOVcgOfUC3RCoqeikxovt1tFM2cEElWUIOhg==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/credential-provider-env": "3.876.0",
"@aws-sdk/credential-provider-http": "3.876.0",
"@aws-sdk/credential-provider-ini": "3.876.0",
"@aws-sdk/credential-provider-process": "3.876.0",
"@aws-sdk/credential-provider-sso": "3.876.0",
"@aws-sdk/credential-provider-web-identity": "3.876.0",
"@aws-sdk/types": "3.862.0",
"@smithy/credential-provider-imds": "^4.0.7",
"@smithy/property-provider": "^4.0.5",
"@smithy/shared-ini-file-loader": "^4.0.5",
"@smithy/types": "^4.3.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/credential-provider-process": {
"version": "3.876.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.876.0.tgz",
"integrity": "sha512-SMX4OlHvspu3gF4hxe7WAnZFhxpiCye+WlBSVoWfW/i9XNhtrZS1JMr29MK34GlCTk9qO7FlRwds/Z5k7xPpHg==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/core": "3.876.0",
"@aws-sdk/types": "3.862.0",
"@smithy/property-provider": "^4.0.5",
"@smithy/shared-ini-file-loader": "^4.0.5",
"@smithy/types": "^4.3.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/credential-provider-sso": {
"version": "3.876.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.876.0.tgz",
"integrity": "sha512-iP5dz9XqwePbgnh7Bdrq5e1319JpCRKLyomUfHH1XVeXkIHmwIJdmTj1Upeo1J8L/5cLHmhXAN6CTN11bLo8SA==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/client-sso": "3.876.0",
"@aws-sdk/core": "3.876.0",
"@aws-sdk/token-providers": "3.876.0",
"@aws-sdk/types": "3.862.0",
"@smithy/property-provider": "^4.0.5",
"@smithy/shared-ini-file-loader": "^4.0.5",
"@smithy/types": "^4.3.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/credential-provider-web-identity": {
"version": "3.876.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.876.0.tgz",
"integrity": "sha512-q/XSCP1uae5aB9veM8zcm6Gqu6A4ckX9ZbhHgCzURXVJDwp+nINW1hM9vppMjGw3ND9Ibx/adR+KfTI0TDMzqw==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/core": "3.876.0",
"@aws-sdk/nested-clients": "3.876.0",
"@aws-sdk/types": "3.862.0",
"@smithy/property-provider": "^4.0.5",
"@smithy/types": "^4.3.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/middleware-host-header": {
"version": "3.873.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.873.0.tgz",
"integrity": "sha512-KZ/W1uruWtMOs7D5j3KquOxzCnV79KQW9MjJFZM/M0l6KI8J6V3718MXxFHsTjUE4fpdV6SeCNLV1lwGygsjJA==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "3.862.0",
"@smithy/protocol-http": "^5.1.3",
"@smithy/types": "^4.3.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/middleware-logger": {
"version": "3.876.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.876.0.tgz",
"integrity": "sha512-cpWJhOuMSyz9oV25Z/CMHCBTgafDCbv7fHR80nlRrPdPZ8ETNsahwRgltXP1QJJ8r3X/c1kwpOR7tc+RabVzNA==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "3.862.0",
"@smithy/types": "^4.3.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/middleware-recursion-detection": {
"version": "3.873.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.873.0.tgz",
"integrity": "sha512-OtgY8EXOzRdEWR//WfPkA/fXl0+WwE8hq0y9iw2caNyKPtca85dzrrZWnPqyBK/cpImosrpR1iKMYr41XshsCg==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "3.862.0",
"@smithy/protocol-http": "^5.1.3",
"@smithy/types": "^4.3.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/middleware-user-agent": {
"version": "3.876.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.876.0.tgz",
"integrity": "sha512-FR+8INfnbNv32QDQ5szxkWX6mB/QgezfNyx8LnAh1ErISZMmEFBxXXir+ZOfuV8vsmal1a6cy9qmnMNDaNnaNQ==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/core": "3.876.0",
"@aws-sdk/types": "3.862.0",
"@aws-sdk/util-endpoints": "3.873.0",
"@smithy/core": "^3.8.0",
"@smithy/protocol-http": "^5.1.3",
"@smithy/types": "^4.3.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/nested-clients": {
"version": "3.876.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/nested-clients/-/nested-clients-3.876.0.tgz",
"integrity": "sha512-R4TZrkM2gUElTsotk8mt3y7iLG8TNi1LL1wgVdEEWSLOYTaFyglGdoNBMtEeP7lmXilaTy00AbYF6BakJvSTHg==",
"license": "Apache-2.0",
"dependencies": {
"@aws-crypto/sha256-browser": "5.2.0",
"@aws-crypto/sha256-js": "5.2.0",
"@aws-sdk/core": "3.876.0",
"@aws-sdk/middleware-host-header": "3.873.0",
"@aws-sdk/middleware-logger": "3.876.0",
"@aws-sdk/middleware-recursion-detection": "3.873.0",
"@aws-sdk/middleware-user-agent": "3.876.0",
"@aws-sdk/region-config-resolver": "3.873.0",
"@aws-sdk/types": "3.862.0",
"@aws-sdk/util-endpoints": "3.873.0",
"@aws-sdk/util-user-agent-browser": "3.873.0",
"@aws-sdk/util-user-agent-node": "3.876.0",
"@smithy/config-resolver": "^4.1.5",
"@smithy/core": "^3.8.0",
"@smithy/fetch-http-handler": "^5.1.1",
"@smithy/hash-node": "^4.0.5",
"@smithy/invalid-dependency": "^4.0.5",
"@smithy/middleware-content-length": "^4.0.5",
"@smithy/middleware-endpoint": "^4.1.18",
"@smithy/middleware-retry": "^4.1.19",
"@smithy/middleware-serde": "^4.0.9",
"@smithy/middleware-stack": "^4.0.5",
"@smithy/node-config-provider": "^4.1.4",
"@smithy/node-http-handler": "^4.1.1",
"@smithy/protocol-http": "^5.1.3",
"@smithy/smithy-client": "^4.4.10",
"@smithy/types": "^4.3.2",
"@smithy/url-parser": "^4.0.5",
"@smithy/util-base64": "^4.0.0",
"@smithy/util-body-length-browser": "^4.0.0",
"@smithy/util-body-length-node": "^4.0.0",
"@smithy/util-defaults-mode-browser": "^4.0.26",
"@smithy/util-defaults-mode-node": "^4.0.26",
"@smithy/util-endpoints": "^3.0.7",
"@smithy/util-middleware": "^4.0.5",
"@smithy/util-retry": "^4.0.7",
"@smithy/util-utf8": "^4.0.0",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/region-config-resolver": {
"version": "3.873.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.873.0.tgz",
"integrity": "sha512-q9sPoef+BBG6PJnc4x60vK/bfVwvRWsPgcoQyIra057S/QGjq5VkjvNk6H8xedf6vnKlXNBwq9BaANBXnldUJg==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "3.862.0",
"@smithy/node-config-provider": "^4.1.4",
"@smithy/types": "^4.3.2",
"@smithy/util-config-provider": "^4.0.0",
"@smithy/util-middleware": "^4.0.5",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/token-providers": {
"version": "3.876.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.876.0.tgz",
"integrity": "sha512-iU08kaQbhXnY0CC2TBcr7y/2PqPwZP2CTWX/Rbq0NvhOyteikfh7ASC+bRfLUp0XMSHKvSb+w2dh8a0lvx4oHg==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/core": "3.876.0",
"@aws-sdk/nested-clients": "3.876.0",
"@aws-sdk/types": "3.862.0",
"@smithy/property-provider": "^4.0.5",
"@smithy/shared-ini-file-loader": "^4.0.5",
"@smithy/types": "^4.3.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/types": {
"version": "3.862.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.862.0.tgz",
"integrity": "sha512-Bei+RL0cDxxV+lW2UezLbCYYNeJm6Nzee0TpW0FfyTRBhH9C1XQh4+x+IClriXvgBnRquTMMYsmJfvx8iyLKrg==",
"license": "Apache-2.0",
"dependencies": {
"@smithy/types": "^4.3.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/util-endpoints": {
"version": "3.873.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.873.0.tgz",
"integrity": "sha512-YByHrhjxYdjKRf/RQygRK1uh0As1FIi9+jXTcIEX/rBgN8mUByczr2u4QXBzw7ZdbdcOBMOkPnLRjNOWW1MkFg==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "3.862.0",
"@smithy/types": "^4.3.2",
"@smithy/url-parser": "^4.0.5",
"@smithy/util-endpoints": "^3.0.7",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/util-locate-window": {
"version": "3.873.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/util-locate-window/-/util-locate-window-3.873.0.tgz",
"integrity": "sha512-xcVhZF6svjM5Rj89T1WzkjQmrTF6dpR2UvIHPMTnSZoNe6CixejPZ6f0JJ2kAhO8H+dUHwNBlsUgOTIKiK/Syg==",
"license": "Apache-2.0",
"dependencies": {
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@aws-sdk/util-user-agent-browser": {
"version": "3.873.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.873.0.tgz",
"integrity": "sha512-AcRdbK6o19yehEcywI43blIBhOCSo6UgyWcuOJX5CFF8k39xm1ILCjQlRRjchLAxWrm0lU0Q7XV90RiMMFMZtA==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "3.862.0",
"@smithy/types": "^4.3.2",
"bowser": "^2.11.0",
"tslib": "^2.6.2"
}
},
"node_modules/@aws-sdk/util-user-agent-node": {
"version": "3.876.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.876.0.tgz",
"integrity": "sha512-/ZIaeUt60JBdI0mNc7sZ8v3Tuzp8Pbe4gIAYnppGyF4KV8QA+Yu8tp2bGHfkKn150t1uvQ6P/4CwFfoGF34dzg==",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/middleware-user-agent": "3.876.0",
"@aws-sdk/types": "3.862.0",
"@smithy/node-config-provider": "^4.1.4",
"@smithy/types": "^4.3.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
},
"peerDependencies": {
"aws-crt": ">=1.0.0"
},
"peerDependenciesMeta": {
"aws-crt": {
"optional": true
}
}
},
"node_modules/@aws-sdk/xml-builder": {
"version": "3.873.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/xml-builder/-/xml-builder-3.873.0.tgz",
"integrity": "sha512-kLO7k7cGJ6KaHiExSJWojZurF7SnGMDHXRuQunFnEoD0n1yB6Lqy/S/zHiQ7oJnBhPr9q0TW9qFkrsZb1Uc54w==",
"license": "Apache-2.0",
"dependencies": {
"@smithy/types": "^4.3.2",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@babel/runtime": {
"version": "7.28.4",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.4.tgz",
"integrity": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==",
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@bergos/jsonparse": {
"version": "1.4.2",
"resolved": "https://registry.npmjs.org/@bergos/jsonparse/-/jsonparse-1.4.2.tgz",
"integrity": "sha512-qUt0QNJjvg4s1zk+AuLM6s/zcsQ8MvGn7+1f0vPuxvpCYa08YtTryuDInngbEyW5fNGGYe2znKt61RMGd5HnXg==",
"engines": [
"node >= 0.2.0"
],
"license": "MIT",
"dependencies": {
"buffer": "^6.0.3"
}
},
"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==",
"license": "MIT",
"engines": {
"node": ">=0.1.90"
}
},
"node_modules/@comunica/actor-abstract-mediatyped": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-mediatyped/-/actor-abstract-mediatyped-2.10.0.tgz",
"integrity": "sha512-0o6WBujsMnIVcwvRJv6Nj+kKPLZzqBS3On48rm01Rh9T1/My0E/buJMXwgcARKCfMonc2mJ9zxpPCh5ilGEU2A==",
"license": "MIT",
"dependencies": {
"@comunica/core": "^2.10.0",
"@comunica/types": "^2.10.0"
}
},
"node_modules/@comunica/actor-abstract-parse": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-parse/-/actor-abstract-parse-2.10.0.tgz",
"integrity": "sha512-0puCWF+y24EDOOAUUVVbC+tOf4UV+LzEbqi8T5v25jcVGCXyTqfra+bDywfrcv3adrVp18jLCJ46ycaH5xhy9Q==",
"license": "MIT",
"dependencies": {
"@comunica/core": "^2.10.0",
"readable-stream": "^4.4.2"
}
},
"node_modules/@comunica/actor-abstract-path": {
"version": "2.10.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-path/-/actor-abstract-path-2.10.1.tgz",
"integrity": "sha512-+k1ltuUuIyn4iUm5oRMObyt2zhu68h7ymzxuKU4ezATlgwfwj6EM7/3W2n2/gxjg9tcFMr5GC6aNnFQmq3Iuig==",
"license": "MIT",
"dependencies": {
"@comunica/bindings-factory": "^2.10.1",
"@comunica/bus-query-operation": "^2.10.1",
"@comunica/context-entries": "^2.10.0",
"@comunica/core": "^2.10.0",
"@comunica/types": "^2.10.0",
"@rdfjs/types": "*",
"asynciterator": "^3.8.1",
"rdf-data-factory": "^1.1.1",
"rdf-string": "^1.6.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-context-preprocess-source-to-destination": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-source-to-destination/-/actor-context-preprocess-source-to-destination-2.10.0.tgz",
"integrity": "sha512-sQc42Sd4cuVumZ9+PDnWBTBYneqCFShFliK8Et83GR3wBGzu9x0tS/M2o3e63sBbb6ZkWHyO5jl/O8AbrjhcTg==",
"license": "MIT",
"dependencies": {
"@comunica/bus-context-preprocess": "^2.10.0",
"@comunica/context-entries": "^2.10.0",
"@comunica/core": "^2.10.0",
"@comunica/types": "^2.10.0"
}
},
"node_modules/@comunica/actor-dereference-fallback": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-fallback/-/actor-dereference-fallback-2.10.0.tgz",
"integrity": "sha512-RSc/ScPdC7l13aZjz/6r4niWA8WDETbzuESQKKSWXi/HAlFOyOxdrDADdayVY2oyeZHIQibeNRtSi2ItzU7OPQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-dereference": "^2.10.0",
"@comunica/core": "^2.10.0"
}
},
"node_modules/@comunica/actor-dereference-file": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-file/-/actor-dereference-file-2.10.0.tgz",
"integrity": "sha512-WXfAyHm0M3+YbYEtLtasT6YHsrzTAevmH27ex8r51qKNj2LK74llpw4mSeea3xyjQR30jVnKBIJSxuSbN64Now==",
"license": "MIT",
"dependencies": {
"@comunica/bus-dereference": "^2.10.0",
"@comunica/core": "^2.10.0"
}
},
"node_modules/@comunica/actor-dereference-http": {
"version": "2.10.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-http/-/actor-dereference-http-2.10.2.tgz",
"integrity": "sha512-gdDo83W1TAgD2jx0kVbzZKzzt++L4Y4fbyTOH3duy6vx1EMGGZlNCp6I1uguepKEjNX4N0zhAcZzdJcv8A3XMA==",
"license": "MIT",
"dependencies": {
"@comunica/bus-dereference": "^2.10.0",
"@comunica/bus-http": "^2.10.2",
"@comunica/core": "^2.10.0",
"cross-fetch": "^4.0.0",
"relative-to-absolute-iri": "^1.0.7",
"stream-to-string": "^1.2.0"
}
},
"node_modules/@comunica/actor-dereference-rdf-parse": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-rdf-parse/-/actor-dereference-rdf-parse-2.10.0.tgz",
"integrity": "sha512-ANWL6Bv+2WHUjVRS7hfkOfVBNJs8xYZ9KHlgBOQ94CKtQZB9uSMjdb1hLp/cQjiDmFIWLn0+GM5Xi0KFwBkVAw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-dereference": "^2.10.0",
"@comunica/bus-dereference-rdf": "^2.10.0",
"@comunica/bus-rdf-parse": "^2.10.0"
}
},
"node_modules/@comunica/actor-hash-bindings-sha1": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-hash-bindings-sha1/-/actor-hash-bindings-sha1-2.10.0.tgz",
"integrity": "sha512-f981PcCiDWbdZfM1ct1v1q/VII14y18lo1enEdHB25SF0hCkzIDwh9IrfDfJDju5I6luSWNE/MYMMeAAmF9e3g==",
"license": "MIT",
"dependencies": {
"@comunica/bus-hash-bindings": "^2.10.0",
"@comunica/core": "^2.10.0",
"canonicalize": "^2.0.0",
"hash.js": "^1.1.7",
"rdf-string": "^1.6.1"
}
},
"node_modules/@comunica/actor-http-fetch": {
"version": "2.10.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-fetch/-/actor-http-fetch-2.10.2.tgz",
"integrity": "sha512-siHGx0TMVNb2gXvOroq0B3JE6uuS+4s+MsDkntqdBNVigwVYqLpNSKEaL5is8pputFfohJfDQY06lAHbfDNEcw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-http": "^2.10.2",
"@comunica/context-entries": "^2.10.0",
"@comunica/mediatortype-time": "^2.10.0",
"abort-controller": "^3.0.0",
"cross-fetch": "^4.0.0"
}
},
"node_modules/@comunica/actor-http-proxy": {
"version": "2.10.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-proxy/-/actor-http-proxy-2.10.2.tgz",
"integrity": "sha512-3yUF8BCh4nwq8J6NRILEsyNrQNStkE9ggJ7hYwRfA1XcMgz1pANNaWJ2P2TEKH1jNinr23bL3JeuUZCm9Kz9dA==",
"license": "MIT",
"dependencies": {
"@comunica/bus-http": "^2.10.2",
"@comunica/context-entries": "^2.10.0",
"@comunica/mediatortype-time": "^2.10.0",
"@comunica/types": "^2.10.0"
}
},
"node_modules/@comunica/actor-http-wayback": {
"version": "2.10.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-wayback/-/actor-http-wayback-2.10.2.tgz",
"integrity": "sha512-wjYNXRrJvMqt9paO3HawyM+O5/14ofSHFuMAwGr/UyZQ5pCSFkY0YPd+qp9y8C4xvypPgsvT3PtiRyKgjD4FWw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-http": "^2.10.2",
"@comunica/context-entries": "^2.10.0",
"@comunica/core": "^2.10.0",
"cross-fetch": "^4.0.0",
"stream-to-string": "^1.2.0"
}
},
"node_modules/@comunica/actor-init-query": {
"version": "2.10.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-init-query/-/actor-init-query-2.10.2.tgz",
"integrity": "sha512-7A4bXdKCjXRdUThvMOOyg+U17DPeBAsyDYz1SA8F4lPUR06NapcG5TmZF+YWUTN/2EG5fZPUnD3etKuPXreGUw==",
"license": "MIT",
"dependencies": {
"@comunica/actor-http-proxy": "^2.10.2",
"@comunica/bus-context-preprocess": "^2.10.0",
"@comunica/bus-http-invalidate": "^2.10.0",
"@comunica/bus-init": "^2.10.0",
"@comunica/bus-optimize-query-operation": "^2.10.0",
"@comunica/bus-query-operation": "^2.10.1",
"@comunica/bus-query-parse": "^2.10.0",
"@comunica/bus-query-result-serialize": "^2.10.0",
"@comunica/context-entries": "^2.10.0",
"@comunica/core": "^2.10.0",
"@comunica/logger-pretty": "^2.10.0",
"@comunica/runner": "^2.10.0",
"@comunica/types": "^2.10.0",
"@rdfjs/types": "*",
"@types/yargs": "^17.0.24",
"asynciterator": "^3.8.1",
"negotiate": "^1.0.1",
"rdf-quad": "^1.5.0",
"rdf-string": "^1.6.1",
"sparqlalgebrajs": "^4.2.0",
"streamify-string": "^1.0.1",
"yargs": "^17.7.2"
},
"optionalDependencies": {
"process": "^0.11.10"
}
},
"node_modules/@comunica/actor-optimize-query-operation-bgp-to-join": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-bgp-to-join/-/actor-optimize-query-operation-bgp-to-join-2.10.0.tgz",
"integrity": "sha512-M9vwM4a3VQA/ir8Q7eGRNzzx52u6RJFIXBW8p+Zkn+zv+4fsket3zLYJGhJU7dcvaSXcOi68rDP/r8KfgNXr4Q==",
"license": "MIT",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^2.10.0",
"@comunica/core": "^2.10.0",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-optimize-query-operation-join-bgp": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-join-bgp/-/actor-optimize-query-operation-join-bgp-2.10.0.tgz",
"integrity": "sha512-tzZojWPbWn/S0DZGjGfV90ZRJVWT/yX3DKGgZ1ur33U5TW8n/fBQxHNMPCLu0GkMQ1dyx6bU+ekILTqm+21Jyw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^2.10.0",
"@comunica/core": "^2.10.0",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-optimize-query-operation-join-connected": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-join-connected/-/actor-optimize-query-operation-join-connected-2.10.0.tgz",
"integrity": "sha512-RsbKIAxX1HyoR/AUzqIV++dTcLiEElRIVDHYTaXVVvGgHECYdh9s+oc8cvv/lDbLVpfnc6P9C9BTAfrqOjKkhA==",
"license": "MIT",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^2.10.0",
"@comunica/core": "^2.10.0",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-ask": {
"version": "2.10.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-ask/-/actor-query-operation-ask-2.10.1.tgz",
"integrity": "sha512-7oktqE4fkMhi6Hs9XCcwwoZRsEismVqJZ5wp9lXXOPaxnHEiFyj5gb/B6baCstoCvCt6LcU8fVvfHSitbFCpeQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-query-operation": "^2.10.1",
"@comunica/core": "^2.10.0",
"@comunica/types": "^2.10.0",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-bgp-join": {
"version": "2.10.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-join/-/actor-query-operation-bgp-join-2.10.1.tgz",
"integrity": "sha512-eNpnvgFyKlZEHkMzubYL8ndADSsAQH4rwXvh22CGnf0FwyndHr6TEpmE6j77m9vXiSJ/lda0U3Zv4vIXvtREOw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-query-operation": "^2.10.1",
"@comunica/core": "^2.10.0",
"@comunica/types": "^2.10.0",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-construct": {
"version": "2.10.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-construct/-/actor-query-operation-construct-2.10.1.tgz",
"integrity": "sha512-S+Nt1+1psv01QRnfytZjiog2NBNHIbjr7XIv+MO3p6aVmLCoZ6lmjxSGNdbX+EmcGr7tbbafXK5z3zRM+ke8Mw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-query-operation": "^2.10.1",
"@comunica/core": "^2.10.0",
"@comunica/types": "^2.10.0",
"@rdfjs/types": "*",
"asynciterator": "^3.8.1",
"rdf-data-factory": "^1.1.1",
"rdf-terms": "^1.11.0",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-describe-subject": {
"version": "2.10.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-describe-subject/-/actor-query-operation-describe-subject-2.10.1.tgz",
"integrity": "sha512-E8i0M6haJ5iZVeHMn5PbvA4G+l87mcZKqIxVpYAnJVpD667F74Dkx3IMbk+ohRmyRmnkOEmztUrjeyixHHzUEQ==",
"license": "MIT",
"dependencies": {
"@comunica/actor-query-operation-union": "^2.10.1",
"@comunica/bus-query-operation": "^2.10.1",
"@comunica/core": "^2.10.0",
"@comunica/types": "^2.10.0",
"asynciterator": "^3.8.1",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-distinct-hash": {
"version": "2.10.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-distinct-hash/-/actor-query-operation-distinct-hash-2.10.1.tgz",
"integrity": "sha512-exvJbgcJ0Pe4EGbLJD5LuGpvaGcFeckCxwB5pyd9OewNke+tLLP7nbEjB8KFEPpCO9LE7zt4faB1HvpJdEHQKQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-hash-bindings": "^2.10.0",
"@comunica/bus-query-operation": "^2.10.1",
"@comunica/core": "^2.10.0",
"@comunica/types": "^2.10.0",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-extend": {
"version": "2.10.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-extend/-/actor-query-operation-extend-2.10.1.tgz",
"integrity": "sha512-wkZxUfDu8T5lXD+OFLItmjjbnEBqtv0z8pxVKgI/gX8mOeu5KcPWLH0dJODTWoIzIYrJhV25FmCgBks1rt6K8w==",
"license": "MIT",
"dependencies": {
"@comunica/bindings-factory": "^2.10.1",
"@comunica/bus-query-operation": "^2.10.1",
"@comunica/core": "^2.10.0",
"@comunica/expression-evaluator": "^2.10.0",
"@comunica/types": "^2.10.0",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-filter-sparqlee": {
"version": "2.10.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-filter-sparqlee/-/actor-query-operation-filter-sparqlee-2.10.1.tgz",
"integrity": "sha512-w2PnDNnlf+9B947ZdeSs7NpW9qGJjRiuODZYwhh0e6cx89GPDhEDVuJwawF6VP3m/oLcgXOAdif0Wwo3d8KNAA==",
"license": "MIT",
"dependencies": {
"@comunica/bindings-factory": "^2.10.1",
"@comunica/bus-query-operation": "^2.10.1",
"@comunica/core": "^2.10.0",
"@comunica/expression-evaluator": "^2.10.0",
"@comunica/types": "^2.10.0",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-from-quad": {
"version": "2.10.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-from-quad/-/actor-query-operation-from-quad-2.10.1.tgz",
"integrity": "sha512-7D4R8ONNJJPzoRu96dwIToOEk6/3O/T26FRzCqQKrbjFHNkX2v92KA/SiDzNz59VmDNWjYF1rsV31Ade6J89MA==",
"license": "MIT",
"dependencies": {
"@comunica/bus-query-operation": "^2.10.1",
"@comunica/core": "^2.10.0",
"@comunica/types": "^2.10.0",
"@rdfjs/types": "*",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-group": {
"version": "2.10.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-group/-/actor-query-operation-group-2.10.1.tgz",
"integrity": "sha512-Od5s9Vb6uDPzXa6OAUC1WSMF96spNPJI2Zqf0Ixejw4zCNevOK/VwHivYfF0vHIUZxjRrOl3Al1ZU9L8n5Wxlw==",
"license": "MIT",
"dependencies": {
"@comunica/bindings-factory": "^2.10.1",
"@comunica/bus-hash-bindings": "^2.10.0",
"@comunica/bus-query-operation": "^2.10.1",
"@comunica/core": "^2.10.0",