-
Notifications
You must be signed in to change notification settings - Fork 1
/
package-lock.json
12074 lines (12074 loc) · 518 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": "solid-agent",
"version": "0.0.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "solid-agent",
"version": "0.0.0",
"dependencies": {
"@solid/community-server": "^6.0.0",
"@types/node": "^18.14.6",
"@types/node-fetch": "^2.6.2",
"cron": "^2.3.1",
"dotenv": "^16.0.3",
"koreografeye": "^0.3.2",
"n3": "^1.16.3",
"node-fetch": "^2.6.9",
"solid-notification-client": "^0.0.3"
},
"devDependencies": {
"@types/cron": "^2.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"uuid": "^9.0.0"
}
},
"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.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-mediatyped/-/actor-abstract-mediatyped-2.6.8.tgz",
"integrity": "sha512-KpBcWz7MBsP+su6/Mok7Pj2H0S934BriEvBCjUhDr11TYDLTTQjl6TuyiNJFeOmJk+ppkJZy6Cj9Y8JxG3yoEA==",
"dependencies": {
"@comunica/core": "^2.6.8",
"@comunica/types": "^2.6.8"
}
},
"node_modules/@comunica/actor-abstract-parse": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-parse/-/actor-abstract-parse-2.6.8.tgz",
"integrity": "sha512-NetA7wLeBDdaoolv7QPX6JvEDeXJ4R4KzuV0C8ylX1/RyZTTobqW/pSAKcDxodMyw1Ah5q7pGjtvF35gf6Onuw==",
"dependencies": {
"@comunica/core": "^2.6.8",
"readable-stream": "^4.2.0"
}
},
"node_modules/@comunica/actor-abstract-path": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-path/-/actor-abstract-path-2.6.8.tgz",
"integrity": "sha512-qj8veS8O6xv0Q1Oq8Z7hkmdkEvjAJ8WWSUNc0HbrmJEZM2DfwycbyT2/p6oqfvy0S004bEWDFjTb24Jd6M4Rtw==",
"dependencies": {
"@comunica/bindings-factory": "^2.5.1",
"@comunica/bus-query-operation": "^2.6.8",
"@comunica/context-entries": "^2.6.8",
"@comunica/core": "^2.6.8",
"@comunica/types": "^2.6.8",
"@rdfjs/types": "*",
"asynciterator": "^3.8.0",
"rdf-data-factory": "^1.1.1",
"rdf-string": "^1.6.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-context-preprocess-source-to-destination": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-source-to-destination/-/actor-context-preprocess-source-to-destination-2.6.8.tgz",
"integrity": "sha512-k4ciLj+LyVTrwJ+AKYflbRcAHeg9wU/xz+TlUwH59l04MBzFdI/EFpk+0z4J9RmkqI4+FyEFYukKk5eKS8vcSQ==",
"dependencies": {
"@comunica/bus-context-preprocess": "^2.6.8",
"@comunica/context-entries": "^2.6.8",
"@comunica/core": "^2.6.8",
"@comunica/types": "^2.6.8"
}
},
"node_modules/@comunica/actor-dereference-fallback": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-fallback/-/actor-dereference-fallback-2.6.8.tgz",
"integrity": "sha512-Yp7dnANzowvdqpEP7pe1mHzb+rllxKu2DOHV4VZwVm5+Yr4kEObfL0oT0Gc5vqBsfIw8cyaCHgt23IJO8aoQYA==",
"dependencies": {
"@comunica/bus-dereference": "^2.6.8",
"@comunica/core": "^2.6.8"
}
},
"node_modules/@comunica/actor-dereference-file": {
"version": "2.6.7",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-file/-/actor-dereference-file-2.6.7.tgz",
"integrity": "sha512-pC5vU5wHiaJD37OeUAy1p+nuq5IDBIXkoLmglzXaHzBsrD0QaOesGAUbmIdpR245+RI8oS3/f+wZZtLqsfn4WA==",
"dependencies": {
"@comunica/bus-dereference": "^2.6.7",
"@comunica/core": "^2.6.7"
}
},
"node_modules/@comunica/actor-dereference-http": {
"version": "2.6.9",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-http/-/actor-dereference-http-2.6.9.tgz",
"integrity": "sha512-K7GWIR0SkYaH+lQO8pWoCxlQuQU67Y/2j9jlinqWEMbbVmHvvKt455RBxFWs8gfHRzXon7MzCqjAhC+BB3VGow==",
"dependencies": {
"@comunica/bus-dereference": "^2.6.8",
"@comunica/bus-http": "^2.6.9",
"@comunica/core": "^2.6.8",
"cross-fetch": "^3.1.5",
"relative-to-absolute-iri": "^1.0.7",
"stream-to-string": "^1.2.0"
}
},
"node_modules/@comunica/actor-dereference-rdf-parse": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-rdf-parse/-/actor-dereference-rdf-parse-2.6.8.tgz",
"integrity": "sha512-+ntPX8PD1FuM1peqI5I8YliVHsotgMzqCbEg5gPBDX3UJ5frYcDKWFTsTway8Cx6MXP/79+k1Rk8RethlCzD8w==",
"dependencies": {
"@comunica/bus-dereference": "^2.6.8",
"@comunica/bus-dereference-rdf": "^2.6.8",
"@comunica/bus-rdf-parse": "^2.6.8"
}
},
"node_modules/@comunica/actor-hash-bindings-sha1": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-hash-bindings-sha1/-/actor-hash-bindings-sha1-2.6.8.tgz",
"integrity": "sha512-O5linMzavi+L4QC7qRxTLw6C5AXReRJsY+PdIilIEy3XgQCnjZzgJAdn6x9ix9iL56bqaiySIGgAU10WJ5hzqQ==",
"dependencies": {
"@comunica/bus-hash-bindings": "^2.6.8",
"@comunica/core": "^2.6.8",
"canonicalize": "^1.0.8",
"hash.js": "^1.1.7",
"rdf-string": "^1.6.1"
}
},
"node_modules/@comunica/actor-http-fetch": {
"version": "2.6.9",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-fetch/-/actor-http-fetch-2.6.9.tgz",
"integrity": "sha512-p3JPL8Ms9WjG/YMXeYnQNFFYU1rQ2BAlPcKc4FmdMuqg+fRtNu/VnGX1+Thxp/fF0CZlOy9Z9ljIt8LyIkvWKw==",
"dependencies": {
"@comunica/bus-http": "^2.6.9",
"@comunica/context-entries": "^2.6.8",
"@comunica/mediatortype-time": "^2.6.8",
"abort-controller": "^3.0.0",
"cross-fetch": "^3.1.5"
}
},
"node_modules/@comunica/actor-http-proxy": {
"version": "2.6.9",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-proxy/-/actor-http-proxy-2.6.9.tgz",
"integrity": "sha512-lHug5vpBIlRWxWpHX9IAai+e8W/OhcmAK1NP7XH3MQ89C6Wjf9GuQrSfsi8CCfIrIj/Y/x4e3wCiC93/V33bQQ==",
"dependencies": {
"@comunica/bus-http": "^2.6.9",
"@comunica/context-entries": "^2.6.8",
"@comunica/mediatortype-time": "^2.6.8",
"@comunica/types": "^2.6.8"
}
},
"node_modules/@comunica/actor-http-wayback": {
"version": "2.6.9",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-wayback/-/actor-http-wayback-2.6.9.tgz",
"integrity": "sha512-/uggjsItvMMfJMU9b8BVBZEbS3O9RHElssgWlJ8CebuQSDIIYEIdZ3yHHsySyhqJ5OTl3BalSZWsZa/lUdKhEQ==",
"dependencies": {
"@comunica/bus-http": "^2.6.9",
"@comunica/context-entries": "^2.6.8",
"@comunica/core": "^2.6.8",
"cross-fetch": "^3.1.5",
"stream-to-string": "^1.2.0"
}
},
"node_modules/@comunica/actor-init-query": {
"version": "2.6.9",
"resolved": "https://registry.npmjs.org/@comunica/actor-init-query/-/actor-init-query-2.6.9.tgz",
"integrity": "sha512-rvahsWdyW0pYVDxf5wdJE3CpqCkk1d8FiNMDl3hz7t47m8tAPpp+EUMxXoODiTiHAfC8mKb1soByO9rXqMa37Q==",
"dependencies": {
"@comunica/actor-http-proxy": "^2.6.9",
"@comunica/bus-context-preprocess": "^2.6.8",
"@comunica/bus-http-invalidate": "^2.6.8",
"@comunica/bus-init": "^2.6.8",
"@comunica/bus-optimize-query-operation": "^2.6.8",
"@comunica/bus-query-operation": "^2.6.8",
"@comunica/bus-query-parse": "^2.6.8",
"@comunica/bus-query-result-serialize": "^2.6.8",
"@comunica/context-entries": "^2.6.8",
"@comunica/core": "^2.6.8",
"@comunica/logger-pretty": "^2.6.8",
"@comunica/runner": "^2.6.8",
"@comunica/types": "^2.6.8",
"@rdfjs/types": "*",
"@types/yargs": "^17.0.13",
"asynciterator": "^3.8.0",
"negotiate": "^1.0.1",
"rdf-quad": "^1.5.0",
"rdf-string": "^1.6.1",
"sparqlalgebrajs": "^4.0.5",
"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.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-bgp-to-join/-/actor-optimize-query-operation-bgp-to-join-2.6.8.tgz",
"integrity": "sha512-dcDSxzlJWOkyaB5TcRgt+hUdWoaPJHxhXBu/0ngxJ+WObn5Fi/Nyt/MZAaJQR2HYzSKrVN1UeFnT02w8GrjsPQ==",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^2.6.8",
"@comunica/core": "^2.6.8",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-optimize-query-operation-join-bgp": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-join-bgp/-/actor-optimize-query-operation-join-bgp-2.6.8.tgz",
"integrity": "sha512-fPp4erOhwPa/X+/ZTrXEEknsk+JFnfKVbTCcqKs/Atl6j4RoX6X6neL15/atHlsqwVPEY7vKlBLzQ5+lpJ2fTA==",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^2.6.8",
"@comunica/core": "^2.6.8",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-optimize-query-operation-join-connected": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-join-connected/-/actor-optimize-query-operation-join-connected-2.6.8.tgz",
"integrity": "sha512-m9GNNk9bYD3xmUckvrin03kD/cCd+mpzLgn5HCHKYHoXVNo6mdz//7NXNWEZPq8IS6YVEEKSo8JXyGiLrWzDqQ==",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^2.6.8",
"@comunica/core": "^2.6.8",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-ask": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-ask/-/actor-query-operation-ask-2.6.8.tgz",
"integrity": "sha512-ceauwrHq41qDJs5uLv0EO29fYPAMFkU3QBobzpq4CknKzvbr8sR7z7o4fkfBTmGt1EtTh9HkydCxmaYvagmSbw==",
"dependencies": {
"@comunica/bus-query-operation": "^2.6.8",
"@comunica/core": "^2.6.8",
"@comunica/types": "^2.6.8",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-bgp-join": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-join/-/actor-query-operation-bgp-join-2.6.8.tgz",
"integrity": "sha512-1pubsXA32Drp8ATSfZJwRYvOf0jCH5FoA8TulcGT0xl70HqBm0QEvkkmtyS1uMDCkLQOIDZpbCt//7rb5VG9eQ==",
"dependencies": {
"@comunica/bus-query-operation": "^2.6.8",
"@comunica/core": "^2.6.8",
"@comunica/types": "^2.6.8",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-construct": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-construct/-/actor-query-operation-construct-2.6.8.tgz",
"integrity": "sha512-OH8DoWPH5vAJuhJP1B6+fGIoP7o1Rw/++PteF7YbxFsSWu7Jhs0Z8DDuP4AQMc62N13iEcbL9m7+AxtISPYM4Q==",
"dependencies": {
"@comunica/bus-query-operation": "^2.6.8",
"@comunica/context-entries": "^2.6.8",
"@comunica/core": "^2.6.8",
"@comunica/types": "^2.6.8",
"@rdfjs/types": "*",
"asynciterator": "^3.8.0",
"rdf-data-factory": "^1.1.1",
"rdf-terms": "^1.9.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-describe-subject": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-describe-subject/-/actor-query-operation-describe-subject-2.6.8.tgz",
"integrity": "sha512-vkow81b3YXTmy8D57UvCqphFz1Yn7C/QsR1V6Rk/6Wu15Nln54noA3aiWxhjgqkeR+Qe0hijUfHgPj5TA42U/A==",
"dependencies": {
"@comunica/actor-query-operation-union": "^2.6.8",
"@comunica/bus-query-operation": "^2.6.8",
"@comunica/context-entries": "^2.6.8",
"@comunica/core": "^2.6.8",
"@comunica/types": "^2.6.8",
"asynciterator": "^3.8.0",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-distinct-hash": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-distinct-hash/-/actor-query-operation-distinct-hash-2.6.8.tgz",
"integrity": "sha512-lZe3csN0+p88ADnH97ljQoZ8+qKsY74Zsi9nXXNM4s95Z3HBtVoZD3KgiH1aEMDEomfb7rqwNA0AaXi40h1rKw==",
"dependencies": {
"@comunica/bus-hash-bindings": "^2.6.8",
"@comunica/bus-query-operation": "^2.6.8",
"@comunica/core": "^2.6.8",
"@comunica/types": "^2.6.8",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-extend": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-extend/-/actor-query-operation-extend-2.6.8.tgz",
"integrity": "sha512-TrKsWHs+InK07s+cD2APP+rz4Sj0Bu1cYMXKdGywOM9XY2/zS4gLyoyG/r+2pm9kQrxMnrKo2zMA+t8OGTsxCQ==",
"dependencies": {
"@comunica/bindings-factory": "^2.5.1",
"@comunica/bus-query-operation": "^2.6.8",
"@comunica/core": "^2.6.8",
"@comunica/types": "^2.6.8",
"sparqlalgebrajs": "^4.0.5",
"sparqlee": "^2.2.0"
}
},
"node_modules/@comunica/actor-query-operation-filter-sparqlee": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-filter-sparqlee/-/actor-query-operation-filter-sparqlee-2.6.8.tgz",
"integrity": "sha512-sPcsIjvoIdB+dmxoP7sGfPlHO9iSotgqY18AA0JwGjbhDSnRbYq5k3yRhxMsfP3YRjbyUYyrS+4sE4KVcdKHIw==",
"dependencies": {
"@comunica/bindings-factory": "^2.5.1",
"@comunica/bus-query-operation": "^2.6.8",
"@comunica/core": "^2.6.8",
"@comunica/types": "^2.6.8",
"sparqlalgebrajs": "^4.0.5",
"sparqlee": "^2.2.0"
}
},
"node_modules/@comunica/actor-query-operation-from-quad": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-from-quad/-/actor-query-operation-from-quad-2.6.8.tgz",
"integrity": "sha512-tIM7vk5Ev59hEbXQDlpRB34PuaLI1fyo04ruVLpu4TKgm21HdfL2/EmA6p2PlXovsUrz/VJl+R00+INsklbuWg==",
"dependencies": {
"@comunica/bus-query-operation": "^2.6.8",
"@comunica/core": "^2.6.8",
"@comunica/types": "^2.6.8",
"@rdfjs/types": "*",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-group": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-group/-/actor-query-operation-group-2.6.8.tgz",
"integrity": "sha512-moA4QmlBbrqvG8YQ0KT56VfO1m4IKy9RBxcZNizaz5yVL37Kovb4RML7YI3kRWOy6cCyB3LwczgKk/nqZPHrDg==",
"dependencies": {
"@comunica/bindings-factory": "^2.5.1",
"@comunica/bus-hash-bindings": "^2.6.8",
"@comunica/bus-query-operation": "^2.6.8",
"@comunica/core": "^2.6.8",
"@comunica/types": "^2.6.8",
"@rdfjs/types": "*",
"asynciterator": "^3.8.0",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.0.5",
"sparqlee": "^2.2.0"
}
},
"node_modules/@comunica/actor-query-operation-join": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-join/-/actor-query-operation-join-2.6.8.tgz",
"integrity": "sha512-ppDkUJPgKD2z5Z5y/0eYXQ/l/iFV5+royvYacH7w1MeF5SSijib0buGzI14dvoNWUz2fAlFnnUpXMZWDRALbWg==",
"dependencies": {
"@comunica/bus-query-operation": "^2.6.8",
"@comunica/bus-rdf-join": "^2.6.8",
"@comunica/core": "^2.6.8",
"@comunica/types": "^2.6.8",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-leftjoin": {
"version": "2.6.9",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-leftjoin/-/actor-query-operation-leftjoin-2.6.9.tgz",
"integrity": "sha512-UJzg4yV+71Nfc4TvbtO3S3P+RgL/tR0VSkl+HaKqMMiQaa/jrScHtVuHEwlTygA5o23iZB49fWMDMbLRitx0xA==",
"dependencies": {
"@comunica/bus-query-operation": "^2.6.8",
"@comunica/bus-rdf-join": "^2.6.8",
"@comunica/core": "^2.6.8",
"@comunica/types": "^2.6.8",
"sparqlalgebrajs": "^4.0.5",
"sparqlee": "^2.2.0"
}
},
"node_modules/@comunica/actor-query-operation-minus": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-minus/-/actor-query-operation-minus-2.6.8.tgz",
"integrity": "sha512-+gNbztXZsj+czAfcy+jzHmyR64H/pljexeTWuvlHyXZH6dgNFA+bHum+e5ij22jKrPhOXJnBhVKqjkXZk/rCEQ==",
"dependencies": {
"@comunica/bus-query-operation": "^2.6.8",
"@comunica/bus-rdf-join": "^2.6.8",
"@comunica/core": "^2.6.8",
"@comunica/types": "^2.6.8",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-nop": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-nop/-/actor-query-operation-nop-2.6.8.tgz",
"integrity": "sha512-o6bcOvZEvJ/yZXyf25yXFSTF/NqqLFBGVwsV6OjGO7eUpXuM7thTw4QoRvz/9XIjGjY8KFAF9tKU3gfp1ZCu5g==",
"dependencies": {
"@comunica/bindings-factory": "^2.5.1",
"@comunica/bus-query-operation": "^2.6.8",
"@comunica/core": "^2.6.8",
"@comunica/types": "^2.6.8",
"asynciterator": "^3.8.0",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-orderby-sparqlee": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-orderby-sparqlee/-/actor-query-operation-orderby-sparqlee-2.6.8.tgz",
"integrity": "sha512-6FOHIZDCBjjqdItMeHkrIFOh9rE7oXAVV0ocrEXdzUkbLN5a663YFqZFPKwrm+cF8gQMMApecEU5lRv20IaxWw==",
"dependencies": {
"@comunica/bus-query-operation": "^2.6.8",
"@comunica/core": "^2.6.8",
"@comunica/types": "^2.6.8",
"asynciterator": "^3.8.0",
"sparqlalgebrajs": "^4.0.5",
"sparqlee": "^2.2.0"
}
},
"node_modules/@comunica/actor-query-operation-path-alt": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-alt/-/actor-query-operation-path-alt-2.6.8.tgz",
"integrity": "sha512-+Uwl+6qmaIJLxte1NXrhuvxnhcF21foUNG8z2fCGM/FpEADw83H4sPp7Jvqxf4ZNZDJUto2GOPz/cW2Z5Hu1KA==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.6.8",
"@comunica/actor-query-operation-union": "^2.6.8",
"@comunica/bus-query-operation": "^2.6.8",
"@comunica/types": "^2.6.8",
"asynciterator": "^3.8.0",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-path-inv": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-inv/-/actor-query-operation-path-inv-2.6.8.tgz",
"integrity": "sha512-oCujYqtF/AkTRVm7O6LASGcq+7XEAjrKO43DdC03m1yKbLgOA+bFQW/Rn14ICTKSBs4LKobODrvUZGkygA+8vA==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.6.8",
"@comunica/bus-query-operation": "^2.6.8",
"@comunica/types": "^2.6.8",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-path-link": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-link/-/actor-query-operation-path-link-2.6.8.tgz",
"integrity": "sha512-adoCUF9fCqJrNUbkTj9UEe3jLmNHZtKtC6RhyqwRu2Wgidl2yIC6UWfNUWVhyxeGlO0a8KvgmRGRywVXGArRgA==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.6.8",
"@comunica/bus-query-operation": "^2.6.8",
"@comunica/types": "^2.6.8",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-path-nps": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-nps/-/actor-query-operation-path-nps-2.6.8.tgz",
"integrity": "sha512-xSe9i+UPe3KuA2m66sU62cdfN8nASZcliQj8VcPt0tgozBHu0XeiaCDfj2FbNDtYt/ZeBtXztkNsvVHSAWAKwg==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.6.8",
"@comunica/bus-query-operation": "^2.6.8",
"@comunica/types": "^2.6.8",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-path-one-or-more": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-one-or-more/-/actor-query-operation-path-one-or-more-2.6.8.tgz",
"integrity": "sha512-TCyHXwOsNbOEP0KbSS9GHBDDWTAyCJ3SvKnX/3evigMCKsAY+ZyFAyA5Tp0aTkIs3QYUqhBAgLrW9Uo5CLYZoA==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.6.8",
"@comunica/bindings-factory": "^2.5.1",
"@comunica/bus-query-operation": "^2.6.8",
"@comunica/types": "^2.6.8",
"asynciterator": "^3.8.0",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-path-seq": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-seq/-/actor-query-operation-path-seq-2.6.8.tgz",
"integrity": "sha512-FFhOS7+2o2cTpUVjenEvMdSL9zRgXjB0KSNlAnu8MvolHkfrWmX+RLRL6xjWP4dSESpUEAUttHDAzhfAQS+7WA==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.6.8",
"@comunica/bus-query-operation": "^2.6.8",
"@comunica/bus-rdf-join": "^2.6.8",
"@comunica/types": "^2.6.8",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-path-zero-or-more": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-zero-or-more/-/actor-query-operation-path-zero-or-more-2.6.8.tgz",
"integrity": "sha512-fQkWNI+/KB+mL7meXt0js4jJlxCR7Box2jx6kpfPFd5B+kGOBgX3x8unHPnPz0SF0nlaoA30OQOD4xeYnyoysw==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.6.8",
"@comunica/bindings-factory": "^2.5.1",
"@comunica/bus-query-operation": "^2.6.8",
"@comunica/types": "^2.6.8",
"asynciterator": "^3.8.0",
"rdf-string": "^1.6.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-path-zero-or-one": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-zero-or-one/-/actor-query-operation-path-zero-or-one-2.6.8.tgz",
"integrity": "sha512-XEi5cFg0y0/zgIiV1i9im+7EF0nAe5qyLyiNM+p02MzgqFQoncAmxC26QrQhi1D1aZu4w+ysv4eoQJ9dIjWHtg==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.6.8",
"@comunica/bindings-factory": "^2.5.1",
"@comunica/bus-query-operation": "^2.6.8",
"@comunica/types": "^2.6.8",
"asynciterator": "^3.8.0",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-project": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-project/-/actor-query-operation-project-2.6.8.tgz",
"integrity": "sha512-gzlBGq5YthIxvFSUf2zsFupOiFSd6VvO4gml/61tLblz3AyikC/7Zk3+9qsb+IeBaqNq26dA2PTkP6FwhEXNig==",
"dependencies": {
"@comunica/bus-query-operation": "^2.6.8",
"@comunica/core": "^2.6.8",
"@comunica/data-factory": "^2.5.1",
"@comunica/types": "^2.6.8",
"@rdfjs/types": "*",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-quadpattern": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-quadpattern/-/actor-query-operation-quadpattern-2.6.8.tgz",
"integrity": "sha512-RDiLSfBsMb/Eaahfq9wJvsVVWyeUAikGPR6ZNSatKPhhSIqLFUcbhqSj9f4lm0gwqf3eqn8tZILTZnPg7x8RzQ==",
"dependencies": {
"@comunica/bindings-factory": "^2.5.1",
"@comunica/bus-query-operation": "^2.6.8",
"@comunica/bus-rdf-resolve-quad-pattern": "^2.6.8",
"@comunica/context-entries": "^2.6.8",
"@comunica/core": "^2.6.8",
"@comunica/types": "^2.6.8",
"@rdfjs/types": "*",
"asynciterator": "^3.8.0",
"rdf-data-factory": "^1.1.1",
"rdf-terms": "^1.9.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-reduced-hash": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-reduced-hash/-/actor-query-operation-reduced-hash-2.6.8.tgz",
"integrity": "sha512-hnpMau9/e/ylRzoH4PRANpLU6ZVWX58RW9wnVFIHclFzMMOtLXeYXHVdCWlsQp+rYBHUFD23RT51qHpzHXxOVw==",
"dependencies": {
"@comunica/bus-hash-bindings": "^2.6.8",
"@comunica/bus-query-operation": "^2.6.8",
"@comunica/core": "^2.6.8",
"@comunica/types": "^2.6.8",
"@types/lru-cache": "^7.0.0",
"lru-cache": "^7.0.0",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-reduced-hash/node_modules/lru-cache": {
"version": "7.17.0",
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.17.0.tgz",
"integrity": "sha512-zSxlVVwOabhVyTi6E8gYv2cr6bXK+8ifYz5/uyJb9feXX6NACVDwY4p5Ut3WC3Ivo/QhpARHU3iujx2xGAYHbQ==",
"engines": {
"node": ">=12"
}
},
"node_modules/@comunica/actor-query-operation-service": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-service/-/actor-query-operation-service-2.6.8.tgz",
"integrity": "sha512-Sw2my24KjzagYJl3gDSf+SkINZleqgYPkrE8JXA0uiIJ/5a84w6IzIgW6mWwpMb7DR7EYiKD7qU0iB19+9gxhQ==",
"dependencies": {
"@comunica/bindings-factory": "^2.5.1",
"@comunica/bus-query-operation": "^2.6.8",
"@comunica/context-entries": "^2.6.8",
"@comunica/core": "^2.6.8",
"@comunica/types": "^2.6.8",
"asynciterator": "^3.8.0",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-slice": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-slice/-/actor-query-operation-slice-2.6.8.tgz",
"integrity": "sha512-/0kshF512Hb1PzDxOTAmESxSBWav4kb8bPc+H62m5cLK2HXy4PM4TCCTA68LgqvLVy1dojeM5DNZiYKSJGxrxg==",
"dependencies": {
"@comunica/bus-query-operation": "^2.6.8",
"@comunica/context-entries": "^2.6.8",
"@comunica/core": "^2.6.8",
"@comunica/types": "^2.6.8",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-sparql-endpoint": {
"version": "2.6.9",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-sparql-endpoint/-/actor-query-operation-sparql-endpoint-2.6.9.tgz",
"integrity": "sha512-ryzf915lB6ALG7zjbKrKp4OJ/JASjSIDN4J7xAeL1xXNXKEwKfjMXM2kLrCHF9RvTP6ovA8q5u07aUFKVM/KfA==",
"dependencies": {
"@comunica/bindings-factory": "^2.5.1",
"@comunica/bus-http": "^2.6.9",
"@comunica/bus-query-operation": "^2.6.8",
"@comunica/bus-rdf-resolve-quad-pattern": "^2.6.8",
"@comunica/bus-rdf-update-quads": "^2.6.9",
"@comunica/context-entries": "^2.6.8",
"@comunica/core": "^2.6.8",
"@comunica/mediatortype-httprequests": "^2.6.8",
"@comunica/types": "^2.6.8",
"@rdfjs/types": "*",
"asynciterator": "^3.8.0",
"fetch-sparql-endpoint": "^3.1.1",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-union": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-union/-/actor-query-operation-union-2.6.8.tgz",
"integrity": "sha512-MHjo5aXG6cPEjqRQ7BTfjVeU8A02s6IZsY5luAnYU2Kb50Sc8qj75ljOdRAGDiQLLjX1kKCq+Kc4I4h77uFKNA==",
"dependencies": {
"@comunica/bus-query-operation": "^2.6.8",
"@comunica/core": "^2.6.8",
"@comunica/types": "^2.6.8",
"@rdfjs/types": "*",
"asynciterator": "^3.8.0",
"rdf-terms": "^1.9.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-update-add-rewrite": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-add-rewrite/-/actor-query-operation-update-add-rewrite-2.6.8.tgz",
"integrity": "sha512-c8q5Fw5BmhhzaGkTmG9GE99LXHGvpXzwNlSqylDXXHEM/H/PHzLqQuVd5qY4m0i0BjDsJ6rvj8ZZGaIf8f2JMg==",
"dependencies": {
"@comunica/bus-query-operation": "^2.6.8",
"@comunica/core": "^2.6.8",
"@comunica/types": "^2.6.8",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-update-clear": {
"version": "2.6.9",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-clear/-/actor-query-operation-update-clear-2.6.9.tgz",
"integrity": "sha512-qytm13fhB1nbT3jZzzIonQZM4sw52G9B0yur2Hy5RcFL7oh2s0lJj220KGhzr4Q2DhalOo/pNcRhlJCY0vifbw==",
"dependencies": {
"@comunica/bus-query-operation": "^2.6.8",
"@comunica/bus-rdf-update-quads": "^2.6.9",
"@comunica/core": "^2.6.8",
"@comunica/types": "^2.6.8",
"@rdfjs/types": "*",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-update-compositeupdate": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-compositeupdate/-/actor-query-operation-update-compositeupdate-2.6.8.tgz",
"integrity": "sha512-m/kZli1pds74ZeAXQSS+qDEl6bn/4fvP+fygzfYreoty8wjyPdocgaMmQyyrHdnYCxwSI3RKbRV5DaYw35+Wwg==",
"dependencies": {
"@comunica/bus-query-operation": "^2.6.8",
"@comunica/core": "^2.6.8",
"@comunica/types": "^2.6.8",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-update-copy-rewrite": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-copy-rewrite/-/actor-query-operation-update-copy-rewrite-2.6.8.tgz",
"integrity": "sha512-orA7ElJMR3FsOMvHh2Xj4o1FRt4GhnvaIiIXcjziJMgZnDj2dpswkclL1ALawLlRFcT7G6Pc7rff/mrAE9ldLg==",
"dependencies": {
"@comunica/bus-query-operation": "^2.6.8",
"@comunica/core": "^2.6.8",
"@comunica/types": "^2.6.8",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-update-create": {
"version": "2.6.9",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-create/-/actor-query-operation-update-create-2.6.9.tgz",
"integrity": "sha512-ylA9sIUO5a2Gm0qg8xZg6uH2E1tYQZYY2h4ZdDoxDmF8jjiXQz0xxzg6i6CKbY1C8iYMqPgEj9UWDBjZv5Ab6Q==",
"dependencies": {
"@comunica/bus-query-operation": "^2.6.8",
"@comunica/bus-rdf-update-quads": "^2.6.9",
"@comunica/core": "^2.6.8",
"@comunica/types": "^2.6.8",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-update-deleteinsert": {
"version": "2.6.9",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-deleteinsert/-/actor-query-operation-update-deleteinsert-2.6.9.tgz",
"integrity": "sha512-eOy2cXeJv+e9D5irP++wPglmZ959d3I9qN+IVKyCKFreaYZS+rR3+e4gR1Z6HOgX35jhE2i1n4sNfGdXuRJDpQ==",
"dependencies": {
"@comunica/actor-query-operation-construct": "^2.6.8",
"@comunica/bindings-factory": "^2.5.1",
"@comunica/bus-query-operation": "^2.6.8",
"@comunica/bus-rdf-update-quads": "^2.6.9",
"@comunica/core": "^2.6.8",
"@comunica/types": "^2.6.8",
"@rdfjs/types": "*",
"asynciterator": "^3.8.0",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-update-drop": {
"version": "2.6.9",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-drop/-/actor-query-operation-update-drop-2.6.9.tgz",
"integrity": "sha512-MwsxZzPh6eRvkqYqHb1Axt8bLbslRcd6sZuzQQbiV7i1WaqGqEOyWBJZYT8zP5MjEcy3hQQIgj49+GBaHAsP9w==",
"dependencies": {
"@comunica/bus-query-operation": "^2.6.8",
"@comunica/bus-rdf-update-quads": "^2.6.9",
"@comunica/core": "^2.6.8",
"@comunica/types": "^2.6.8",
"@rdfjs/types": "*",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-update-load": {
"version": "2.6.9",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-load/-/actor-query-operation-update-load-2.6.9.tgz",
"integrity": "sha512-3PeXLgXOAwZygiM3LpGWPAJddMAYWTTxW7ANL1QfNlS6II4YwUUGoYQXOSY75vWoT7gtpLGVEpSNbaUxLbS41A==",
"dependencies": {
"@comunica/bus-query-operation": "^2.6.8",
"@comunica/bus-rdf-update-quads": "^2.6.9",
"@comunica/context-entries": "^2.6.8",
"@comunica/core": "^2.6.8",
"@comunica/types": "^2.6.8",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-update-move-rewrite": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-move-rewrite/-/actor-query-operation-update-move-rewrite-2.6.8.tgz",
"integrity": "sha512-kmfwRIuF3Uj5zFC40fB45G/MLisCP89zgRSW1G0+9mK30UyJPg/bZEbWGuk1i1TUo1YoBBhBMT+hE+A+cdRDvA==",
"dependencies": {
"@comunica/bus-query-operation": "^2.6.8",
"@comunica/core": "^2.6.8",
"@comunica/types": "^2.6.8",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-values": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-values/-/actor-query-operation-values-2.6.8.tgz",
"integrity": "sha512-WxpXmYVVb6NAXQNieLPc+z7NbHiX0hf4d97xHjwbzxpB7/5SIJsEbFkTgezZZurXYrPfb/PA39bMycsKhYEUGg==",
"dependencies": {
"@comunica/bindings-factory": "^2.5.1",
"@comunica/bus-query-operation": "^2.6.8",
"@comunica/core": "^2.6.8",
"@comunica/types": "^2.6.8",
"asynciterator": "^3.8.0",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-parse-graphql": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-parse-graphql/-/actor-query-parse-graphql-2.6.8.tgz",
"integrity": "sha512-xN/k9j96/dMauvdMoprMbPd8LfWOUEl7CoSIMgaCJAlGl4JhMwQcfOLrBO1CyzW0AGR11JZiamg5M6LXIh3HAw==",
"dependencies": {
"@comunica/bus-query-parse": "^2.6.8",
"@comunica/context-entries": "^2.6.8",
"@comunica/core": "^2.6.8",
"graphql-to-sparql": "^3.0.1"
}
},
"node_modules/@comunica/actor-query-parse-sparql": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-parse-sparql/-/actor-query-parse-sparql-2.6.8.tgz",
"integrity": "sha512-43QHG05zWZA7DancxCZV6aerJmUg+5TEwCZk8NN0U/TozuV3mwfgKa4n5+OCljMX44wpMCdL9fRKC9HOfFP22g==",
"dependencies": {
"@comunica/bus-query-parse": "^2.6.8",
"@comunica/core": "^2.6.8",
"@types/sparqljs": "^3.1.3",
"sparqlalgebrajs": "^4.0.5",
"sparqljs": "^3.6.1"
}
},
"node_modules/@comunica/actor-query-result-serialize-json": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-json/-/actor-query-result-serialize-json-2.6.8.tgz",
"integrity": "sha512-bnc7Mhgpx8PII9ZZHKNrHhF3yFZXH7rAPINjTMgy6zLRN7v3BLOOj0pS8sb8T9fpgnxbmaU8t0aLnK4/ppmKLA==",
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.6.8",
"@comunica/types": "^2.6.8",
"rdf-string": "^1.6.1",
"readable-stream": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-rdf": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-rdf/-/actor-query-result-serialize-rdf-2.6.8.tgz",
"integrity": "sha512-0jPjloCHQDpCmN4tkOs7R/ltwuLG6uKp8R8pZDt4RL4xwNz7eYreAllnTtY7fOxMhtExvy72hE5q6OYN1GLWRg==",
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.6.8",
"@comunica/bus-rdf-serialize": "^2.6.8",
"@comunica/core": "^2.6.8",
"@comunica/types": "^2.6.8"
}
},
"node_modules/@comunica/actor-query-result-serialize-simple": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-simple/-/actor-query-result-serialize-simple-2.6.8.tgz",
"integrity": "sha512-BTFZNuS7LcKPDZzPWR70XjZycPIkvCEtjiLNW5Zve+V2rbxawCzmDjzzjwpQREypWjlEPbwK42CN5b7uIuqkig==",
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.6.8",
"@comunica/types": "^2.6.8",
"readable-stream": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-sparql-csv": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-sparql-csv/-/actor-query-result-serialize-sparql-csv-2.6.8.tgz",
"integrity": "sha512-oLsNOH+iJJR6KcVmG4oIkC8eYJ7zXaKFAjcIl40KOSc8rgrMfw2jhtCSimgnz944VkrAiGzXA41ZFTe80BxB2Q==",
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.6.8",
"@comunica/types": "^2.6.8",
"@rdfjs/types": "*",
"readable-stream": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-sparql-json": {
"version": "2.6.9",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-sparql-json/-/actor-query-result-serialize-sparql-json-2.6.9.tgz",
"integrity": "sha512-b4xEhtvNoQ0l/GUqfvyvssPubH59NJbiznvjtLNhKj4nXci6BCH6x3nTAbgyvaJ/p0CcX8RXIq1q4TFquht2bA==",
"dependencies": {
"@comunica/bus-http": "^2.6.9",
"@comunica/bus-http-invalidate": "^2.6.8",
"@comunica/bus-query-result-serialize": "^2.6.8",
"@comunica/core": "^2.6.8",
"@comunica/types": "^2.6.8",
"@rdfjs/types": "*",
"readable-stream": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-sparql-tsv": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-sparql-tsv/-/actor-query-result-serialize-sparql-tsv-2.6.8.tgz",
"integrity": "sha512-TurvRPRktYzv6punDaXvASlRxWy5z+Mcd5apliruY+nx4a3kVYkIP79MOagvYZKBuWwDlqrxvEiz4BsMGpOq1Q==",
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.6.8",
"@comunica/types": "^2.6.8",
"@rdfjs/types": "*",
"rdf-string-ttl": "^1.3.2",
"readable-stream": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-sparql-xml": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-sparql-xml/-/actor-query-result-serialize-sparql-xml-2.6.8.tgz",
"integrity": "sha512-pz04tyvBogXxWUGrku5Ih9ulcMCgCdRIANYMJVO72eF4eElLq0GAW866+SRpcwPecwrGXxt4/B1CNn1jS691qw==",
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.6.8",
"@comunica/types": "^2.6.8",
"@rdfjs/types": "*",
"readable-stream": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-stats": {
"version": "2.6.9",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-stats/-/actor-query-result-serialize-stats-2.6.9.tgz",
"integrity": "sha512-rfANxmiQD8xReSU0RkHiV/9O9QLvC/RLl83k6IcGsgGjeK0yHgucEdC/FdXE2duheXTVmlt1CjxqQ5sG+AKE6g==",
"dependencies": {
"@comunica/bus-http": "^2.6.9",
"@comunica/bus-http-invalidate": "^2.6.8",
"@comunica/bus-query-result-serialize": "^2.6.8",
"@comunica/core": "^2.6.8",
"@comunica/types": "^2.6.8",
"readable-stream": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-table": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-table/-/actor-query-result-serialize-table-2.6.8.tgz",
"integrity": "sha512-r6zfjz3DXrs3FbLg9h3DRUnXrxr/pfwfDFyAI+iDObqB9Q7TbbB8MF9XHBNGLVwNBIDqsRMcONuz+L9nzVFzBQ==",
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.6.8",
"@comunica/types": "^2.6.8",
"@rdfjs/types": "*",
"rdf-data-factory": "^1.1.1",
"rdf-terms": "^1.9.1",
"readable-stream": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-tree": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-tree/-/actor-query-result-serialize-tree-2.6.8.tgz",
"integrity": "sha512-ji01WU546grkS4v7UhU//71a0AsPuT8XvWEtXSNLxqpZc9qITfS4X3XnW026sNPMiIHohqTUrF7HbpuhVS02MQ==",
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.6.8",
"@comunica/context-entries": "^2.6.8",
"@comunica/core": "^2.6.8",
"@comunica/types": "^2.6.8",
"readable-stream": "^4.2.0",
"sparqljson-to-tree": "^3.0.1"
}
},
"node_modules/@comunica/actor-rdf-join-entries-sort-cardinality": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-join-entries-sort-cardinality/-/actor-rdf-join-entries-sort-cardinality-2.6.8.tgz",
"integrity": "sha512-P6NT2QHmZm4wy/63CL8aAP83+e0ym2PI+EfxxoEHMEU7H2O3uPKdDUsD26iIfD9b/LSRJIydSMp+JJ76g2X0Kg==",
"dependencies": {
"@comunica/bus-rdf-join-entries-sort": "^2.6.8",
"@comunica/core": "^2.6.8"
}
},
"node_modules/@comunica/actor-rdf-join-inner-hash": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-join-inner-hash/-/actor-rdf-join-inner-hash-2.6.8.tgz",
"integrity": "sha512-ddGBGo4Jqb/uf1wMPNfIV9cJ8hR0L0gY74NVv4auJRBnueEkYENFC8UlGSExr/MkSNrPC/BrQ3t1PjIM65q+zA==",
"dependencies": {
"@comunica/bus-rdf-join": "^2.6.8",
"@comunica/mediatortype-join-coefficients": "^2.6.8",
"@comunica/types": "^2.6.8",
"asyncjoin": "^1.1.1"
}
},
"node_modules/@comunica/actor-rdf-join-inner-multi-bind": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-join-inner-multi-bind/-/actor-rdf-join-inner-multi-bind-2.6.8.tgz",
"integrity": "sha512-J8ddecK4dgrpwi738q1dzVgjU9+6GkOWeN2XetklZwRMzF6llCfxae11560eYjN+KhORZ4Q4ptk1iPfGGz+tFg==",
"dependencies": {
"@comunica/bus-query-operation": "^2.6.8",
"@comunica/bus-rdf-join": "^2.6.8",
"@comunica/bus-rdf-join-entries-sort": "^2.6.8",
"@comunica/context-entries": "^2.6.8",
"@comunica/mediatortype-join-coefficients": "^2.6.8",
"@comunica/types": "^2.6.8",
"asynciterator": "^3.8.0",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-rdf-join-inner-multi-empty": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-join-inner-multi-empty/-/actor-rdf-join-inner-multi-empty-2.6.8.tgz",
"integrity": "sha512-27e7EsYy8FfnC1q8prcldBxVCWZsTaTlNzNTm0/hT8x+40KtvAg+dKoQhmeeLW9J8ns259B/YYt2dZS9Xk8pVw==",
"dependencies": {
"@comunica/bus-rdf-join": "^2.6.8",
"@comunica/mediatortype-join-coefficients": "^2.6.8",
"@comunica/types": "^2.6.8",
"asynciterator": "^3.8.0"
}
},
"node_modules/@comunica/actor-rdf-join-inner-multi-smallest": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-join-inner-multi-smallest/-/actor-rdf-join-inner-multi-smallest-2.6.8.tgz",
"integrity": "sha512-mf6ySQ6gJZ4FBJNwXRIlbo45qXzMJvrg1I2WUyC586T5ZJXU0p5903CcEuKz+hgeXUXcoX3Qc/QeN2Orv3QSaw==",
"dependencies": {
"@comunica/bus-query-operation": "^2.6.8",
"@comunica/bus-rdf-join": "^2.6.8",
"@comunica/bus-rdf-join-entries-sort": "^2.6.8",
"@comunica/mediatortype-join-coefficients": "^2.6.8",
"@comunica/types": "^2.6.8",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-rdf-join-inner-nestedloop": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-join-inner-nestedloop/-/actor-rdf-join-inner-nestedloop-2.6.8.tgz",
"integrity": "sha512-JRWmfIkTGk2xDsGG+lzxAv4EQY1YRc+OT7JOtSdddgnB8tJj5esGFF5iwUSEZJt1ykuVmmVbfc193XhRYJ6m7Q==",
"dependencies": {
"@comunica/bus-rdf-join": "^2.6.8",
"@comunica/mediatortype-join-coefficients": "^2.6.8",
"@comunica/types": "^2.6.8",
"asyncjoin": "^1.1.1"
}
},
"node_modules/@comunica/actor-rdf-join-inner-none": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-join-inner-none/-/actor-rdf-join-inner-none-2.6.8.tgz",
"integrity": "sha512-diQfdu8xYrvEtT1SwkjNDLECCN4ph32TURyBvmfIaOZNysA167vV/JlFtjYKHQZ4aH8KieYntgB3krdvaqFT6g==",
"dependencies": {
"@comunica/bindings-factory": "^2.5.1",
"@comunica/bus-rdf-join": "^2.6.8",
"@comunica/mediatortype-join-coefficients": "^2.6.8",
"asynciterator": "^3.8.0"
}
},
"node_modules/@comunica/actor-rdf-join-inner-single": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-join-inner-single/-/actor-rdf-join-inner-single-2.6.8.tgz",
"integrity": "sha512-3dNiL2cS1ix1KDfaqtMLQngMKOfkJ95CmLJOx3W5CEdY2ZiayJJPJguhkQKtV8b3sdRaOx2lyvZpYpUTRYqwlg==",
"dependencies": {
"@comunica/bus-rdf-join": "^2.6.8",
"@comunica/mediatortype-join-coefficients": "^2.6.8"
}
},
"node_modules/@comunica/actor-rdf-join-inner-symmetrichash": {