-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
8569 lines (8569 loc) · 379 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": "artifact-explorer",
"version": "1.0.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "artifact-explorer",
"version": "1.0.0",
"license": "MIT",
"dependencies": {
"@comunica/query-sparql": "^3.2.3",
"commander": "^12.1.0"
},
"devDependencies": {
"@rdfjs/types": "^1.1.0",
"typescript": "^5.2.2"
}
},
"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"
],
"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": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-mediatyped/-/actor-abstract-mediatyped-3.2.1.tgz",
"integrity": "sha512-OnPCwNiRtu/4MHIH/FYxD2b/SeHaWQGCnnB4iMQi3oDaztX36yi4EbeH1epa1NZcqLQ2ttxsZ8gtZmdZHpIfhA==",
"license": "MIT",
"dependencies": {
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1"
}
},
"node_modules/@comunica/actor-abstract-parse": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-parse/-/actor-abstract-parse-3.2.1.tgz",
"integrity": "sha512-ulAdp9J8L97FVPB/eGQRp9pG5HnL6wPAjVIwMi6pjmEKJrRGEyRwbT1OmwkL2fFQwWsNM+b4uwYS7EFzahNALg==",
"license": "MIT",
"dependencies": {
"@comunica/core": "^3.2.1",
"readable-stream": "^4.4.2"
}
},
"node_modules/@comunica/actor-abstract-path": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-path/-/actor-abstract-path-3.2.2.tgz",
"integrity": "sha512-jQLFegIoV28hugNY6NLWtK1ES9B2a7f+iIerW1QHYFmRvM/nhIQF3kda4dhGUUmwanrhv+rSpH3dJCXy/Xbzew==",
"license": "MIT",
"dependencies": {
"@comunica/bindings-factory": "^3.2.1",
"@comunica/bus-query-operation": "^3.2.2",
"@comunica/context-entries": "^3.2.1",
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"@rdfjs/types": "*",
"asynciterator": "^3.9.0",
"rdf-data-factory": "^1.1.1",
"rdf-string": "^1.6.1",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-context-preprocess-convert-shortcuts": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-convert-shortcuts/-/actor-context-preprocess-convert-shortcuts-3.2.1.tgz",
"integrity": "sha512-5MoNPBs4te42nOX37GX3GSM8uI7j85u7SX31ImqbZKBmI3J8mJ45XOAyvl/qHI8h6kQZJyOOgephmeSLTbqjuQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-context-preprocess": "^3.2.1",
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1"
}
},
"node_modules/@comunica/actor-context-preprocess-query-source-identify": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-query-source-identify/-/actor-context-preprocess-query-source-identify-3.2.2.tgz",
"integrity": "sha512-7EFYiOHVM8/zRhmWtAeoKY4X9SdmEOsLJ3b+jrqbt3KeLSEBp+LAtvcF1rgUyZfPYVd7BUUvCh21lU9bP5nFjw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-context-preprocess": "^3.2.1",
"@comunica/bus-http-invalidate": "^3.2.1",
"@comunica/bus-query-source-identify": "^3.2.2",
"@comunica/context-entries": "^3.2.1",
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"lru-cache": "^10.0.0"
}
},
"node_modules/@comunica/actor-context-preprocess-query-source-skolemize": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-query-source-skolemize/-/actor-context-preprocess-query-source-skolemize-3.2.1.tgz",
"integrity": "sha512-BumYqvf49TYXd03toWrx+BfKQiT+AB+KlC30TprzaK9D7DbFr5Iks8ln2hSTnjyrMDYp/ekFV0XWg7WOutq48A==",
"license": "MIT",
"dependencies": {
"@comunica/bus-context-preprocess": "^3.2.1",
"@comunica/context-entries": "^3.2.1",
"@comunica/core": "^3.2.1",
"@comunica/data-factory": "^3.1.0",
"@comunica/metadata": "^3.2.1",
"@comunica/types": "^3.2.1",
"@rdfjs/types": "*",
"asynciterator": "^3.9.0",
"rdf-data-factory": "^1.1.2",
"rdf-terms": "^1.11.0",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-context-preprocess-set-defaults": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-set-defaults/-/actor-context-preprocess-set-defaults-3.2.1.tgz",
"integrity": "sha512-f7vcut2xlrfJd3cKWw1eU0qdcGRScyE+n9MQMGl3YSyv2BMCOROTs47c+nkzKzGyv/DEp4vzOsSJz8SXqSJU5w==",
"license": "MIT",
"dependencies": {
"@comunica/bus-context-preprocess": "^3.2.1",
"@comunica/context-entries": "^3.2.1",
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-context-preprocess-source-to-destination": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-source-to-destination/-/actor-context-preprocess-source-to-destination-3.2.1.tgz",
"integrity": "sha512-iUO1XZW0b2mrOpAVDDAPwzk6rsogy7K3vGPpD8vtsvnQRSqTx0nB+jsOK9hLi4WENX4Zss/LM+RghGG9m9UdqA==",
"license": "MIT",
"dependencies": {
"@comunica/bus-context-preprocess": "^3.2.1",
"@comunica/context-entries": "^3.2.1",
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1"
}
},
"node_modules/@comunica/actor-dereference-fallback": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-fallback/-/actor-dereference-fallback-3.2.1.tgz",
"integrity": "sha512-ALsTVZLHAK8T6sQAOVg1TIHHkSsnrk1HtGFDYlIDFfo1ddQz7/x2Qx4gi2XWhF551Id0ynE1RU9r4yzast6YEQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-dereference": "^3.2.1",
"@comunica/core": "^3.2.1"
}
},
"node_modules/@comunica/actor-dereference-http": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-http/-/actor-dereference-http-3.2.1.tgz",
"integrity": "sha512-2npIOzWULOrAcWGnqw1UVlwe+o+txDV9VchOvsVOw88xwViz9zgKYcqXbEk5tTOo1qFEYG8nCdDo3InIHR7khw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-dereference": "^3.2.1",
"@comunica/bus-http": "^3.2.1",
"@comunica/core": "^3.2.1",
"@jeswr/stream-to-string": "^2.0.0",
"cross-fetch": "^4.0.0",
"relative-to-absolute-iri": "^1.0.7"
}
},
"node_modules/@comunica/actor-dereference-rdf-parse": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-rdf-parse/-/actor-dereference-rdf-parse-3.2.1.tgz",
"integrity": "sha512-gcnTjfgPgJLBW3zlD/npg+HXDeGpEQuwsKVq+mqzDZcPrRK3hzIo+oB+oxz9NBiTA/WsioIp0NckDF2kn4nNbg==",
"license": "MIT",
"dependencies": {
"@comunica/bus-dereference": "^3.2.1",
"@comunica/bus-dereference-rdf": "^3.2.1",
"@comunica/bus-rdf-parse": "^3.2.1"
}
},
"node_modules/@comunica/actor-hash-bindings-sha1": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-hash-bindings-sha1/-/actor-hash-bindings-sha1-3.2.1.tgz",
"integrity": "sha512-gX3gHJvkkv+YRToC8WM2hkoZn8qz6nQbgxpCM0xWeaOeQqdVdJNmKanAbs3AHfX6YUc6OWJMQ2FEge3tb1m1dw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-hash-bindings": "^3.2.1",
"@comunica/core": "^3.2.1",
"canonicalize": "^2.0.0",
"hash.js": "^1.1.7",
"rdf-string": "^1.6.1"
}
},
"node_modules/@comunica/actor-hash-quads-sha1": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-hash-quads-sha1/-/actor-hash-quads-sha1-3.2.1.tgz",
"integrity": "sha512-jcmfIolhbl/1qb5ymupPkWGbbEuR/BCUD/2+ooJAHzoZheB85bZ5cQvIki7hMUPDul5SP277zOzZEdiCjYqZtA==",
"license": "MIT",
"dependencies": {
"@comunica/bus-hash-quads": "^3.2.1",
"@comunica/core": "^3.2.1",
"hash.js": "^1.1.7",
"rdf-string": "^1.6.1"
}
},
"node_modules/@comunica/actor-http-fetch": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-fetch/-/actor-http-fetch-3.2.1.tgz",
"integrity": "sha512-eZevyLav7gCJLDXq1XYvcqmHwt1IFBE19mPbAnf26YG83TYm5KCKsIybU5EDYo+BQfNJPRidq5Ia3xxfrdrk/w==",
"license": "MIT",
"dependencies": {
"@comunica/bus-http": "^3.2.1",
"@comunica/context-entries": "^3.2.1",
"@comunica/mediatortype-time": "^3.2.1",
"abort-controller": "^3.0.0",
"cross-fetch": "^4.0.0"
}
},
"node_modules/@comunica/actor-http-proxy": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-proxy/-/actor-http-proxy-3.2.1.tgz",
"integrity": "sha512-C8SXzEIK9+lUTrpjByeGu5c0uWtic07pXsIvEzGCbu9ZvXeW5V5bs1jAZZaxi0ubClDcHrcrXbUnvAHGUAvlLg==",
"license": "MIT",
"dependencies": {
"@comunica/bus-http": "^3.2.1",
"@comunica/context-entries": "^3.2.1",
"@comunica/mediatortype-time": "^3.2.1",
"@comunica/types": "^3.2.1"
}
},
"node_modules/@comunica/actor-http-wayback": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-wayback/-/actor-http-wayback-3.2.1.tgz",
"integrity": "sha512-fQsQJyfzR6I3UMnwugZmQYEdDSluv6Xuw6bpP8ipk0yoChCClhEcXYR8DDefpX/7ESRYw/QkUko6ydI6ui5crA==",
"license": "MIT",
"dependencies": {
"@comunica/bus-http": "^3.2.1",
"@comunica/context-entries": "^3.2.1",
"@comunica/core": "^3.2.1",
"@jeswr/stream-to-string": "^2.0.0",
"cross-fetch": "^4.0.0"
}
},
"node_modules/@comunica/actor-init-query": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-init-query/-/actor-init-query-3.2.1.tgz",
"integrity": "sha512-g//SpfFqGj7Yj/xxSTfn3Lmbbrb0SVWPddk9ogAVqCS6VcLENB4wqQtTTg3eowbILxKUo5s1OFrwC1X1XS0ehw==",
"license": "MIT",
"dependencies": {
"@comunica/actor-http-proxy": "^3.2.1",
"@comunica/bus-http-invalidate": "^3.2.1",
"@comunica/bus-init": "^3.2.1",
"@comunica/bus-query-process": "^3.2.1",
"@comunica/bus-query-result-serialize": "^3.2.1",
"@comunica/context-entries": "^3.2.1",
"@comunica/core": "^3.2.1",
"@comunica/logger-pretty": "^3.2.1",
"@comunica/runner": "^3.2.1",
"@comunica/types": "^3.2.1",
"@rdfjs/types": "*",
"@types/yargs": "^17.0.24",
"asynciterator": "^3.9.0",
"negotiate": "^1.0.1",
"rdf-quad": "^1.5.0",
"readable-stream": "^4.5.2",
"yargs": "^17.7.2"
},
"optionalDependencies": {
"process": "^0.11.10"
}
},
"node_modules/@comunica/actor-optimize-query-operation-assign-sources-exhaustive": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-assign-sources-exhaustive/-/actor-optimize-query-operation-assign-sources-exhaustive-3.2.2.tgz",
"integrity": "sha512-CPYT5nilbMZ8LaEzd6l7hgt3hSnhdBZxNee+uVK7MpiKRoNz4YFQWn/AsqRxnsJRTIpgtPLX56ChPK0EiVdaIA==",
"license": "MIT",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^3.2.1",
"@comunica/bus-query-operation": "^3.2.2",
"@comunica/bus-rdf-update-quads": "^3.2.1",
"@comunica/context-entries": "^3.2.1",
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-bgp-to-join": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-bgp-to-join/-/actor-optimize-query-operation-bgp-to-join-3.2.1.tgz",
"integrity": "sha512-cU3ARCyfby90G4CxJ/hFRM51z8gKq1uxjcsomx8/bK++yCmuEoFLEC+JoDQe+bVLCUxveiEVbdzZEia59+Wq3w==",
"license": "MIT",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^3.2.1",
"@comunica/core": "^3.2.1",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-construct-distinct": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-construct-distinct/-/actor-optimize-query-operation-construct-distinct-3.2.1.tgz",
"integrity": "sha512-5/2r7+uIVwFHSvWkxfo3kFZyN/qXC4TlqeE/Fbens+fEjBgffKHENGzr75NPXb1MVscWDfVFwlC2i+67lm+2+w==",
"license": "MIT",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^3.2.1",
"@comunica/context-entries": "^3.2.1",
"@comunica/core": "^3.2.1",
"sparqlalgebrajs": "^4.3.8"
}
},
"node_modules/@comunica/actor-optimize-query-operation-describe-to-constructs-subject": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-describe-to-constructs-subject/-/actor-optimize-query-operation-describe-to-constructs-subject-3.2.1.tgz",
"integrity": "sha512-MuKqNcivdJ13LKtT4IR3QZMPsv4iJJ9Qhi+Ql1nw7vAGhEbf7DQpcFhVtsS1fRcWozfGxaL+zy3ifEK+Vzq5sQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^3.2.1",
"@comunica/core": "^3.2.1",
"rdf-data-factory": "^1.1.2",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-filter-pushdown": {
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-filter-pushdown/-/actor-optimize-query-operation-filter-pushdown-3.2.3.tgz",
"integrity": "sha512-VaK6OxqTFIzVZyNNvax8nfEIvLUyzevaNKz1LNTbqMHK1wXh9qb3WDqgcx04JksWdhRa+mleqiYA823ty4PQdw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^3.2.1",
"@comunica/bus-query-operation": "^3.2.2",
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"@rdfjs/types": "*",
"rdf-terms": "^1.11.0",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-group-sources": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-group-sources/-/actor-optimize-query-operation-group-sources-3.2.2.tgz",
"integrity": "sha512-q6QVjb2157QcGjAujy6WDn8pVamezIj7QHFiZlIxoXb9SYqLyTdTgB49wmq4F3ZFw3hDOMbM4zzLeQNhg7Oemw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^3.2.1",
"@comunica/bus-query-operation": "^3.2.2",
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-join-bgp": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-join-bgp/-/actor-optimize-query-operation-join-bgp-3.2.1.tgz",
"integrity": "sha512-gST0BFebU2iGSG9MqMFY6j53EaNorF4MUM3oDSbUgBbqaHi3y3/2jIyRiBgqjDZ1HGmrxPv0mSyVz8/KWWIEGg==",
"license": "MIT",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^3.2.1",
"@comunica/core": "^3.2.1",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-join-connected": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-join-connected/-/actor-optimize-query-operation-join-connected-3.2.1.tgz",
"integrity": "sha512-rYr0s86putzWFi05lszc2uss5G3zxmAL8R54t6S8d6RC9ysxOYN1wtOofX+kPMMXNRdtiWYFwOE+VPSrS9rmjw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^3.2.1",
"@comunica/core": "^3.2.1",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-prune-empty-source-operations": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-prune-empty-source-operations/-/actor-optimize-query-operation-prune-empty-source-operations-3.2.2.tgz",
"integrity": "sha512-RcYGvdXhxqT4RqibfNyhrbL4M/oRKZEMuNL762N7t42MlpCGxrHDHhkz/JHn6Pwti4o7JZMyfqXA3Y+AuQXYXA==",
"license": "MIT",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^3.2.1",
"@comunica/bus-query-operation": "^3.2.2",
"@comunica/context-entries": "^3.2.1",
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"rdf-data-factory": "^1.1.2",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-rewrite-add": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-rewrite-add/-/actor-optimize-query-operation-rewrite-add-3.2.1.tgz",
"integrity": "sha512-QLVN2DVcJhL3L9PdPTAQ+dtixjzVNyRhwLjKpFkU/YoKloR6rAO77tRQzqmWLVIT/vqc4i3Y0EvAA9qQh/Mq1Q==",
"license": "MIT",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^3.2.1",
"@comunica/core": "^3.2.1",
"@rdfjs/types": "*",
"rdf-data-factory": "^1.1.2",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-rewrite-copy": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-rewrite-copy/-/actor-optimize-query-operation-rewrite-copy-3.2.1.tgz",
"integrity": "sha512-dxJ583C2FeTPDGRGlu5O/aglufXItKhgXvb6Nz4I22oDtuumX2P+vYnzs2zRAn3a80kajBy1pCpulkikjgLbtw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^3.2.1",
"@comunica/core": "^3.2.1",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-rewrite-move": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-rewrite-move/-/actor-optimize-query-operation-rewrite-move-3.2.1.tgz",
"integrity": "sha512-rhbx/8sLaiD5pkT5VlIU7k8JXX1sBCneg4kBUTYVpaH80D+n3qVjvId62UPXjMZEUmvNzfj9kmP5gfXUqRJQTQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^3.2.1",
"@comunica/core": "^3.2.1",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-query-operation-ask": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-ask/-/actor-query-operation-ask-3.2.2.tgz",
"integrity": "sha512-Y++ZDDowkhCLSQs4n65P0CU2ySrL5tsUoOSUD05gNlCCjCbqwQ61NxeqnfZHsUhBl41USpC+51pyAkrDER1kVA==",
"license": "MIT",
"dependencies": {
"@comunica/bus-query-operation": "^3.2.2",
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-query-operation-bgp-join": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-join/-/actor-query-operation-bgp-join-3.2.2.tgz",
"integrity": "sha512-cH22uc+Hz2GsARARvStYgsjLFZN8Y561kWV52+BJm8/1J/Wp35ASLc6fqzcxcK3iWcMHEwn+pTh2yTuqC9Q5BA==",
"license": "MIT",
"dependencies": {
"@comunica/bus-query-operation": "^3.2.2",
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-query-operation-construct": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-construct/-/actor-query-operation-construct-3.2.2.tgz",
"integrity": "sha512-kd9bH71TFeSGdeoqUrrYX/ajJvbELkguWlWLEX3qTVBfKrXWCJguXTgn2dJZ/ioAPux/1QmflAfrp1gZputwkQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-query-operation": "^3.2.2",
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"@rdfjs/types": "*",
"asynciterator": "^3.9.0",
"rdf-data-factory": "^1.1.1",
"rdf-terms": "^1.11.0",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-query-operation-distinct-hash": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-distinct-hash/-/actor-query-operation-distinct-hash-3.2.2.tgz",
"integrity": "sha512-91CxkghhyHsgRumOKojMHTByWEdPOflD72X6gvFfOCA6VCWKP3od7PTQHCl8rZTrY0yLY9qdnh05SxCVkkCw/w==",
"license": "MIT",
"dependencies": {
"@comunica/bus-hash-bindings": "^3.2.1",
"@comunica/bus-hash-quads": "^3.2.1",
"@comunica/bus-query-operation": "^3.2.2",
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"@rdfjs/types": "*",
"asynciterator": "^3.9.0",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-query-operation-extend": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-extend/-/actor-query-operation-extend-3.2.2.tgz",
"integrity": "sha512-q+t+btbU6xMSBwF2TWQZcnHC0CDDrXuMAfN4iKWW0hcIJFLK/OHd6yNPlGTWVsigdxl8DxFh9eZAwvRcFydDfQ==",
"license": "MIT",
"dependencies": {
"@comunica/bindings-factory": "^3.2.1",
"@comunica/bus-merge-bindings-context": "^3.2.1",
"@comunica/bus-query-operation": "^3.2.2",
"@comunica/core": "^3.2.1",
"@comunica/expression-evaluator": "^3.2.1",
"@comunica/types": "^3.2.1",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-query-operation-filter": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-filter/-/actor-query-operation-filter-3.2.2.tgz",
"integrity": "sha512-bUkdDEcfExrym64SXZL0/xV45MXZd6mMpNCNCqozU/oZL6IIzeK+4kIA/JG9C++o1BdT5NFrQn0u6UZ9+RojLA==",
"license": "MIT",
"dependencies": {
"@comunica/bindings-factory": "^3.2.1",
"@comunica/bus-merge-bindings-context": "^3.2.1",
"@comunica/bus-query-operation": "^3.2.2",
"@comunica/core": "^3.2.1",
"@comunica/expression-evaluator": "^3.2.1",
"@comunica/types": "^3.2.1",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-query-operation-from-quad": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-from-quad/-/actor-query-operation-from-quad-3.2.2.tgz",
"integrity": "sha512-mUJ8jKUieVP+swiSX5iP6E8ShjOFpHWdt9/LH6m0FiWDaIXQrSkey1KFZnQWiuWdsdHDYaZM9w4Uuhe2Ou4ayw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-query-operation": "^3.2.2",
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"@rdfjs/types": "*",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-query-operation-group": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-group/-/actor-query-operation-group-3.2.2.tgz",
"integrity": "sha512-/G4+dPX3HnUIwtphrdvzZ4fasydV5jA/aCoYkENiW2EiGjcxVPjCDWXXbOeIVJ0Rm38pUOGU3hbQRGlexLTNMQ==",
"license": "MIT",
"dependencies": {
"@comunica/bindings-factory": "^3.2.1",
"@comunica/bus-hash-bindings": "^3.2.1",
"@comunica/bus-merge-bindings-context": "^3.2.1",
"@comunica/bus-query-operation": "^3.2.2",
"@comunica/core": "^3.2.1",
"@comunica/expression-evaluator": "^3.2.1",
"@comunica/types": "^3.2.1",
"@rdfjs/types": "*",
"asynciterator": "^3.9.0",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-query-operation-join": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-join/-/actor-query-operation-join-3.2.2.tgz",
"integrity": "sha512-0x28WUcARdBcCharE6Pl0hXhhbSp53rvimUpIWsVLbhRH3c3JzGXZknyOyK/ULBzu5t/mSj9SjJva41SJJ9M+g==",
"license": "MIT",
"dependencies": {
"@comunica/bus-query-operation": "^3.2.2",
"@comunica/bus-rdf-join": "^3.2.1",
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-query-operation-leftjoin": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-leftjoin/-/actor-query-operation-leftjoin-3.2.2.tgz",
"integrity": "sha512-Rdc4FWDmZB52qM49bV5cp7jUSZDEGrw3akVviBnrbl75SmyxyAgZTUaYyCnK410FEXHbXlVvDaV5CcyZIjPsUg==",
"license": "MIT",
"dependencies": {
"@comunica/bindings-factory": "^3.2.1",
"@comunica/bus-merge-bindings-context": "^3.2.1",
"@comunica/bus-query-operation": "^3.2.2",
"@comunica/bus-rdf-join": "^3.2.1",
"@comunica/core": "^3.2.1",
"@comunica/expression-evaluator": "^3.2.1",
"@comunica/types": "^3.2.1",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-query-operation-minus": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-minus/-/actor-query-operation-minus-3.2.2.tgz",
"integrity": "sha512-e3qjz5sPk2QP8WrRkOtLTHC5WvjFalXIduDqwi3IS/NUvBaKh/rNP1Xd6DUFp7DiC0rNH0I9DKK2c1YizJq23w==",
"license": "MIT",
"dependencies": {
"@comunica/bus-query-operation": "^3.2.2",
"@comunica/bus-rdf-join": "^3.2.1",
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-query-operation-nop": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-nop/-/actor-query-operation-nop-3.2.2.tgz",
"integrity": "sha512-6tupZ4zTHMpjH+j7FAvxgNOOCw0zyX+pPZ/LTlfAKyWdUekmbk6A4bkK+ISzLfoupllQTYV0TIKk2Pcc4zuvXw==",
"license": "MIT",
"dependencies": {
"@comunica/bindings-factory": "^3.2.1",
"@comunica/bus-merge-bindings-context": "^3.2.1",
"@comunica/bus-query-operation": "^3.2.2",
"@comunica/core": "^3.2.1",
"@comunica/metadata": "^3.2.1",
"@comunica/types": "^3.2.1",
"@rdfjs/types": "*",
"asynciterator": "^3.9.0",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-query-operation-orderby": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-orderby/-/actor-query-operation-orderby-3.2.2.tgz",
"integrity": "sha512-TOlNLQaadoEIwe0bc6RwH2fc9crAxMXOa/HnE1u2j4n5ZZ3A5C+mCD1EX1e618EI0ZFRoxbSDJD/gKZvh3qQPw==",
"license": "MIT",
"dependencies": {
"@comunica/bindings-factory": "^3.2.1",
"@comunica/bus-merge-bindings-context": "^3.2.1",
"@comunica/bus-query-operation": "^3.2.2",
"@comunica/core": "^3.2.1",
"@comunica/expression-evaluator": "^3.2.1",
"@comunica/types": "^3.2.1",
"asynciterator": "^3.9.0",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-query-operation-path-alt": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-alt/-/actor-query-operation-path-alt-3.2.2.tgz",
"integrity": "sha512-kWjjIRcVRp00y/5NqIs4xL2XcT7EbNUI7M0yRrlhtGy11gbGvQ/3mfveUevB8b8ymkDYvLT883l5TkfcCoCl8Q==",
"license": "MIT",
"dependencies": {
"@comunica/actor-abstract-path": "^3.2.2",
"@comunica/actor-query-operation-union": "^3.2.2",
"@comunica/bus-query-operation": "^3.2.2",
"@comunica/bus-rdf-metadata-accumulate": "^3.2.1",
"@comunica/types": "^3.2.1",
"asynciterator": "^3.9.0",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-query-operation-path-inv": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-inv/-/actor-query-operation-path-inv-3.2.2.tgz",
"integrity": "sha512-SfDx+QtMH1day5C0Xma2XexUBBmNXQ92xj4gBtoZ4lenYCu+6B/GB017hawve02jHTV68cuki5JWXB3h2/KltA==",
"license": "MIT",
"dependencies": {
"@comunica/actor-abstract-path": "^3.2.2",
"@comunica/bus-query-operation": "^3.2.2",
"@comunica/types": "^3.2.1",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-query-operation-path-link": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-link/-/actor-query-operation-path-link-3.2.2.tgz",
"integrity": "sha512-M3bsa9D3JGvQuUvXvWGBC5jF0b+5TWsciDkOfvcholRSMSSx5Krkg79/tMqN4Rgv3DAotQk0d6Z25g9yXeDENw==",
"license": "MIT",
"dependencies": {
"@comunica/actor-abstract-path": "^3.2.2",
"@comunica/bus-query-operation": "^3.2.2",
"@comunica/types": "^3.2.1",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-query-operation-path-nps": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-nps/-/actor-query-operation-path-nps-3.2.2.tgz",
"integrity": "sha512-Vm92Tsu/AuUiAgGLdIsyNNoHsX/4t3cTvpMdcW/K9ButZvy+KD9Hp2ZeHHDXOsmRFjtqLXZlkCO5tNXb8TFwZg==",
"license": "MIT",
"dependencies": {
"@comunica/actor-abstract-path": "^3.2.2",
"@comunica/bus-query-operation": "^3.2.2",
"@comunica/types": "^3.2.1",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-query-operation-path-one-or-more": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-one-or-more/-/actor-query-operation-path-one-or-more-3.2.2.tgz",
"integrity": "sha512-aOfq6rgYG968QfFom8APVL4msygsaYCPCcFgqmvsJKZ2tdmSyskklg/l+Gy8NN/Jija7n9OryoGaOxB/jd3iRg==",
"license": "MIT",
"dependencies": {
"@comunica/actor-abstract-path": "^3.2.2",
"@comunica/bindings-factory": "^3.2.1",
"@comunica/bus-merge-bindings-context": "^3.2.1",
"@comunica/bus-query-operation": "^3.2.2",
"@comunica/types": "^3.2.1",
"asynciterator": "^3.9.0",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-query-operation-path-seq": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-seq/-/actor-query-operation-path-seq-3.2.2.tgz",
"integrity": "sha512-8BkR1OcphvrYWyPIRPiOmSh1vp4QRi9k1gTZ9hM+koi2TmFx+MY+/plzKctJnHOdbj6ClINu02xA9N8ptM8GtQ==",
"license": "MIT",
"dependencies": {
"@comunica/actor-abstract-path": "^3.2.2",
"@comunica/bus-query-operation": "^3.2.2",
"@comunica/bus-rdf-join": "^3.2.1",
"@comunica/types": "^3.2.1",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-query-operation-path-zero-or-more": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-zero-or-more/-/actor-query-operation-path-zero-or-more-3.2.2.tgz",
"integrity": "sha512-058i67QWJ4Tx3n/6IWwL3eZPz2KoheVHQAlqzefBml62T8osobfyYzJI7gfKQMPB+NgwR3vJF3gyA2j2YROBVA==",
"license": "MIT",
"dependencies": {
"@comunica/actor-abstract-path": "^3.2.2",
"@comunica/bindings-factory": "^3.2.1",
"@comunica/bus-merge-bindings-context": "^3.2.1",
"@comunica/bus-query-operation": "^3.2.2",
"@comunica/types": "^3.2.1",
"asynciterator": "^3.9.0",
"rdf-string": "^1.6.1",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-query-operation-path-zero-or-one": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-zero-or-one/-/actor-query-operation-path-zero-or-one-3.2.2.tgz",
"integrity": "sha512-zpdq8Vb1LXMmU09wS/P6J70tP7bzMwk7ZZaK/M1s24zRZB2f9z3b9xMLzoWvnA9GBf5M/Q9pRnzKHxScejUA3Q==",
"license": "MIT",
"dependencies": {
"@comunica/actor-abstract-path": "^3.2.2",
"@comunica/bindings-factory": "^3.2.1",
"@comunica/bus-merge-bindings-context": "^3.2.1",
"@comunica/bus-query-operation": "^3.2.2",
"@comunica/metadata": "^3.2.1",
"@comunica/types": "^3.2.1",
"asynciterator": "^3.9.0",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-query-operation-project": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-project/-/actor-query-operation-project-3.2.2.tgz",
"integrity": "sha512-YQValAN/hrCOlj99g5Uc2X8ZIwsjv9EAc1BkPnlywLJLQUPAOxM7wG1NlrlNC1CjhZ7x85L0MMMZTtUVWvjk/Q==",
"license": "MIT",
"dependencies": {
"@comunica/bus-query-operation": "^3.2.2",
"@comunica/core": "^3.2.1",
"@comunica/data-factory": "^3.1.0",
"@comunica/types": "^3.2.1",
"@rdfjs/types": "*",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-query-operation-reduced-hash": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-reduced-hash/-/actor-query-operation-reduced-hash-3.2.2.tgz",
"integrity": "sha512-WtgTRpoNLGGW+NWpZvfbrYy4wzN1OuhbWoNpqHqjxWwtVHUk1jsdWfg3OnwGF+ipEtT0fIRp1wSP1A0ktinAMg==",
"license": "MIT",
"dependencies": {
"@comunica/bus-hash-bindings": "^3.2.1",
"@comunica/bus-query-operation": "^3.2.2",
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"lru-cache": "^10.0.0",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-query-operation-service": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-service/-/actor-query-operation-service-3.2.2.tgz",
"integrity": "sha512-j/fpn6603n0SB2nfHd2n0nALYL41B2t44rPyi+pJ0Id8dp2LBIQ+ufyw+D14sd/sDkylv2eGqghDnvK4/IKSoQ==",
"license": "MIT",
"dependencies": {
"@comunica/bindings-factory": "^3.2.1",
"@comunica/bus-merge-bindings-context": "^3.2.1",
"@comunica/bus-query-operation": "^3.2.2",
"@comunica/bus-query-source-identify": "^3.2.2",
"@comunica/core": "^3.2.1",
"@comunica/metadata": "^3.2.1",
"@comunica/types": "^3.2.1",
"asynciterator": "^3.9.0",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-query-operation-slice": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-slice/-/actor-query-operation-slice-3.2.2.tgz",
"integrity": "sha512-mrOWa3vluyAu4UYvfExKZA1JDcHlysTKjPR6p1zYnZfgank6ZWs+/lfpQaK/t56WyZbq8C0gQJ1STHi1k8294w==",
"license": "MIT",
"dependencies": {
"@comunica/bus-query-operation": "^3.2.2",
"@comunica/context-entries": "^3.2.1",
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-query-operation-source": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-source/-/actor-query-operation-source-3.2.2.tgz",
"integrity": "sha512-yX3HjcM3nqe9kTcpiD+LJSSpZF7ypBeYVav4OlaeqOuvIuLU6KrCj/UoA3Q8OlOImb9h9u69l2XsSNMZuK/txQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-query-operation": "^3.2.2",
"@comunica/context-entries": "^3.2.1",
"@comunica/core": "^3.2.1",
"@comunica/metadata": "^3.2.1",
"@comunica/types": "^3.2.1",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-query-operation-union": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-union/-/actor-query-operation-union-3.2.2.tgz",
"integrity": "sha512-njHRQndEmDa1iJXOXc4FsxhS/JJragB7DEL/pkq+9JRT2Wtm9Z46GktBCPW5+IBucjKZQnymBIpG3sBYCjBSgQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-query-operation": "^3.2.2",
"@comunica/bus-rdf-metadata-accumulate": "^3.2.1",
"@comunica/core": "^3.2.1",
"@comunica/metadata": "^3.2.1",
"@comunica/types": "^3.2.1",
"@rdfjs/types": "*",
"asynciterator": "^3.9.0",
"rdf-terms": "^1.11.0",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-query-operation-update-clear": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-clear/-/actor-query-operation-update-clear-3.2.2.tgz",
"integrity": "sha512-92vzMyzPYd1aZX6UvsqZov83dapckY0DYB2sV/d0A9gbpEVNNH+dzjsQfqOPVqkhUTBD7t9lJ5kvmAms1gfTbg==",
"license": "MIT",
"dependencies": {
"@comunica/bus-query-operation": "^3.2.2",
"@comunica/bus-rdf-update-quads": "^3.2.1",
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"@rdfjs/types": "*",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-query-operation-update-compositeupdate": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-compositeupdate/-/actor-query-operation-update-compositeupdate-3.2.2.tgz",
"integrity": "sha512-ku6k5YXDiZsMk4SbtPabjXtaedh//FKeTeojHrsJgtCrj4CoME/U6irtBN12Qi8ZWVkGzJpj50nQD0oOAE4HSQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-query-operation": "^3.2.2",
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-query-operation-update-create": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-create/-/actor-query-operation-update-create-3.2.2.tgz",
"integrity": "sha512-nso6cNbCYdAiCKCD5AiVt+o3rBoOjdCQmA1vvJ+bFneK5/YqaeMvQsy6abKAx8XdJw6OPheAsCzvB1Uq4x95bQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-query-operation": "^3.2.2",
"@comunica/bus-rdf-update-quads": "^3.2.1",
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-query-operation-update-deleteinsert": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-deleteinsert/-/actor-query-operation-update-deleteinsert-3.2.2.tgz",
"integrity": "sha512-UJuTcXE71UOsfUqRxCHK2mfWXChtUbMWwzQHPH29yRE8f9xrgbtXbjHiI+e2Sv3ixYszOWnoiI5CjmgOuI5U6A==",
"license": "MIT",
"dependencies": {
"@comunica/actor-query-operation-construct": "^3.2.2",
"@comunica/bindings-factory": "^3.2.1",
"@comunica/bus-merge-bindings-context": "^3.2.1",
"@comunica/bus-query-operation": "^3.2.2",
"@comunica/bus-rdf-update-quads": "^3.2.1",
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"@rdfjs/types": "*",
"asynciterator": "^3.9.0",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-query-operation-update-drop": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-drop/-/actor-query-operation-update-drop-3.2.2.tgz",
"integrity": "sha512-NyeHSIfPGxyqlyp7XDr5wvcCK17IYC52klJqy/mLWlOQBoKdiRvFY0bRJ2dALkYsoItsJaaHvxMjT+65W5RvkQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-query-operation": "^3.2.2",
"@comunica/bus-rdf-update-quads": "^3.2.1",
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"@rdfjs/types": "*",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-query-operation-update-load": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-load/-/actor-query-operation-update-load-3.2.2.tgz",
"integrity": "sha512-tapi5heA4Vw1XldaThwP9OP/GEnGAFJMo8HtXXQZ0F5ZX6hx6/Y86tydxoEalsGS9ztdQR+svej9hYgA9GlaoA==",
"license": "MIT",
"dependencies": {
"@comunica/bus-query-operation": "^3.2.2",
"@comunica/bus-query-source-identify": "^3.2.2",
"@comunica/bus-rdf-update-quads": "^3.2.1",
"@comunica/context-entries": "^3.2.1",
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-query-operation-values": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-values/-/actor-query-operation-values-3.2.2.tgz",
"integrity": "sha512-WYlBg1lkpjAwQ6burtcX8AHSaQDUyH00xo5tYWUdJ5mp80Y5jjdGsPX208TRhA235t++ghXX49H1WwhJidMT2A==",
"license": "MIT",
"dependencies": {
"@comunica/bindings-factory": "^3.2.1",
"@comunica/bus-merge-bindings-context": "^3.2.1",
"@comunica/bus-query-operation": "^3.2.2",
"@comunica/core": "^3.2.1",
"@comunica/metadata": "^3.2.1",
"@comunica/types": "^3.2.1",
"asynciterator": "^3.9.0",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-query-parse-graphql": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-parse-graphql/-/actor-query-parse-graphql-3.2.1.tgz",
"integrity": "sha512-d1Q9t3vh1FoIoGFneJXcnHQmd9ZxY2otBZ+vSMN1jhFhfb4/4cXEAOd9g11uPZlyoJgm+FG4U1JiCdbam9zcMg==",
"license": "MIT",
"dependencies": {
"@comunica/bus-query-parse": "^3.2.1",
"@comunica/context-entries": "^3.2.1",
"@comunica/core": "^3.2.1",
"graphql-to-sparql": "^3.0.1"
}
},
"node_modules/@comunica/actor-query-parse-sparql": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-parse-sparql/-/actor-query-parse-sparql-3.2.1.tgz",
"integrity": "sha512-JcXXx/TWfrnAmEyYYV/Kq9ihuDE69lhhhfpt+sNCeNs3u5aFoLyz88H5QgruJxCXrwYqbgB/ylmjkm102JB43w==",
"license": "MIT",
"dependencies": {
"@comunica/bus-query-parse": "^3.2.1",
"@comunica/core": "^3.2.1",
"@types/sparqljs": "^3.1.3",
"sparqlalgebrajs": "^4.3.7",
"sparqljs": "^3.7.1"
}
},
"node_modules/@comunica/actor-query-process-explain-logical": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-process-explain-logical/-/actor-query-process-explain-logical-3.2.1.tgz",
"integrity": "sha512-ZACsBjRBehT6TFsDWwUSoHHi7vQZC3jr5NEmgOGQdAfMXxSj54IkfUekkBKTU0Ve4cPLMvM8XEl37JPvB9IHVw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-query-process": "^3.2.1",
"@comunica/context-entries": "^3.2.1",
"@comunica/core": "^3.2.1"
}
},
"node_modules/@comunica/actor-query-process-explain-parsed": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-process-explain-parsed/-/actor-query-process-explain-parsed-3.2.1.tgz",
"integrity": "sha512-L6Zd6eVXJY0A1DU4jRJoo+vXpbfpCX3gaEO0XcmZiw6ay7rRl3cYdpOO0aBpPgLpQnrF6ztQYE57jcHjbCPBIQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-query-process": "^3.2.1",
"@comunica/context-entries": "^3.2.1",
"@comunica/core": "^3.2.1"
}
},
"node_modules/@comunica/actor-query-process-explain-physical": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-process-explain-physical/-/actor-query-process-explain-physical-3.2.1.tgz",
"integrity": "sha512-Tb16Y1GWAWQMIdq1BRrlDTfwPmGmUqbglTWcQ6r/E24WzdJq6BfJpZTx99VBRV4RRxbOQmNv4jWY6Ann9wHLgg==",
"license": "MIT",
"dependencies": {
"@comunica/bus-query-process": "^3.2.1",
"@comunica/context-entries": "^3.2.1",
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"@rdfjs/types": "*",
"rdf-string": "^1.6.3"
}
},
"node_modules/@comunica/actor-query-process-sequential": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-process-sequential/-/actor-query-process-sequential-3.2.2.tgz",
"integrity": "sha512-hDdYxAJwrAtfTa44IZrHp8/dY/NHK6etjqAXj48gHdfP1H6/LHVMyTE3WlySOecih/xPU9h/FJRAOZ3HO4j3fA==",
"license": "MIT",
"dependencies": {
"@comunica/bindings-factory": "^3.2.1",
"@comunica/bus-context-preprocess": "^3.2.1",
"@comunica/bus-merge-bindings-context": "^3.2.1",
"@comunica/bus-optimize-query-operation": "^3.2.1",
"@comunica/bus-query-operation": "^3.2.2",
"@comunica/bus-query-parse": "^3.2.1",
"@comunica/bus-query-process": "^3.2.1",
"@comunica/context-entries": "^3.2.1",
"@comunica/core": "^3.2.1",