-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
19651 lines (19651 loc) · 815 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": "researcher-pod-setup",
"version": "0.0.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "researcher-pod-setup",
"version": "0.0.1",
"license": "MIT",
"dependencies": {
"@inquirer/prompts": "^3.0.2",
"@inrupt/solid-client-authn-node": "^1.17.1",
"@solid/community-server": "^6.0.1",
"@treecg/versionawareldesinldp": "^0.2.2",
"commander": "^11.0.0",
"cross-fetch": "^4.0.0"
},
"bin": {
"researcher-pod-setup": "bin/index.js"
},
"devDependencies": {
"typescript": "^5.1.6"
}
},
"node_modules/@bergos/jsonparse": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/@bergos/jsonparse/-/jsonparse-1.4.1.tgz",
"integrity": "sha512-vXIT0nzZGX/+yMD5bx2VhTzc92H55tPoehh1BW/FZHOndWGFddrH3MAfdx39FRc7irABirW6EQaGxIJYV6CGuA==",
"engines": [
"node >= 0.2.0"
],
"dependencies": {
"buffer": "^6.0.3"
}
},
"node_modules/@colors/colors": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz",
"integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==",
"engines": {
"node": ">=0.1.90"
}
},
"node_modules/@comunica/actor-abstract-mediatyped": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-mediatyped/-/actor-abstract-mediatyped-2.8.2.tgz",
"integrity": "sha512-WXkvFfDjWSJw1KRknNtqOIC9cLc9Jg24ItHfpqQ9p4slq/448j2kOZEaxi0PhfDbw2wfUuF92nyo7tuajzSnSg==",
"dependencies": {
"@comunica/core": "^2.8.2",
"@comunica/types": "^2.8.2"
}
},
"node_modules/@comunica/actor-abstract-parse": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-parse/-/actor-abstract-parse-2.8.2.tgz",
"integrity": "sha512-ruFphf3Xil+oZGUJw2N0UF/E/Jo7v+mCER8RUiTJi/94etZSa7jEZ9wCZQNfZmmQy8X4cTJkls4ItSxyJ0yu2w==",
"dependencies": {
"@comunica/core": "^2.8.2",
"readable-stream": "^4.2.0"
}
},
"node_modules/@comunica/actor-abstract-path": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-path/-/actor-abstract-path-2.8.2.tgz",
"integrity": "sha512-d1VCl06T7JYDWTMYFNBNgUPJIrFaONPyESA9mQiWQzPiaJYXsV+TGe1l5emovJmvTolMNEGbQTt3UKc6hYIvnA==",
"dependencies": {
"@comunica/bindings-factory": "^2.7.0",
"@comunica/bus-query-operation": "^2.8.2",
"@comunica/context-entries": "^2.8.2",
"@comunica/core": "^2.8.2",
"@comunica/types": "^2.8.2",
"@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.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-source-to-destination/-/actor-context-preprocess-source-to-destination-2.8.2.tgz",
"integrity": "sha512-m/VAc8dXNuz2thZ7Ey7lnPlHfY5y68b6YNdTsGLX8XRJGT7v8xb8gL7p46KKSj6N+ywQg3pdExADUlmQFJGCuw==",
"dependencies": {
"@comunica/bus-context-preprocess": "^2.8.2",
"@comunica/context-entries": "^2.8.2",
"@comunica/core": "^2.8.2",
"@comunica/types": "^2.8.2"
}
},
"node_modules/@comunica/actor-dereference-fallback": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-fallback/-/actor-dereference-fallback-2.8.2.tgz",
"integrity": "sha512-XDEUN54hyX/phxzJQFbkemoO92CIwa30YHys6bQV1mtfy8oINqfpabFXNr9VSsMO3CpQE5FsfJfFWUD8vdcSVw==",
"dependencies": {
"@comunica/bus-dereference": "^2.8.2",
"@comunica/core": "^2.8.2"
}
},
"node_modules/@comunica/actor-dereference-file": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-file/-/actor-dereference-file-2.8.2.tgz",
"integrity": "sha512-dzF4nQlNulno49xOG6O7n/O4wWKNAtEgqgU1UOSpmn2grxKB8FwtAZmWpIzGK9NlpX+xllehXpisvTivgrluTA==",
"dependencies": {
"@comunica/bus-dereference": "^2.8.2",
"@comunica/core": "^2.8.2"
}
},
"node_modules/@comunica/actor-dereference-http": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-http/-/actor-dereference-http-2.8.2.tgz",
"integrity": "sha512-3yaGR+3o+t1avUYmgeZzvYqQvQ1fMGn2Ji0FrYuEwbx9Wty0kCr7jRjDYB4VyagwPx6lzQy0RVoNb6LbUNSiXA==",
"dependencies": {
"@comunica/bus-dereference": "^2.8.2",
"@comunica/bus-http": "^2.8.2",
"@comunica/core": "^2.8.2",
"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.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-rdf-parse/-/actor-dereference-rdf-parse-2.8.2.tgz",
"integrity": "sha512-/jMUiTUuizIF5fCrZtbCYv4HWTU762TsYEIf6slmr8DyRum8DKzSL/ototK50bkush9xltFL/Kmsvhp0fBBFVQ==",
"dependencies": {
"@comunica/bus-dereference": "^2.8.2",
"@comunica/bus-dereference-rdf": "^2.8.2",
"@comunica/bus-rdf-parse": "^2.8.2"
}
},
"node_modules/@comunica/actor-hash-bindings-sha1": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-hash-bindings-sha1/-/actor-hash-bindings-sha1-2.8.2.tgz",
"integrity": "sha512-JwBY+edoVkTleEMhQjws/ojOSTtVvO1PY0jTfBHh8V5d8c5V6XodJs7AshMbnss3/qu/6T11aIUSyyBDepkyJA==",
"dependencies": {
"@comunica/bus-hash-bindings": "^2.8.2",
"@comunica/core": "^2.8.2",
"canonicalize": "^2.0.0",
"hash.js": "^1.1.7",
"rdf-string": "^1.6.1"
}
},
"node_modules/@comunica/actor-http-fetch": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-fetch/-/actor-http-fetch-2.8.2.tgz",
"integrity": "sha512-XKPWbWihnBGPn3fnf7kxq2wVENDbCtTOl+9hFgsspoh1ew8fc0Fri85iE5dE5Z82s5PfW/oxQBFZVeiwKHwAZw==",
"dependencies": {
"@comunica/bus-http": "^2.8.2",
"@comunica/context-entries": "^2.8.2",
"@comunica/mediatortype-time": "^2.8.2",
"abort-controller": "^3.0.0",
"cross-fetch": "^4.0.0"
}
},
"node_modules/@comunica/actor-http-proxy": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-proxy/-/actor-http-proxy-2.8.2.tgz",
"integrity": "sha512-OOFWfWVdi5mpRRgrNIqFx+C1wv3ulcDaBYojzbQdktwl6Vsz79Hlh3EHsgyTVxKHLjuhGeb/3aNbj2cFMVlF+A==",
"dependencies": {
"@comunica/bus-http": "^2.8.2",
"@comunica/context-entries": "^2.8.2",
"@comunica/mediatortype-time": "^2.8.2",
"@comunica/types": "^2.8.2"
}
},
"node_modules/@comunica/actor-http-wayback": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-wayback/-/actor-http-wayback-2.8.2.tgz",
"integrity": "sha512-rTb0srYPLAv2jGLXEyT8bFbqiasUSpQiC/Mu3eezJQ4lXLe30gmiaiw+eBiHmNeX1TAp4By2IAZbxgB/+Z3lCw==",
"dependencies": {
"@comunica/bus-http": "^2.8.2",
"@comunica/context-entries": "^2.8.2",
"@comunica/core": "^2.8.2",
"cross-fetch": "^4.0.0",
"stream-to-string": "^1.2.0"
}
},
"node_modules/@comunica/actor-init-query": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-init-query/-/actor-init-query-2.8.2.tgz",
"integrity": "sha512-1px7oiblcR4S7P2YCcXhAOI4DzfhSJXjj+pN5zmsa6Yb2RjDLeeiQIUstlzmUVC/kl5lFm6Zf50ohM5Ws/+CQA==",
"dependencies": {
"@comunica/actor-http-proxy": "^2.8.2",
"@comunica/bus-context-preprocess": "^2.8.2",
"@comunica/bus-http-invalidate": "^2.8.2",
"@comunica/bus-init": "^2.8.2",
"@comunica/bus-optimize-query-operation": "^2.8.2",
"@comunica/bus-query-operation": "^2.8.2",
"@comunica/bus-query-parse": "^2.8.2",
"@comunica/bus-query-result-serialize": "^2.8.2",
"@comunica/context-entries": "^2.8.2",
"@comunica/core": "^2.8.2",
"@comunica/logger-pretty": "^2.8.2",
"@comunica/runner": "^2.8.2",
"@comunica/types": "^2.8.2",
"@rdfjs/types": "*",
"@types/yargs": "^17.0.13",
"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.6.2"
},
"optionalDependencies": {
"process": "^0.11.10"
}
},
"node_modules/@comunica/actor-optimize-query-operation-bgp-to-join": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-bgp-to-join/-/actor-optimize-query-operation-bgp-to-join-2.8.2.tgz",
"integrity": "sha512-ECTnXBeDc3d2mgTYobuPGpxh0jRyALVsju4gcwpu50IADcQWmoZ//fvscIsYfnly35MLL3QpxNOO4FeaLtB6yw==",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^2.8.2",
"@comunica/core": "^2.8.2",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-optimize-query-operation-join-bgp": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-join-bgp/-/actor-optimize-query-operation-join-bgp-2.8.2.tgz",
"integrity": "sha512-hDnimckCwvDOFTCeqQR+iR+seDoJRvl53MgiXxlywmspJNpCKM9azTE2Q4Xii1VmijsZDCEt55yb/9nQClNrTw==",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^2.8.2",
"@comunica/core": "^2.8.2",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-optimize-query-operation-join-connected": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-join-connected/-/actor-optimize-query-operation-join-connected-2.8.2.tgz",
"integrity": "sha512-KEjOHKS4M0LIuJZHRWSED1vKc7rEzmJ+T1ByqyTDvURfnUEl0I6KOcfYfpiWELfSliOSFBLqirwlrJvSaYN8Ug==",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^2.8.2",
"@comunica/core": "^2.8.2",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-ask": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-ask/-/actor-query-operation-ask-2.8.2.tgz",
"integrity": "sha512-6yZzrWZI0ie7jLZczEzMEs+bEeW7DdneATCutXyaYntPLepEMpQ8LjopZ0yeZdZwrRPWK29FJhoBeORvpeSTbw==",
"dependencies": {
"@comunica/bus-query-operation": "^2.8.2",
"@comunica/core": "^2.8.2",
"@comunica/types": "^2.8.2",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-bgp-join": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-join/-/actor-query-operation-bgp-join-2.8.2.tgz",
"integrity": "sha512-zbsBwMiJV+I1ZsHnpc5fP6IWZTzwGQ5kd0JhtMN/pY3VLvd655gQEGplMG1EkyOsPEF3QvtSmROHPe5ONkuE5g==",
"dependencies": {
"@comunica/bus-query-operation": "^2.8.2",
"@comunica/core": "^2.8.2",
"@comunica/types": "^2.8.2",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-construct": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-construct/-/actor-query-operation-construct-2.8.2.tgz",
"integrity": "sha512-/TkTk1RPf6QrDVShP5QHr83dpEBPA7yh611rWrL+NKRJhd5tJVdaWH7adAcKZBCXt+w5a458GdbRMF+W4FPwuQ==",
"dependencies": {
"@comunica/bus-query-operation": "^2.8.2",
"@comunica/core": "^2.8.2",
"@comunica/types": "^2.8.2",
"@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.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-describe-subject/-/actor-query-operation-describe-subject-2.8.2.tgz",
"integrity": "sha512-DR0fCKXXPEt3xQF7A4jiPZ2rBgdOxOundGMxNKj5ns/9DWUra1i5s/uz2GE/fpon8kCfvabLwQApfFPZvkb/qw==",
"dependencies": {
"@comunica/actor-query-operation-union": "^2.8.2",
"@comunica/bus-query-operation": "^2.8.2",
"@comunica/core": "^2.8.2",
"@comunica/types": "^2.8.2",
"asynciterator": "^3.8.1",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-distinct-hash": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-distinct-hash/-/actor-query-operation-distinct-hash-2.8.2.tgz",
"integrity": "sha512-9qoFXs81ttTb4W4jBmY4P3VCm5tF9+EDgDwGST9GKo+n2fz1iBid/8xpVBO1SHxuhmK0Cz3we5FJUBjMT43UKQ==",
"dependencies": {
"@comunica/bus-hash-bindings": "^2.8.2",
"@comunica/bus-query-operation": "^2.8.2",
"@comunica/core": "^2.8.2",
"@comunica/types": "^2.8.2",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-extend": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-extend/-/actor-query-operation-extend-2.8.2.tgz",
"integrity": "sha512-ZwE/4vYgcvMmG/4yZCIJVkbmlwWxh+JwsExpv4dWON3hoyZwXcYYHKvl7+vt8uOwV+Pl9EYQrmtfCCRUPzWs4Q==",
"dependencies": {
"@comunica/bindings-factory": "^2.7.0",
"@comunica/bus-query-operation": "^2.8.2",
"@comunica/core": "^2.8.2",
"@comunica/types": "^2.8.2",
"sparqlalgebrajs": "^4.2.0",
"sparqlee": "^3.0.0"
}
},
"node_modules/@comunica/actor-query-operation-filter-sparqlee": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-filter-sparqlee/-/actor-query-operation-filter-sparqlee-2.8.2.tgz",
"integrity": "sha512-Kk145p/6qNWWzIJIMwwt9d7th32ro38nt6kbQmVZl1ER1G7UKjTrTK9R4v2b5120NYWHgQS/f59WinBkMl+STg==",
"dependencies": {
"@comunica/bindings-factory": "^2.7.0",
"@comunica/bus-query-operation": "^2.8.2",
"@comunica/core": "^2.8.2",
"@comunica/types": "^2.8.2",
"sparqlalgebrajs": "^4.2.0",
"sparqlee": "^3.0.0"
}
},
"node_modules/@comunica/actor-query-operation-from-quad": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-from-quad/-/actor-query-operation-from-quad-2.8.2.tgz",
"integrity": "sha512-4TYrvE5b7Es1nOIZyZSgj7U+SHyBXudBEQPlN5JaUONMKsp4WqqDjCa/e0KoH1MMcZspJ+xACeWokdaBhb2mRA==",
"dependencies": {
"@comunica/bus-query-operation": "^2.8.2",
"@comunica/core": "^2.8.2",
"@comunica/types": "^2.8.2",
"@rdfjs/types": "*",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-group": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-group/-/actor-query-operation-group-2.8.2.tgz",
"integrity": "sha512-nGMxuclLphGa00BI3sXu8LjxcISjCSuHKG4htSNvhp5aJqKNtmEyc3a/egSVG5X/2qtDxMUyIajFA1rBgmpxHQ==",
"dependencies": {
"@comunica/bindings-factory": "^2.7.0",
"@comunica/bus-hash-bindings": "^2.8.2",
"@comunica/bus-query-operation": "^2.8.2",
"@comunica/core": "^2.8.2",
"@comunica/types": "^2.8.2",
"@rdfjs/types": "*",
"asynciterator": "^3.8.1",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.2.0",
"sparqlee": "^3.0.0"
}
},
"node_modules/@comunica/actor-query-operation-join": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-join/-/actor-query-operation-join-2.8.2.tgz",
"integrity": "sha512-ldabBzZe5C247R4f00h44EvCz9vi9nqNT3BrEboTlQT3WJWtfLGFa6Uag2SYvGdg2LF5KtQfPUdG0+ueGIideQ==",
"dependencies": {
"@comunica/bus-query-operation": "^2.8.2",
"@comunica/bus-rdf-join": "^2.8.2",
"@comunica/core": "^2.8.2",
"@comunica/types": "^2.8.2",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-leftjoin": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-leftjoin/-/actor-query-operation-leftjoin-2.8.2.tgz",
"integrity": "sha512-bHg5LndIRWGwMtRp9/neXkkEa2Q8YQwoKJ/icE2ujncjrdir+1MXw0ti41FXWtOZL06iPkPkkf0/myukojWV5A==",
"dependencies": {
"@comunica/bus-query-operation": "^2.8.2",
"@comunica/bus-rdf-join": "^2.8.2",
"@comunica/core": "^2.8.2",
"@comunica/types": "^2.8.2",
"sparqlalgebrajs": "^4.2.0",
"sparqlee": "^3.0.0"
}
},
"node_modules/@comunica/actor-query-operation-minus": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-minus/-/actor-query-operation-minus-2.8.2.tgz",
"integrity": "sha512-WBew+Z10Wg6u8Yictc1q7rg6GJz+C52AaM/RfNTdFdl5PS/GAz+iXQti07owHRaVhRRw5eV7r7cN7tdxLfw+5w==",
"dependencies": {
"@comunica/bus-query-operation": "^2.8.2",
"@comunica/bus-rdf-join": "^2.8.2",
"@comunica/core": "^2.8.2",
"@comunica/types": "^2.8.2",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-nop": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-nop/-/actor-query-operation-nop-2.8.2.tgz",
"integrity": "sha512-c328daI6fDAKvm2X4MP7N2gGNQAJPVWPzR8w7i4chzpJbvgV2kMpNlqc091yuwwcntB+OzzBQTNfTMQhWaB1sQ==",
"dependencies": {
"@comunica/bindings-factory": "^2.7.0",
"@comunica/bus-query-operation": "^2.8.2",
"@comunica/core": "^2.8.2",
"@comunica/metadata": "^2.8.2",
"@comunica/types": "^2.8.2",
"asynciterator": "^3.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-orderby-sparqlee": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-orderby-sparqlee/-/actor-query-operation-orderby-sparqlee-2.8.2.tgz",
"integrity": "sha512-YDRAqOeEYJMYhiEZgr1pxvH2zi2SCOa1lhq2rs8s6pqiejXfIPv6kEi3uWUw5/hDM3EHLMf7MSwB3xX1X6WS4Q==",
"dependencies": {
"@comunica/bus-query-operation": "^2.8.2",
"@comunica/core": "^2.8.2",
"@comunica/types": "^2.8.2",
"asynciterator": "^3.8.1",
"sparqlalgebrajs": "^4.2.0",
"sparqlee": "^3.0.0"
}
},
"node_modules/@comunica/actor-query-operation-path-alt": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-alt/-/actor-query-operation-path-alt-2.8.2.tgz",
"integrity": "sha512-jO0RevAES//4GP8rEnqNkN1SEB/cWVU+ybQ5mF11ZbYrnzf89E+ozQgZb9v+ztNt6I56af1a2IIr+EBjMQDVww==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.8.2",
"@comunica/actor-query-operation-union": "^2.8.2",
"@comunica/bus-query-operation": "^2.8.2",
"@comunica/types": "^2.8.2",
"asynciterator": "^3.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-path-inv": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-inv/-/actor-query-operation-path-inv-2.8.2.tgz",
"integrity": "sha512-Di/nR4SDAcAKdjOjPJLXfyv4XT0Z+eo+yQYXHROZBusU2p2YFQ2yjeDxURt1xIIiwffMYkaKNpmDcE3leDgkXw==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.8.2",
"@comunica/bus-query-operation": "^2.8.2",
"@comunica/types": "^2.8.2",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-path-link": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-link/-/actor-query-operation-path-link-2.8.2.tgz",
"integrity": "sha512-5chsX6GhZ9uZYukGsNs2FcImgwzPr3D3bDTebdTYbH8TxVsW17PfmpmCGw4pXv0sMLcOCBv6i7x+bVw1aB0keQ==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.8.2",
"@comunica/bus-query-operation": "^2.8.2",
"@comunica/types": "^2.8.2",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-path-nps": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-nps/-/actor-query-operation-path-nps-2.8.2.tgz",
"integrity": "sha512-6LZL2Aj1F8zjjjeW45qag+Y9iH1YixWJweQBhmx3R8LkqkSATGao/BuL4sjpLJWzudb3HzSpvTC5ZsuVnRD2Tw==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.8.2",
"@comunica/bus-query-operation": "^2.8.2",
"@comunica/types": "^2.8.2",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-path-one-or-more": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-one-or-more/-/actor-query-operation-path-one-or-more-2.8.2.tgz",
"integrity": "sha512-vlrYHIYyjLzJfxe3C00I/SWF7hB7kz0KIdyltZhFhROQdrqPkXPDdWDXz+JLyONwsEQMOAgYeHRMgr3jdJwynQ==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.8.2",
"@comunica/bindings-factory": "^2.7.0",
"@comunica/bus-query-operation": "^2.8.2",
"@comunica/types": "^2.8.2",
"asynciterator": "^3.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-path-seq": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-seq/-/actor-query-operation-path-seq-2.8.2.tgz",
"integrity": "sha512-/P2Dv8Ik2PXWZB5aMQ8Av5hnJMvBzDNM0M7dD/KBgCwP+LBtQEi9Y1a9xK/MdFK1hO6a6ushI7F7MT8Hoqwp1g==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.8.2",
"@comunica/bus-query-operation": "^2.8.2",
"@comunica/bus-rdf-join": "^2.8.2",
"@comunica/types": "^2.8.2",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-path-zero-or-more": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-zero-or-more/-/actor-query-operation-path-zero-or-more-2.8.2.tgz",
"integrity": "sha512-F7lfSJ2ItWKeyC8boXB8Nh3ABCXSbMieCb9eLdl9MOQw+/y/pumidcepH5wruqktc0FBTBAS8jRijFS8W0QQAA==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.8.2",
"@comunica/bindings-factory": "^2.7.0",
"@comunica/bus-query-operation": "^2.8.2",
"@comunica/types": "^2.8.2",
"asynciterator": "^3.8.1",
"rdf-string": "^1.6.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-path-zero-or-one": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-zero-or-one/-/actor-query-operation-path-zero-or-one-2.8.2.tgz",
"integrity": "sha512-Ws8psxUsYFIqyfZxjKRZz9UxfU1OOS86N07XPOp7IP25lDEfAIJh75sX+Z+0/oUnCBUJU0r5KlOaLJpJUVwRbw==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.8.2",
"@comunica/bindings-factory": "^2.7.0",
"@comunica/bus-query-operation": "^2.8.2",
"@comunica/metadata": "^2.8.2",
"@comunica/types": "^2.8.2",
"asynciterator": "^3.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-project": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-project/-/actor-query-operation-project-2.8.2.tgz",
"integrity": "sha512-atp+p4Q2RlGbrG48xRrdifmgxmIop2AFIf+TM9PlbiagTCHKNLTvivg2O7kdrfxrsR/pEnD3vMTxGYhhsxniaA==",
"dependencies": {
"@comunica/bus-query-operation": "^2.8.2",
"@comunica/core": "^2.8.2",
"@comunica/data-factory": "^2.7.0",
"@comunica/types": "^2.8.2",
"@rdfjs/types": "*",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-quadpattern": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-quadpattern/-/actor-query-operation-quadpattern-2.8.2.tgz",
"integrity": "sha512-9amnAhlp+9OoS2fRnincOXJBOl7V6jrvOuLykQJjgd3/wpyiZa/PdDfr2hzt5sIImeYNrULGLGjZOz+rQPBN2g==",
"dependencies": {
"@comunica/bindings-factory": "^2.7.0",
"@comunica/bus-query-operation": "^2.8.2",
"@comunica/bus-rdf-resolve-quad-pattern": "^2.8.2",
"@comunica/context-entries": "^2.8.2",
"@comunica/core": "^2.8.2",
"@comunica/types": "^2.8.2",
"@rdfjs/types": "*",
"asynciterator": "^3.8.1",
"rdf-data-factory": "^1.1.1",
"rdf-string": "^1.6.3",
"rdf-terms": "^1.11.0",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-reduced-hash": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-reduced-hash/-/actor-query-operation-reduced-hash-2.8.2.tgz",
"integrity": "sha512-/OxlPet2mcYA3ELQn/6OR7SVvz1QkaJ6WX2wBFQZJ/tn605qa1siVF6U0e8F533uq9vrdKJtW7/ToWgp15Gp8Q==",
"dependencies": {
"@comunica/bus-hash-bindings": "^2.8.2",
"@comunica/bus-query-operation": "^2.8.2",
"@comunica/core": "^2.8.2",
"@comunica/types": "^2.8.2",
"@types/lru-cache": "^7.0.0",
"lru-cache": "^10.0.0",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-reduced-hash/node_modules/lru-cache": {
"version": "10.0.1",
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.1.tgz",
"integrity": "sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g==",
"engines": {
"node": "14 || >=16.14"
}
},
"node_modules/@comunica/actor-query-operation-service": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-service/-/actor-query-operation-service-2.8.2.tgz",
"integrity": "sha512-xrsT3eVa6PLqQyZ/r5iUa4L0eBnzHN98U0JKJL0qQSTL2kUioBJu6wO351EU/Puj1mR4FtoK4+0JGKipktqxaw==",
"dependencies": {
"@comunica/bindings-factory": "^2.7.0",
"@comunica/bus-query-operation": "^2.8.2",
"@comunica/context-entries": "^2.8.2",
"@comunica/core": "^2.8.2",
"@comunica/metadata": "^2.8.2",
"@comunica/types": "^2.8.2",
"asynciterator": "^3.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-slice": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-slice/-/actor-query-operation-slice-2.8.2.tgz",
"integrity": "sha512-ZnUlZOKJUEGt39CQpQiltNF2YYihe2mNx6SOG9cwwGS9Yp0fIZkXZhIASRcO15DyHjwWf5sRoWjLTu6/mbq7dw==",
"dependencies": {
"@comunica/bus-query-operation": "^2.8.2",
"@comunica/context-entries": "^2.8.2",
"@comunica/core": "^2.8.2",
"@comunica/types": "^2.8.2",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-sparql-endpoint": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-sparql-endpoint/-/actor-query-operation-sparql-endpoint-2.8.2.tgz",
"integrity": "sha512-ylxblXucIMPiSCsefF8XnAK/pkFZu/Hxrtnwp1Q2ci+kBrJm+f1sAWadTJSCa2sosnCIREy8joz4lahaGJqCbg==",
"dependencies": {
"@comunica/bindings-factory": "^2.7.0",
"@comunica/bus-http": "^2.8.2",
"@comunica/bus-query-operation": "^2.8.2",
"@comunica/bus-rdf-resolve-quad-pattern": "^2.8.2",
"@comunica/bus-rdf-update-quads": "^2.8.2",
"@comunica/context-entries": "^2.8.2",
"@comunica/core": "^2.8.2",
"@comunica/mediatortype-httprequests": "^2.8.2",
"@comunica/metadata": "^2.8.2",
"@comunica/types": "^2.8.2",
"@rdfjs/types": "*",
"asynciterator": "^3.8.1",
"fetch-sparql-endpoint": "^4.0.0",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-union": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-union/-/actor-query-operation-union-2.8.2.tgz",
"integrity": "sha512-0RaKfwG98tS2ZZKgIMIC14Y43Iwosc0QhxTn2lKGcFY57wL/OYOmr2HK6r61C7efGw1HOLNLT140HQXajZYrsg==",
"dependencies": {
"@comunica/bus-query-operation": "^2.8.2",
"@comunica/core": "^2.8.2",
"@comunica/metadata": "^2.8.2",
"@comunica/types": "^2.8.2",
"@rdfjs/types": "*",
"asynciterator": "^3.8.1",
"rdf-terms": "^1.11.0",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-update-add-rewrite": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-add-rewrite/-/actor-query-operation-update-add-rewrite-2.8.2.tgz",
"integrity": "sha512-/0i28jX6Kt4NKys+AJWWo+CZ546aEO0wPvveLNvh4umul7EtbNLrqTStQeDkrf3P5yGqJw8aBs+70YjdYAJ0bg==",
"dependencies": {
"@comunica/bus-query-operation": "^2.8.2",
"@comunica/core": "^2.8.2",
"@comunica/types": "^2.8.2",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-update-clear": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-clear/-/actor-query-operation-update-clear-2.8.2.tgz",
"integrity": "sha512-/o87RKhOoe8KFhjezF4khv7v35mmQoSYIcBvT9baC09nnt8hHMGGnvEKH4Qq2/lqZOymABVBVreXYRfHALXFLw==",
"dependencies": {
"@comunica/bus-query-operation": "^2.8.2",
"@comunica/bus-rdf-update-quads": "^2.8.2",
"@comunica/core": "^2.8.2",
"@comunica/types": "^2.8.2",
"@rdfjs/types": "*",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-update-compositeupdate": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-compositeupdate/-/actor-query-operation-update-compositeupdate-2.8.2.tgz",
"integrity": "sha512-eW3pHI/g8ccb/k1P5pHVU78ABmDPN6WHbBVgRnYGpMRqMxPqBR3xnZFcmwbISRrRlu3cKFjK7KwQhAK0OjHXdA==",
"dependencies": {
"@comunica/bus-query-operation": "^2.8.2",
"@comunica/core": "^2.8.2",
"@comunica/types": "^2.8.2",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-update-copy-rewrite": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-copy-rewrite/-/actor-query-operation-update-copy-rewrite-2.8.2.tgz",
"integrity": "sha512-BwCjRvETJsdsq1ebEUwtLjbKi5zIwFX9nLThQ/xozz1/qj/fy2tQKo/krmq6O34iybc5Kr49b6u+UmTwoiFwmg==",
"dependencies": {
"@comunica/bus-query-operation": "^2.8.2",
"@comunica/core": "^2.8.2",
"@comunica/types": "^2.8.2",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-update-create": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-create/-/actor-query-operation-update-create-2.8.2.tgz",
"integrity": "sha512-3Cn52DSlaFx/QOoj/jO3i9x0axSrroFu3a3cNAL+4AXogQivC9XRNJ9lhmMvFu1LotmybtfnfAx/AEY7LKk3/w==",
"dependencies": {
"@comunica/bus-query-operation": "^2.8.2",
"@comunica/bus-rdf-update-quads": "^2.8.2",
"@comunica/core": "^2.8.2",
"@comunica/types": "^2.8.2",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-update-deleteinsert": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-deleteinsert/-/actor-query-operation-update-deleteinsert-2.8.2.tgz",
"integrity": "sha512-jGzPtx56gU0+Nhnh9BEZ0KD4GFy5r5261xQmPTHOwQncamKWpOdDQlHkCjMe1/T0K109EkwyKHyTt5tmk5iJVQ==",
"dependencies": {
"@comunica/actor-query-operation-construct": "^2.8.2",
"@comunica/bindings-factory": "^2.7.0",
"@comunica/bus-query-operation": "^2.8.2",
"@comunica/bus-rdf-update-quads": "^2.8.2",
"@comunica/core": "^2.8.2",
"@comunica/types": "^2.8.2",
"@rdfjs/types": "*",
"asynciterator": "^3.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-update-drop": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-drop/-/actor-query-operation-update-drop-2.8.2.tgz",
"integrity": "sha512-YVL/c1obz9l0zDP0/gyGvmh7G7V1YqNhU2xIA5FPHyBIENliZ3YpXdTMw/KAXYg0qiQbjS5VKZc70lypZXTusw==",
"dependencies": {
"@comunica/bus-query-operation": "^2.8.2",
"@comunica/bus-rdf-update-quads": "^2.8.2",
"@comunica/core": "^2.8.2",
"@comunica/types": "^2.8.2",
"@rdfjs/types": "*",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-update-load": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-load/-/actor-query-operation-update-load-2.8.2.tgz",
"integrity": "sha512-fg8kyHl6ie2jcPImpmkHryJwhqTxy18PViyZkznoQndBLvdbkp4Nbp2MEI/w6xuE7dlgxNr6EXDgzHAQBTKufw==",
"dependencies": {
"@comunica/bus-query-operation": "^2.8.2",
"@comunica/bus-rdf-update-quads": "^2.8.2",
"@comunica/context-entries": "^2.8.2",
"@comunica/core": "^2.8.2",
"@comunica/types": "^2.8.2",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-update-move-rewrite": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-move-rewrite/-/actor-query-operation-update-move-rewrite-2.8.2.tgz",
"integrity": "sha512-SkrfiQVYKYK1zYBnKiSAL7V5App5aGvVifvw+QwQv7QJ6GXVk8s8xrVH6abBJx4aS+ugDTE0utZW2zCawfalag==",
"dependencies": {
"@comunica/bus-query-operation": "^2.8.2",
"@comunica/core": "^2.8.2",
"@comunica/types": "^2.8.2",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-values": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-values/-/actor-query-operation-values-2.8.2.tgz",
"integrity": "sha512-7iABct5rUgPTUkclCV9fRL23GPdp/864ZsfDraBSXwsuHaosqNfxUcwNNENlboysanpNGn7Wtg0WEGgNChO8UA==",
"dependencies": {
"@comunica/bindings-factory": "^2.7.0",
"@comunica/bus-query-operation": "^2.8.2",
"@comunica/core": "^2.8.2",
"@comunica/metadata": "^2.8.2",
"@comunica/types": "^2.8.2",
"asynciterator": "^3.8.1",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-parse-graphql": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-parse-graphql/-/actor-query-parse-graphql-2.8.2.tgz",
"integrity": "sha512-XDyGti12+Sz9iQkO1tzoM7rO4FlcTSN2S3FgheJXIb+Ebx5L9j/31xYvROvM1XIEKTWYex1F7mAOJzwVGalqLQ==",
"dependencies": {
"@comunica/bus-query-parse": "^2.8.2",
"@comunica/context-entries": "^2.8.2",
"@comunica/core": "^2.8.2",
"graphql-to-sparql": "^3.0.1"
}
},
"node_modules/@comunica/actor-query-parse-sparql": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-parse-sparql/-/actor-query-parse-sparql-2.8.2.tgz",
"integrity": "sha512-qH2fVHTX93UwtIeQKL95G/dWsLD3ThMA683hbfv7uZZwQv+SEE0MvJKcz+jcZlqtt5NWlIPPKz7TM/vL2Cf+Bg==",
"dependencies": {
"@comunica/bus-query-parse": "^2.8.2",
"@comunica/core": "^2.8.2",
"@types/sparqljs": "^3.1.3",
"sparqlalgebrajs": "^4.2.0",
"sparqljs": "^3.7.1"
}
},
"node_modules/@comunica/actor-query-result-serialize-json": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-json/-/actor-query-result-serialize-json-2.8.2.tgz",
"integrity": "sha512-NFPEFSibNGAnQbbyY2xjwauCq+DpvakMsDZItIWDKtQ78G9oYUc3u9vsR19sfkBFhNrVUeN/n697QLISRiOdYg==",
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.8.2",
"@comunica/types": "^2.8.2",
"rdf-string": "^1.6.1",
"readable-stream": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-rdf": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-rdf/-/actor-query-result-serialize-rdf-2.8.2.tgz",
"integrity": "sha512-mhhTW6ksmj5MYxaNMAEarsP3sFlCJ3qci8hgqAIW/nr8aXsZua+6xIcgyJb42Go3UhOTCJYwyQJCXAPm8s6d5g==",
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.8.2",
"@comunica/bus-rdf-serialize": "^2.8.2",
"@comunica/core": "^2.8.2",
"@comunica/types": "^2.8.2"
}
},
"node_modules/@comunica/actor-query-result-serialize-simple": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-simple/-/actor-query-result-serialize-simple-2.8.2.tgz",
"integrity": "sha512-EIzCuH7iOkKT2etXcW2nV7UoX6LBLISsXksGb5YnCewS6LrTjzud9ZjBANjdAZZGneHkjp/vuS3Inkx6jJjLIQ==",
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.8.2",
"@comunica/types": "^2.8.2",
"@rdfjs/types": "*",
"rdf-string": "^1.6.3",
"readable-stream": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-sparql-csv": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-sparql-csv/-/actor-query-result-serialize-sparql-csv-2.8.2.tgz",
"integrity": "sha512-haCiP2Tr8vJsR60ebigW5Pv35aJXtN1c4hckpjIHsyHX0b0Qa08wnb2KNgP0K+MPRbu83siaju7PcPVi1rDHNQ==",
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.8.2",
"@comunica/types": "^2.8.2",
"@rdfjs/types": "*",
"readable-stream": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-sparql-json": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-sparql-json/-/actor-query-result-serialize-sparql-json-2.8.2.tgz",
"integrity": "sha512-XtiSEuzCnmP2IkTlW2pQRQ/ErLZWgPcSw/J/cgS1Bg4RKl5q/njvZv2fhqsY3a79OAgRptMySVLmzcNIW59+qw==",
"dependencies": {
"@comunica/bus-http": "^2.8.2",
"@comunica/bus-http-invalidate": "^2.8.2",
"@comunica/bus-query-result-serialize": "^2.8.2",
"@comunica/core": "^2.8.2",
"@comunica/types": "^2.8.2",
"@rdfjs/types": "*",
"readable-stream": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-sparql-tsv": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-sparql-tsv/-/actor-query-result-serialize-sparql-tsv-2.8.2.tgz",
"integrity": "sha512-off09bx4VvyKMtkAXmaB+Y0iFqsnBPL8/QDN1kdDeqnJNY9n0fV5XPwB9C1XBZjqAmzcdzS3+Ac9hyOkhr1wrw==",
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.8.2",
"@comunica/types": "^2.8.2",
"@rdfjs/types": "*",
"rdf-string-ttl": "^1.3.2",
"readable-stream": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-sparql-xml": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-sparql-xml/-/actor-query-result-serialize-sparql-xml-2.8.2.tgz",
"integrity": "sha512-fNpMstEwEnl7JsLmh9mA5mznuPnfrv3r2vezzmUmTXRFN4IrxjeSQvXY2oSUygQuWqLBoybsGxPxX9VhncHbgA==",
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.8.2",
"@comunica/types": "^2.8.2",
"@rdfjs/types": "*",
"readable-stream": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-stats": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-stats/-/actor-query-result-serialize-stats-2.8.2.tgz",
"integrity": "sha512-DLO5mZ+Y8AVrKpK4W0gERUUM5b++i9GwPUqvLIps9wG+RPNWV4TbthY9PQmdG7WLefJBfHOiUSia6v86BTsk0g==",
"dependencies": {
"@comunica/bus-http": "^2.8.2",
"@comunica/bus-http-invalidate": "^2.8.2",
"@comunica/bus-query-result-serialize": "^2.8.2",
"@comunica/core": "^2.8.2",
"@comunica/types": "^2.8.2",
"process": "^0.11.10",
"readable-stream": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-table": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-table/-/actor-query-result-serialize-table-2.8.2.tgz",
"integrity": "sha512-IK/LUY055QDqCFBXGLIl8nyd3cVcy3Y9adBYCxRDvAIdHqKZi/wBdZA35RuXfaWAbFRARABtJVJM7b7ekUzKJg==",
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.8.2",
"@comunica/types": "^2.8.2",
"@rdfjs/types": "*",
"rdf-data-factory": "^1.1.1",
"rdf-string": "^1.6.3",
"rdf-terms": "^1.11.0",
"readable-stream": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-tree": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-tree/-/actor-query-result-serialize-tree-2.8.2.tgz",
"integrity": "sha512-oDG+84J6yAV7rnZWzWy9r7RDCjrWnVoBwYuieJBi3TrhQ1p5Ed69Jp5dpvqgeBVC6xANnEoUvPzk0QYLfEvyUA==",
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.8.2",
"@comunica/context-entries": "^2.8.2",
"@comunica/core": "^2.8.2",
"@comunica/types": "^2.8.2",
"readable-stream": "^4.2.0",
"sparqljson-to-tree": "^3.0.1"
}
},
"node_modules/@comunica/actor-rdf-join-entries-sort-cardinality": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-join-entries-sort-cardinality/-/actor-rdf-join-entries-sort-cardinality-2.8.2.tgz",
"integrity": "sha512-zQiGXcmu9obRxa0H1zEdEQ3oIjnnw9v0GZtafNSoYc/0GJxMJvo9phmAdAsftB6Yf9SvpqKIcbPhMIS1QiXD5A==",
"dependencies": {
"@comunica/bus-rdf-join-entries-sort": "^2.8.2",
"@comunica/core": "^2.8.2"
}
},
"node_modules/@comunica/actor-rdf-join-inner-hash": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-join-inner-hash/-/actor-rdf-join-inner-hash-2.8.2.tgz",
"integrity": "sha512-RtGD8MwO+syomGv190qygAoU57e1+F343FJViwHF7WiI1T68cN5Gx2hBUj+cQZAILBsSgJPgT3XgDfsTjqT02g==",
"dependencies": {
"@comunica/bus-rdf-join": "^2.8.2",
"@comunica/mediatortype-join-coefficients": "^2.8.2",
"@comunica/types": "^2.8.2",
"asyncjoin": "^1.1.1"
}
},
"node_modules/@comunica/actor-rdf-join-inner-multi-bind": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-join-inner-multi-bind/-/actor-rdf-join-inner-multi-bind-2.8.2.tgz",
"integrity": "sha512-VFSXZb4Zk6zkQVItcvpSLWEu28j7CqHB6fmTz9SNjYO7PaQjrCnDwMV/xdtx7ZdfIiJi3gCafI3tOAONW8ZzEw==",
"dependencies": {
"@comunica/bus-query-operation": "^2.8.2",
"@comunica/bus-rdf-join": "^2.8.2",
"@comunica/bus-rdf-join-entries-sort": "^2.8.2",
"@comunica/context-entries": "^2.8.2",
"@comunica/mediatortype-join-coefficients": "^2.8.2",
"@comunica/types": "^2.8.2",
"asynciterator": "^3.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-rdf-join-inner-multi-empty": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-join-inner-multi-empty/-/actor-rdf-join-inner-multi-empty-2.8.2.tgz",
"integrity": "sha512-g59jfrYutnHO3Q/X4Sj+8vHbqH04Jn5PiddH0OjFFEgdEHkXOTqZ5E4y8X9MxxqN1Ca3E54fMCweyFLfdmN+gA==",
"dependencies": {
"@comunica/bus-rdf-join": "^2.8.2",
"@comunica/mediatortype-join-coefficients": "^2.8.2",
"@comunica/metadata": "^2.8.2",
"@comunica/types": "^2.8.2",
"asynciterator": "^3.8.1"
}
},
"node_modules/@comunica/actor-rdf-join-inner-multi-smallest": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-join-inner-multi-smallest/-/actor-rdf-join-inner-multi-smallest-2.8.2.tgz",
"integrity": "sha512-heMn9G6mhufKGx8PCA74Hul3FoQjqDxtERp88rFqKwK2qU+UNNKD+FWcT/yHs5hajgD2upWNn9q4wxoqX+1XPw==",
"dependencies": {
"@comunica/bus-query-operation": "^2.8.2",
"@comunica/bus-rdf-join": "^2.8.2",
"@comunica/bus-rdf-join-entries-sort": "^2.8.2",
"@comunica/mediatortype-join-coefficients": "^2.8.2",
"@comunica/types": "^2.8.2",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-rdf-join-inner-nestedloop": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-join-inner-nestedloop/-/actor-rdf-join-inner-nestedloop-2.8.2.tgz",
"integrity": "sha512-BborQRbSwNco40mLdP2SY383KLWKdwloBTXb6hUvkmvASDRNLrX39ouBbHWnEm17EO73O4mN8Gkfkse+hr9kMg==",
"dependencies": {
"@comunica/bus-rdf-join": "^2.8.2",
"@comunica/mediatortype-join-coefficients": "^2.8.2",
"@comunica/types": "^2.8.2",
"asyncjoin": "^1.1.1"
}
},
"node_modules/@comunica/actor-rdf-join-inner-none": {
"version": "2.8.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-join-inner-none/-/actor-rdf-join-inner-none-2.8.2.tgz",
"integrity": "sha512-eHS+n2hhM+0tFjqXULfSbnVJgx0NIIwTH6sdoxqIp8ARgJT2Z3IAZuFrE69BrOrhgjnJntSTmE+Jphid907KGg==",
"dependencies": {
"@comunica/bindings-factory": "^2.7.0",
"@comunica/bus-rdf-join": "^2.8.2",
"@comunica/mediatortype-join-coefficients": "^2.8.2",
"@comunica/metadata": "^2.8.2",
"asynciterator": "^3.8.1"
}
},
"node_modules/@comunica/actor-rdf-join-inner-single": {