-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage-lock.json
13170 lines (13170 loc) · 521 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": "@rdfc/dumps-to-feed-processor-ts",
"version": "1.0.7",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@rdfc/dumps-to-feed-processor-ts",
"version": "1.0.7",
"license": "MIT",
"dependencies": {
"@comunica/query-sparql": "^3.3.0",
"@rdfc/js-runner": "^1.0.0-alpha.0",
"@rdfjs/normalize": "^2.0.3",
"@rdfjs/types": "^1.1.2",
"@types/chai": "^4.3.20",
"@types/mocha": "^10.0.10",
"@types/n3": "^1.21.1",
"@types/sinon": "^10.0.20",
"arrayify-stream": "^2.0.1",
"chai": "^4.5.0",
"commander": "^12.1.0",
"extract-cbd-shape": "^0.1.8",
"level": "^8.0.1",
"mocha": "^10.8.2",
"n3": "^1.23.1",
"queue-fifo": "^0.2.6",
"rdf-canonize": "^4.0.1",
"rdf-dereference": "^2.2.0",
"rdf-js": "^4.0.2",
"rdf-parse": "^2.3.3",
"rdf-stores": "^1.0.0",
"streamify-array": "^1.0.1",
"streamify-string": "^1.0.1",
"ts-node": "^10.9.2",
"winston": "^3.17.0"
},
"bin": {
"dumps-to-feed": "dist/bin/dumpsToFeed.js"
},
"devDependencies": {
"@rdfc/shacl-processor-ts": "^0.1.2",
"@types/streamify-array": "^1.0.3",
"@types/streamify-string": "^1.0.4",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
},
"node_modules/@ampproject/remapping": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz",
"integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==",
"dependencies": {
"@jridgewell/gen-mapping": "^0.3.5",
"@jridgewell/trace-mapping": "^0.3.24"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@ampproject/remapping/node_modules/@jridgewell/trace-mapping": {
"version": "0.3.25",
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz",
"integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==",
"dependencies": {
"@jridgewell/resolve-uri": "^3.1.0",
"@jridgewell/sourcemap-codec": "^1.4.14"
}
},
"node_modules/@asamuzakjp/dom-selector": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/@asamuzakjp/dom-selector/-/dom-selector-2.0.2.tgz",
"integrity": "sha512-x1KXOatwofR6ZAYzXRBL5wrdV0vwNxlTCK9NCuLqAzQYARqGcvFwiJA6A1ERuh+dgeA4Dxm3JBYictIes+SqUQ==",
"dependencies": {
"bidi-js": "^1.0.3",
"css-tree": "^2.3.1",
"is-potential-custom-element-name": "^1.0.1"
}
},
"node_modules/@babel/helper-string-parser": {
"version": "7.25.7",
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.7.tgz",
"integrity": "sha512-CbkjYdsJNHFk8uqpEkpCvRs3YRp9tY6FmFY7wLMSYuGYkrdUi7r2lc4/wqsvlHoMznX3WJ9IP8giGPq68T/Y6g==",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-identifier": {
"version": "7.25.7",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.7.tgz",
"integrity": "sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg==",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/parser": {
"version": "7.25.8",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.8.tgz",
"integrity": "sha512-HcttkxzdPucv3nNFmfOOMfFf64KgdJVqm1KaCm25dPGMLElo9nsLvXeJECQg8UzPuBGLyTSA0ZzqCtDSzKTEoQ==",
"dependencies": {
"@babel/types": "^7.25.8"
},
"bin": {
"parser": "bin/babel-parser.js"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@babel/types": {
"version": "7.25.8",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.8.tgz",
"integrity": "sha512-JWtuCu8VQsMladxVz/P4HzHUGCAwpuqacmowgXFs5XjxIgKuNjnLokQzuVjlTvIzODaDmpjT3oxcC48vyk9EWg==",
"dependencies": {
"@babel/helper-string-parser": "^7.25.7",
"@babel/helper-validator-identifier": "^7.25.7",
"to-fast-properties": "^2.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@bcoe/v8-coverage": {
"version": "0.2.3",
"resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz",
"integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw=="
},
"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.6.0",
"resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.6.0.tgz",
"integrity": "sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==",
"engines": {
"node": ">=0.1.90"
}
},
"node_modules/@comunica/actor-abstract-mediatyped": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-mediatyped/-/actor-abstract-mediatyped-2.10.0.tgz",
"integrity": "sha512-0o6WBujsMnIVcwvRJv6Nj+kKPLZzqBS3On48rm01Rh9T1/My0E/buJMXwgcARKCfMonc2mJ9zxpPCh5ilGEU2A==",
"dependencies": {
"@comunica/core": "^2.10.0",
"@comunica/types": "^2.10.0"
}
},
"node_modules/@comunica/actor-abstract-mediatyped/node_modules/@comunica/types": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/types/-/types-2.10.0.tgz",
"integrity": "sha512-1UjPGbZcYrapBjMGUZedrIGcn9rOLpEOlJo1ZkWddFUGTwndVg9d4BZnQw+UnQzXMcLJcdKt94Zns8iEmBqARw==",
"dependencies": {
"@rdfjs/types": "*",
"@types/yargs": "^17.0.24",
"asynciterator": "^3.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-abstract-parse": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-parse/-/actor-abstract-parse-2.10.0.tgz",
"integrity": "sha512-0puCWF+y24EDOOAUUVVbC+tOf4UV+LzEbqi8T5v25jcVGCXyTqfra+bDywfrcv3adrVp18jLCJ46ycaH5xhy9Q==",
"dependencies": {
"@comunica/core": "^2.10.0",
"readable-stream": "^4.4.2"
}
},
"node_modules/@comunica/actor-abstract-path": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-path/-/actor-abstract-path-3.3.0.tgz",
"integrity": "sha512-WwHkIYGp2K8RcH8fv7IiZaUsCQPuD9sr/DFjfGgnfsKAUS+UbkniUfACS1HK7hBTd9vd2sn3lssM7kbGeFVnwA==",
"license": "MIT",
"dependencies": {
"@comunica/bindings-factory": "^3.3.0",
"@comunica/bus-query-operation": "^3.3.0",
"@comunica/context-entries": "^3.3.0",
"@comunica/core": "^3.3.0",
"@comunica/types": "^3.3.0",
"@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-abstract-path/node_modules/@comunica/context-entries": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/context-entries/-/context-entries-3.3.0.tgz",
"integrity": "sha512-6kJGlAF5t/kNm+tejinqsryyzxYeSppWQ5ODF1j6IM5LLueMS7/3SZzNuA0zR6QmxJkRLDcZG0fYWn4mxjFjGw==",
"license": "MIT",
"dependencies": {
"@comunica/core": "^3.3.0",
"@comunica/types": "^3.3.0",
"@rdfjs/types": "*",
"jsonld-context-parser": "^2.2.2",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-abstract-path/node_modules/@comunica/core": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/core/-/core-3.3.0.tgz",
"integrity": "sha512-asLXeydYjcQdMPlHDWjvFsmIwY0LOegM7D8KkTNRW6w+u/+mgwnfj8L0r9/AqfrbJyJNEmrgZJSlY/aBntwZ5Q==",
"license": "MIT",
"dependencies": {
"@comunica/types": "^3.3.0",
"immutable": "^4.1.0"
},
"engines": {
"node": ">=14.0"
}
},
"node_modules/@comunica/actor-context-preprocess-convert-shortcuts": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-convert-shortcuts/-/actor-context-preprocess-convert-shortcuts-3.3.0.tgz",
"integrity": "sha512-PBldmcsJ4n2NHtnN2nHUb+5bLXX22cY7gNJMGcYDXdCvlwqkoRPUDeI0jzbeMbJASZQQjGX1DzJdG/f2cwCwvA==",
"license": "MIT",
"dependencies": {
"@comunica/bus-context-preprocess": "^3.3.0",
"@comunica/core": "^3.3.0",
"@comunica/types": "^3.3.0"
}
},
"node_modules/@comunica/actor-context-preprocess-convert-shortcuts/node_modules/@comunica/core": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/core/-/core-3.3.0.tgz",
"integrity": "sha512-asLXeydYjcQdMPlHDWjvFsmIwY0LOegM7D8KkTNRW6w+u/+mgwnfj8L0r9/AqfrbJyJNEmrgZJSlY/aBntwZ5Q==",
"license": "MIT",
"dependencies": {
"@comunica/types": "^3.3.0",
"immutable": "^4.1.0"
},
"engines": {
"node": ">=14.0"
}
},
"node_modules/@comunica/actor-context-preprocess-query-source-identify": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-query-source-identify/-/actor-context-preprocess-query-source-identify-3.3.0.tgz",
"integrity": "sha512-quWQVwUaXjgMqcqvFzAlDRE5XkmYedmiDEyWZh09gH3ZTOldYLmufWtrA+lGOSQqerI5wGhbyJueTJkBKkjn/A==",
"license": "MIT",
"dependencies": {
"@comunica/bus-context-preprocess": "^3.3.0",
"@comunica/bus-http-invalidate": "^3.3.0",
"@comunica/bus-query-source-identify": "^3.3.0",
"@comunica/context-entries": "^3.3.0",
"@comunica/core": "^3.3.0",
"@comunica/types": "^3.3.0",
"lru-cache": "^10.0.0"
}
},
"node_modules/@comunica/actor-context-preprocess-query-source-identify/node_modules/@comunica/context-entries": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/context-entries/-/context-entries-3.3.0.tgz",
"integrity": "sha512-6kJGlAF5t/kNm+tejinqsryyzxYeSppWQ5ODF1j6IM5LLueMS7/3SZzNuA0zR6QmxJkRLDcZG0fYWn4mxjFjGw==",
"license": "MIT",
"dependencies": {
"@comunica/core": "^3.3.0",
"@comunica/types": "^3.3.0",
"@rdfjs/types": "*",
"jsonld-context-parser": "^2.2.2",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-context-preprocess-query-source-identify/node_modules/@comunica/core": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/core/-/core-3.3.0.tgz",
"integrity": "sha512-asLXeydYjcQdMPlHDWjvFsmIwY0LOegM7D8KkTNRW6w+u/+mgwnfj8L0r9/AqfrbJyJNEmrgZJSlY/aBntwZ5Q==",
"license": "MIT",
"dependencies": {
"@comunica/types": "^3.3.0",
"immutable": "^4.1.0"
},
"engines": {
"node": ">=14.0"
}
},
"node_modules/@comunica/actor-context-preprocess-query-source-skolemize": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-query-source-skolemize/-/actor-context-preprocess-query-source-skolemize-3.3.0.tgz",
"integrity": "sha512-VWKlEzrl8URfF44S0PMjCur4xSKJcFfXB/wWXGuPu6EJgJ5VjfD7BExFcfR3HVYhM7DWrYizp/Tywt+My7QlzA==",
"license": "MIT",
"dependencies": {
"@comunica/bus-context-preprocess": "^3.3.0",
"@comunica/context-entries": "^3.3.0",
"@comunica/core": "^3.3.0",
"@comunica/data-factory": "^3.1.0",
"@comunica/metadata": "^3.3.0",
"@comunica/types": "^3.3.0",
"@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-query-source-skolemize/node_modules/@comunica/context-entries": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/context-entries/-/context-entries-3.3.0.tgz",
"integrity": "sha512-6kJGlAF5t/kNm+tejinqsryyzxYeSppWQ5ODF1j6IM5LLueMS7/3SZzNuA0zR6QmxJkRLDcZG0fYWn4mxjFjGw==",
"license": "MIT",
"dependencies": {
"@comunica/core": "^3.3.0",
"@comunica/types": "^3.3.0",
"@rdfjs/types": "*",
"jsonld-context-parser": "^2.2.2",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-context-preprocess-query-source-skolemize/node_modules/@comunica/core": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/core/-/core-3.3.0.tgz",
"integrity": "sha512-asLXeydYjcQdMPlHDWjvFsmIwY0LOegM7D8KkTNRW6w+u/+mgwnfj8L0r9/AqfrbJyJNEmrgZJSlY/aBntwZ5Q==",
"license": "MIT",
"dependencies": {
"@comunica/types": "^3.3.0",
"immutable": "^4.1.0"
},
"engines": {
"node": ">=14.0"
}
},
"node_modules/@comunica/actor-context-preprocess-set-defaults": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-set-defaults/-/actor-context-preprocess-set-defaults-3.3.0.tgz",
"integrity": "sha512-NTmetO+XMF0Vvhq0hx2lRrmOwa+8+5LNtSaFEZCSSMjiDwA0C/BfOZ69oMLNwnbI1W54CG3hOmg1guTjCjC82Q==",
"license": "MIT",
"dependencies": {
"@comunica/bus-context-preprocess": "^3.3.0",
"@comunica/context-entries": "^3.3.0",
"@comunica/core": "^3.3.0",
"@comunica/types": "^3.3.0",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-context-preprocess-set-defaults/node_modules/@comunica/context-entries": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/context-entries/-/context-entries-3.3.0.tgz",
"integrity": "sha512-6kJGlAF5t/kNm+tejinqsryyzxYeSppWQ5ODF1j6IM5LLueMS7/3SZzNuA0zR6QmxJkRLDcZG0fYWn4mxjFjGw==",
"license": "MIT",
"dependencies": {
"@comunica/core": "^3.3.0",
"@comunica/types": "^3.3.0",
"@rdfjs/types": "*",
"jsonld-context-parser": "^2.2.2",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-context-preprocess-set-defaults/node_modules/@comunica/core": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/core/-/core-3.3.0.tgz",
"integrity": "sha512-asLXeydYjcQdMPlHDWjvFsmIwY0LOegM7D8KkTNRW6w+u/+mgwnfj8L0r9/AqfrbJyJNEmrgZJSlY/aBntwZ5Q==",
"license": "MIT",
"dependencies": {
"@comunica/types": "^3.3.0",
"immutable": "^4.1.0"
},
"engines": {
"node": ">=14.0"
}
},
"node_modules/@comunica/actor-context-preprocess-source-to-destination": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-source-to-destination/-/actor-context-preprocess-source-to-destination-3.3.0.tgz",
"integrity": "sha512-bFimulVuuSTY5SKAJKXiseYvUbBgFuh5+FCBvzidndDySPPLVUbGS6xlO6+mO9D7C2eY+ipVJbzXx+aIhqjD+A==",
"license": "MIT",
"dependencies": {
"@comunica/bus-context-preprocess": "^3.3.0",
"@comunica/context-entries": "^3.3.0",
"@comunica/core": "^3.3.0",
"@comunica/types": "^3.3.0"
}
},
"node_modules/@comunica/actor-context-preprocess-source-to-destination/node_modules/@comunica/context-entries": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/context-entries/-/context-entries-3.3.0.tgz",
"integrity": "sha512-6kJGlAF5t/kNm+tejinqsryyzxYeSppWQ5ODF1j6IM5LLueMS7/3SZzNuA0zR6QmxJkRLDcZG0fYWn4mxjFjGw==",
"license": "MIT",
"dependencies": {
"@comunica/core": "^3.3.0",
"@comunica/types": "^3.3.0",
"@rdfjs/types": "*",
"jsonld-context-parser": "^2.2.2",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-context-preprocess-source-to-destination/node_modules/@comunica/core": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/core/-/core-3.3.0.tgz",
"integrity": "sha512-asLXeydYjcQdMPlHDWjvFsmIwY0LOegM7D8KkTNRW6w+u/+mgwnfj8L0r9/AqfrbJyJNEmrgZJSlY/aBntwZ5Q==",
"license": "MIT",
"dependencies": {
"@comunica/types": "^3.3.0",
"immutable": "^4.1.0"
},
"engines": {
"node": ">=14.0"
}
},
"node_modules/@comunica/actor-dereference-fallback": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-fallback/-/actor-dereference-fallback-2.10.0.tgz",
"integrity": "sha512-RSc/ScPdC7l13aZjz/6r4niWA8WDETbzuESQKKSWXi/HAlFOyOxdrDADdayVY2oyeZHIQibeNRtSi2ItzU7OPQ==",
"dependencies": {
"@comunica/bus-dereference": "^2.10.0",
"@comunica/core": "^2.10.0"
}
},
"node_modules/@comunica/actor-dereference-file": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-file/-/actor-dereference-file-2.10.0.tgz",
"integrity": "sha512-WXfAyHm0M3+YbYEtLtasT6YHsrzTAevmH27ex8r51qKNj2LK74llpw4mSeea3xyjQR30jVnKBIJSxuSbN64Now==",
"dependencies": {
"@comunica/bus-dereference": "^2.10.0",
"@comunica/core": "^2.10.0"
}
},
"node_modules/@comunica/actor-dereference-http": {
"version": "2.10.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-http/-/actor-dereference-http-2.10.2.tgz",
"integrity": "sha512-gdDo83W1TAgD2jx0kVbzZKzzt++L4Y4fbyTOH3duy6vx1EMGGZlNCp6I1uguepKEjNX4N0zhAcZzdJcv8A3XMA==",
"dependencies": {
"@comunica/bus-dereference": "^2.10.0",
"@comunica/bus-http": "^2.10.2",
"@comunica/core": "^2.10.0",
"cross-fetch": "^4.0.0",
"relative-to-absolute-iri": "^1.0.7",
"stream-to-string": "^1.2.0"
}
},
"node_modules/@comunica/actor-dereference-rdf-parse": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-rdf-parse/-/actor-dereference-rdf-parse-2.10.0.tgz",
"integrity": "sha512-ANWL6Bv+2WHUjVRS7hfkOfVBNJs8xYZ9KHlgBOQ94CKtQZB9uSMjdb1hLp/cQjiDmFIWLn0+GM5Xi0KFwBkVAw==",
"dependencies": {
"@comunica/bus-dereference": "^2.10.0",
"@comunica/bus-dereference-rdf": "^2.10.0",
"@comunica/bus-rdf-parse": "^2.10.0"
}
},
"node_modules/@comunica/actor-dereference-rdf-parse/node_modules/@comunica/bus-rdf-parse": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/bus-rdf-parse/-/bus-rdf-parse-2.10.0.tgz",
"integrity": "sha512-EgCMZACfTG/+mayQpExWt0HoBT32BBVC1aS1lC43fXKBTxJ8kYrSrorVUuMACoh4dQVGTb+7j1j4K0hGNVzXGA==",
"dependencies": {
"@comunica/actor-abstract-mediatyped": "^2.10.0",
"@comunica/actor-abstract-parse": "^2.10.0",
"@comunica/core": "^2.10.0",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-hash-bindings-sha1": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-hash-bindings-sha1/-/actor-hash-bindings-sha1-3.3.0.tgz",
"integrity": "sha512-uu3pTgo6t/Qw0atLDCz4HvvE4ikpsm3q5YdKVG6IalWhJKO+dtSrHqHZ8OhDzYfQ12PhCgKGiViW3a8QLp9dbQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-hash-bindings": "^3.3.0",
"@comunica/core": "^3.3.0",
"canonicalize": "^2.0.0",
"hash.js": "^1.1.7",
"rdf-string": "^1.6.1"
}
},
"node_modules/@comunica/actor-hash-bindings-sha1/node_modules/@comunica/core": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/core/-/core-3.3.0.tgz",
"integrity": "sha512-asLXeydYjcQdMPlHDWjvFsmIwY0LOegM7D8KkTNRW6w+u/+mgwnfj8L0r9/AqfrbJyJNEmrgZJSlY/aBntwZ5Q==",
"license": "MIT",
"dependencies": {
"@comunica/types": "^3.3.0",
"immutable": "^4.1.0"
},
"engines": {
"node": ">=14.0"
}
},
"node_modules/@comunica/actor-hash-bindings-sha1/node_modules/canonicalize": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/canonicalize/-/canonicalize-2.0.0.tgz",
"integrity": "sha512-ulDEYPv7asdKvqahuAY35c1selLdzDwHqugK92hfkzvlDCwXRRelDkR+Er33md/PtnpqHemgkuDPanZ4fiYZ8w=="
},
"node_modules/@comunica/actor-hash-quads-sha1": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-hash-quads-sha1/-/actor-hash-quads-sha1-3.3.0.tgz",
"integrity": "sha512-tItAlM+jKOHUVOqvEoUXgqFCWQu+Q6nbBvFIzGco31bivygDeVM4kCB0nZuoaP33R+7F4k7Nj4NS7burf9RT6A==",
"license": "MIT",
"dependencies": {
"@comunica/bus-hash-quads": "^3.3.0",
"@comunica/core": "^3.3.0",
"hash.js": "^1.1.7",
"rdf-string": "^1.6.1"
}
},
"node_modules/@comunica/actor-hash-quads-sha1/node_modules/@comunica/core": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/core/-/core-3.3.0.tgz",
"integrity": "sha512-asLXeydYjcQdMPlHDWjvFsmIwY0LOegM7D8KkTNRW6w+u/+mgwnfj8L0r9/AqfrbJyJNEmrgZJSlY/aBntwZ5Q==",
"license": "MIT",
"dependencies": {
"@comunica/types": "^3.3.0",
"immutable": "^4.1.0"
},
"engines": {
"node": ">=14.0"
}
},
"node_modules/@comunica/actor-http-fetch": {
"version": "2.10.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-fetch/-/actor-http-fetch-2.10.2.tgz",
"integrity": "sha512-siHGx0TMVNb2gXvOroq0B3JE6uuS+4s+MsDkntqdBNVigwVYqLpNSKEaL5is8pputFfohJfDQY06lAHbfDNEcw==",
"dependencies": {
"@comunica/bus-http": "^2.10.2",
"@comunica/context-entries": "^2.10.0",
"@comunica/mediatortype-time": "^2.10.0",
"abort-controller": "^3.0.0",
"cross-fetch": "^4.0.0"
}
},
"node_modules/@comunica/actor-http-proxy": {
"version": "2.10.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-proxy/-/actor-http-proxy-2.10.2.tgz",
"integrity": "sha512-3yUF8BCh4nwq8J6NRILEsyNrQNStkE9ggJ7hYwRfA1XcMgz1pANNaWJ2P2TEKH1jNinr23bL3JeuUZCm9Kz9dA==",
"dependencies": {
"@comunica/bus-http": "^2.10.2",
"@comunica/context-entries": "^2.10.0",
"@comunica/mediatortype-time": "^2.10.0",
"@comunica/types": "^2.10.0"
}
},
"node_modules/@comunica/actor-http-proxy/node_modules/@comunica/types": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/types/-/types-2.10.0.tgz",
"integrity": "sha512-1UjPGbZcYrapBjMGUZedrIGcn9rOLpEOlJo1ZkWddFUGTwndVg9d4BZnQw+UnQzXMcLJcdKt94Zns8iEmBqARw==",
"dependencies": {
"@rdfjs/types": "*",
"@types/yargs": "^17.0.24",
"asynciterator": "^3.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-http-wayback": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-wayback/-/actor-http-wayback-3.3.0.tgz",
"integrity": "sha512-lXKuQAm0A5if09XXKWS87FSWgk8i7jtsQpHyK9tIMRV/qi5PbSbvegfJaMSPD3spxItguJxxeirJVrJFazWCuw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-http": "^3.3.0",
"@comunica/context-entries": "^3.3.0",
"@comunica/core": "^3.3.0",
"@jeswr/stream-to-string": "^2.0.0",
"cross-fetch": "^4.0.0"
}
},
"node_modules/@comunica/actor-http-wayback/node_modules/@comunica/bus-http": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/bus-http/-/bus-http-3.3.0.tgz",
"integrity": "sha512-cyno/dm51ZtIoJM8XQSvtN2N38ta0ywnB7cNgiMqdbw5z7c+ZOEXWnHIafCCgz2JhlC1xgXP2iMXHDNC4yJD0Q==",
"license": "MIT",
"dependencies": {
"@comunica/core": "^3.3.0",
"@jeswr/stream-to-string": "^2.0.0",
"is-stream": "^2.0.1",
"readable-from-web": "^1.0.0",
"readable-stream-node-to-web": "^1.0.1",
"web-streams-ponyfill": "^1.4.2"
}
},
"node_modules/@comunica/actor-http-wayback/node_modules/@comunica/context-entries": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/context-entries/-/context-entries-3.3.0.tgz",
"integrity": "sha512-6kJGlAF5t/kNm+tejinqsryyzxYeSppWQ5ODF1j6IM5LLueMS7/3SZzNuA0zR6QmxJkRLDcZG0fYWn4mxjFjGw==",
"license": "MIT",
"dependencies": {
"@comunica/core": "^3.3.0",
"@comunica/types": "^3.3.0",
"@rdfjs/types": "*",
"jsonld-context-parser": "^2.2.2",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-http-wayback/node_modules/@comunica/core": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/core/-/core-3.3.0.tgz",
"integrity": "sha512-asLXeydYjcQdMPlHDWjvFsmIwY0LOegM7D8KkTNRW6w+u/+mgwnfj8L0r9/AqfrbJyJNEmrgZJSlY/aBntwZ5Q==",
"license": "MIT",
"dependencies": {
"@comunica/types": "^3.3.0",
"immutable": "^4.1.0"
},
"engines": {
"node": ">=14.0"
}
},
"node_modules/@comunica/actor-init-query": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-init-query/-/actor-init-query-3.3.0.tgz",
"integrity": "sha512-u2pH5tLEe967Vkm/9vmfjUd4LXYsvgaMSV4hrfCqIFQCbVxPfT73AFcRldN839hUUIIHJKYZLCUqu4tYz/xmbg==",
"license": "MIT",
"dependencies": {
"@comunica/actor-http-proxy": "^3.3.0",
"@comunica/bus-http-invalidate": "^3.3.0",
"@comunica/bus-init": "^3.3.0",
"@comunica/bus-query-process": "^3.3.0",
"@comunica/bus-query-result-serialize": "^3.3.0",
"@comunica/context-entries": "^3.3.0",
"@comunica/core": "^3.3.0",
"@comunica/logger-pretty": "^3.3.0",
"@comunica/runner": "^3.3.0",
"@comunica/types": "^3.3.0",
"@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-init-query/node_modules/@comunica/actor-http-proxy": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-proxy/-/actor-http-proxy-3.3.0.tgz",
"integrity": "sha512-VPj+9ldKnOMlPJmjW/ssekAgwX+rfPv4TdJmWTNt+4y/CTMfRCfiBIBbzgcmMTun+fQ8D9b2g7k3op5L/SRKNw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-http": "^3.3.0",
"@comunica/context-entries": "^3.3.0",
"@comunica/mediatortype-time": "^3.3.0",
"@comunica/types": "^3.3.0"
}
},
"node_modules/@comunica/actor-init-query/node_modules/@comunica/bus-http": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/bus-http/-/bus-http-3.3.0.tgz",
"integrity": "sha512-cyno/dm51ZtIoJM8XQSvtN2N38ta0ywnB7cNgiMqdbw5z7c+ZOEXWnHIafCCgz2JhlC1xgXP2iMXHDNC4yJD0Q==",
"license": "MIT",
"dependencies": {
"@comunica/core": "^3.3.0",
"@jeswr/stream-to-string": "^2.0.0",
"is-stream": "^2.0.1",
"readable-from-web": "^1.0.0",
"readable-stream-node-to-web": "^1.0.1",
"web-streams-ponyfill": "^1.4.2"
}
},
"node_modules/@comunica/actor-init-query/node_modules/@comunica/bus-init": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/bus-init/-/bus-init-3.3.0.tgz",
"integrity": "sha512-fCkTgxnbWYqYcC/Q0iQKQKzfD27/ulxFFQLphM9yeeC6C3TszGVfrfjpqm/koYF6nNZnfVbOVOSHzbKV9cbLRA==",
"license": "MIT",
"dependencies": {
"@comunica/core": "^3.3.0",
"readable-stream": "^4.4.2"
}
},
"node_modules/@comunica/actor-init-query/node_modules/@comunica/context-entries": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/context-entries/-/context-entries-3.3.0.tgz",
"integrity": "sha512-6kJGlAF5t/kNm+tejinqsryyzxYeSppWQ5ODF1j6IM5LLueMS7/3SZzNuA0zR6QmxJkRLDcZG0fYWn4mxjFjGw==",
"license": "MIT",
"dependencies": {
"@comunica/core": "^3.3.0",
"@comunica/types": "^3.3.0",
"@rdfjs/types": "*",
"jsonld-context-parser": "^2.2.2",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-init-query/node_modules/@comunica/core": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/core/-/core-3.3.0.tgz",
"integrity": "sha512-asLXeydYjcQdMPlHDWjvFsmIwY0LOegM7D8KkTNRW6w+u/+mgwnfj8L0r9/AqfrbJyJNEmrgZJSlY/aBntwZ5Q==",
"license": "MIT",
"dependencies": {
"@comunica/types": "^3.3.0",
"immutable": "^4.1.0"
},
"engines": {
"node": ">=14.0"
}
},
"node_modules/@comunica/actor-init-query/node_modules/@comunica/mediatortype-time": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/mediatortype-time/-/mediatortype-time-3.3.0.tgz",
"integrity": "sha512-jRO7Wtl0L2g41mpwHVp58vm4473ccBbE7zDY6119Lw5jyjIliM7r86aNFRb7LxyDL8ZCEVvQVDfkUNlFjJGhhA==",
"license": "MIT",
"dependencies": {
"@comunica/core": "^3.3.0"
}
},
"node_modules/@comunica/actor-init-query/node_modules/cliui": {
"version": "8.0.1",
"resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz",
"integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
"dependencies": {
"string-width": "^4.2.0",
"strip-ansi": "^6.0.1",
"wrap-ansi": "^7.0.0"
},
"engines": {
"node": ">=12"
}
},
"node_modules/@comunica/actor-init-query/node_modules/yargs": {
"version": "17.7.2",
"resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz",
"integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==",
"dependencies": {
"cliui": "^8.0.1",
"escalade": "^3.1.1",
"get-caller-file": "^2.0.5",
"require-directory": "^2.1.1",
"string-width": "^4.2.3",
"y18n": "^5.0.5",
"yargs-parser": "^21.1.1"
},
"engines": {
"node": ">=12"
}
},
"node_modules/@comunica/actor-init-query/node_modules/yargs-parser": {
"version": "21.1.1",
"resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz",
"integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==",
"engines": {
"node": ">=12"
}
},
"node_modules/@comunica/actor-optimize-query-operation-assign-sources-exhaustive": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-assign-sources-exhaustive/-/actor-optimize-query-operation-assign-sources-exhaustive-3.3.0.tgz",
"integrity": "sha512-YYrsjka21bE3Ig22mNuw5kEr/RBu8awSFVG8S8ACR02FKqjf3eDX/f/zPY8SaVrqMHEj6i2LQQl2MiEYH1OUMw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^3.3.0",
"@comunica/bus-query-operation": "^3.3.0",
"@comunica/bus-rdf-update-quads": "^3.3.0",
"@comunica/context-entries": "^3.3.0",
"@comunica/core": "^3.3.0",
"@comunica/types": "^3.3.0",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-assign-sources-exhaustive/node_modules/@comunica/context-entries": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/context-entries/-/context-entries-3.3.0.tgz",
"integrity": "sha512-6kJGlAF5t/kNm+tejinqsryyzxYeSppWQ5ODF1j6IM5LLueMS7/3SZzNuA0zR6QmxJkRLDcZG0fYWn4mxjFjGw==",
"license": "MIT",
"dependencies": {
"@comunica/core": "^3.3.0",
"@comunica/types": "^3.3.0",
"@rdfjs/types": "*",
"jsonld-context-parser": "^2.2.2",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-assign-sources-exhaustive/node_modules/@comunica/core": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/core/-/core-3.3.0.tgz",
"integrity": "sha512-asLXeydYjcQdMPlHDWjvFsmIwY0LOegM7D8KkTNRW6w+u/+mgwnfj8L0r9/AqfrbJyJNEmrgZJSlY/aBntwZ5Q==",
"license": "MIT",
"dependencies": {
"@comunica/types": "^3.3.0",
"immutable": "^4.1.0"
},
"engines": {
"node": ">=14.0"
}
},
"node_modules/@comunica/actor-optimize-query-operation-bgp-to-join": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-bgp-to-join/-/actor-optimize-query-operation-bgp-to-join-3.3.0.tgz",
"integrity": "sha512-f6gl9byJ3mMaGP/wbUZNevdjDnvdpZmAK9Rids29nr57WVnzPg6AgqcH8DWLwkWEnekNUayUqUaPZ4Lzx78Z1g==",
"license": "MIT",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^3.3.0",
"@comunica/core": "^3.3.0",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-bgp-to-join/node_modules/@comunica/core": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/core/-/core-3.3.0.tgz",
"integrity": "sha512-asLXeydYjcQdMPlHDWjvFsmIwY0LOegM7D8KkTNRW6w+u/+mgwnfj8L0r9/AqfrbJyJNEmrgZJSlY/aBntwZ5Q==",
"license": "MIT",
"dependencies": {
"@comunica/types": "^3.3.0",
"immutable": "^4.1.0"
},
"engines": {
"node": ">=14.0"
}
},
"node_modules/@comunica/actor-optimize-query-operation-construct-distinct": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-construct-distinct/-/actor-optimize-query-operation-construct-distinct-3.3.0.tgz",
"integrity": "sha512-tvcF3gHbsOH6lyJ9LUv57u2apbpTeDxyQ/cSFMR21NqF9zOyGfh1A+xIkNdlAkk/5u+lOf40LwQof/y2UEEvBQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^3.3.0",
"@comunica/context-entries": "^3.3.0",
"@comunica/core": "^3.3.0",
"sparqlalgebrajs": "^4.3.8"
}
},
"node_modules/@comunica/actor-optimize-query-operation-construct-distinct/node_modules/@comunica/context-entries": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/context-entries/-/context-entries-3.3.0.tgz",
"integrity": "sha512-6kJGlAF5t/kNm+tejinqsryyzxYeSppWQ5ODF1j6IM5LLueMS7/3SZzNuA0zR6QmxJkRLDcZG0fYWn4mxjFjGw==",
"license": "MIT",
"dependencies": {
"@comunica/core": "^3.3.0",
"@comunica/types": "^3.3.0",
"@rdfjs/types": "*",
"jsonld-context-parser": "^2.2.2",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-construct-distinct/node_modules/@comunica/core": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/core/-/core-3.3.0.tgz",
"integrity": "sha512-asLXeydYjcQdMPlHDWjvFsmIwY0LOegM7D8KkTNRW6w+u/+mgwnfj8L0r9/AqfrbJyJNEmrgZJSlY/aBntwZ5Q==",
"license": "MIT",
"dependencies": {
"@comunica/types": "^3.3.0",
"immutable": "^4.1.0"
},
"engines": {
"node": ">=14.0"
}
},
"node_modules/@comunica/actor-optimize-query-operation-describe-to-constructs-subject": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-describe-to-constructs-subject/-/actor-optimize-query-operation-describe-to-constructs-subject-3.3.0.tgz",
"integrity": "sha512-iGusHSq+UKXRQv+OiJ0r7kPFeJUUOe11eh2eVHf3KJwwQAk4XegkJcOIDUUGdYPcMVdPwWZXaqoyKrt7QsrZNw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^3.3.0",
"@comunica/core": "^3.3.0",
"rdf-data-factory": "^1.1.2",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-describe-to-constructs-subject/node_modules/@comunica/core": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/core/-/core-3.3.0.tgz",
"integrity": "sha512-asLXeydYjcQdMPlHDWjvFsmIwY0LOegM7D8KkTNRW6w+u/+mgwnfj8L0r9/AqfrbJyJNEmrgZJSlY/aBntwZ5Q==",
"license": "MIT",
"dependencies": {
"@comunica/types": "^3.3.0",
"immutable": "^4.1.0"
},
"engines": {
"node": ">=14.0"
}
},
"node_modules/@comunica/actor-optimize-query-operation-filter-pushdown": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-filter-pushdown/-/actor-optimize-query-operation-filter-pushdown-3.3.0.tgz",
"integrity": "sha512-ciKDFjALj+MT7jOMIqlnr8LLFt2I4gZGjhA/WtE30+mDu9z6ADFD/vPZp+Q5zb7CYROQ4OQgtDQfk2e1XHt+aA==",
"license": "MIT",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^3.3.0",
"@comunica/bus-query-operation": "^3.3.0",
"@comunica/core": "^3.3.0",
"@comunica/types": "^3.3.0",
"@rdfjs/types": "*",
"rdf-terms": "^1.11.0",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-filter-pushdown/node_modules/@comunica/core": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/core/-/core-3.3.0.tgz",
"integrity": "sha512-asLXeydYjcQdMPlHDWjvFsmIwY0LOegM7D8KkTNRW6w+u/+mgwnfj8L0r9/AqfrbJyJNEmrgZJSlY/aBntwZ5Q==",
"license": "MIT",
"dependencies": {
"@comunica/types": "^3.3.0",
"immutable": "^4.1.0"
},
"engines": {
"node": ">=14.0"
}
},
"node_modules/@comunica/actor-optimize-query-operation-group-sources": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-group-sources/-/actor-optimize-query-operation-group-sources-3.3.0.tgz",
"integrity": "sha512-slVXI+tzD3lb7DlOJtWPH6+T5Ht+QDOuYaoWftdcx1B9MYDcZPhxVqsXQJIRdDeTmIjrsU8jZnQw8a/theE7fg==",
"license": "MIT",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^3.3.0",
"@comunica/bus-query-operation": "^3.3.0",
"@comunica/core": "^3.3.0",
"@comunica/types": "^3.3.0",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-group-sources/node_modules/@comunica/core": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/core/-/core-3.3.0.tgz",
"integrity": "sha512-asLXeydYjcQdMPlHDWjvFsmIwY0LOegM7D8KkTNRW6w+u/+mgwnfj8L0r9/AqfrbJyJNEmrgZJSlY/aBntwZ5Q==",
"license": "MIT",
"dependencies": {
"@comunica/types": "^3.3.0",
"immutable": "^4.1.0"
},
"engines": {
"node": ">=14.0"
}
},
"node_modules/@comunica/actor-optimize-query-operation-join-bgp": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-join-bgp/-/actor-optimize-query-operation-join-bgp-3.3.0.tgz",
"integrity": "sha512-MI+5jpGESUjgBU4oadI0NdCEc5zo/zXIkRUfM6X36+YUI4CgbBown6WpUn0e9HkubAqspRDcyDQJo53abI33sw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^3.3.0",
"@comunica/core": "^3.3.0",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-join-bgp/node_modules/@comunica/core": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/core/-/core-3.3.0.tgz",
"integrity": "sha512-asLXeydYjcQdMPlHDWjvFsmIwY0LOegM7D8KkTNRW6w+u/+mgwnfj8L0r9/AqfrbJyJNEmrgZJSlY/aBntwZ5Q==",
"license": "MIT",
"dependencies": {
"@comunica/types": "^3.3.0",
"immutable": "^4.1.0"
},
"engines": {
"node": ">=14.0"
}
},
"node_modules/@comunica/actor-optimize-query-operation-join-connected": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-join-connected/-/actor-optimize-query-operation-join-connected-3.3.0.tgz",
"integrity": "sha512-M3a90xOvvqwcZz5en9LCfJH0U5ZLMTq+OPMuUb8md+Scx1YbABhx0OlQIFc/dyt5oVFqOddACpx1z5Q/S7tmkA==",
"license": "MIT",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^3.3.0",
"@comunica/core": "^3.3.0",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-join-connected/node_modules/@comunica/core": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/core/-/core-3.3.0.tgz",
"integrity": "sha512-asLXeydYjcQdMPlHDWjvFsmIwY0LOegM7D8KkTNRW6w+u/+mgwnfj8L0r9/AqfrbJyJNEmrgZJSlY/aBntwZ5Q==",
"license": "MIT",
"dependencies": {
"@comunica/types": "^3.3.0",
"immutable": "^4.1.0"
},
"engines": {
"node": ">=14.0"
}
},
"node_modules/@comunica/actor-optimize-query-operation-prune-empty-source-operations": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-prune-empty-source-operations/-/actor-optimize-query-operation-prune-empty-source-operations-3.3.0.tgz",
"integrity": "sha512-AOuebIVDy5jBPeVrF6T13gPwxbK8QQemyk77uFpz3F+Tlzi/R6EBBn44YnTWo4oOQEorMI8ua0RMc9Z50PY8/w==",
"license": "MIT",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^3.3.0",
"@comunica/bus-query-operation": "^3.3.0",
"@comunica/context-entries": "^3.3.0",
"@comunica/core": "^3.3.0",
"@comunica/types": "^3.3.0",
"rdf-data-factory": "^1.1.2",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-prune-empty-source-operations/node_modules/@comunica/context-entries": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/context-entries/-/context-entries-3.3.0.tgz",
"integrity": "sha512-6kJGlAF5t/kNm+tejinqsryyzxYeSppWQ5ODF1j6IM5LLueMS7/3SZzNuA0zR6QmxJkRLDcZG0fYWn4mxjFjGw==",
"license": "MIT",
"dependencies": {
"@comunica/core": "^3.3.0",
"@comunica/types": "^3.3.0",
"@rdfjs/types": "*",
"jsonld-context-parser": "^2.2.2",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-prune-empty-source-operations/node_modules/@comunica/core": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/core/-/core-3.3.0.tgz",
"integrity": "sha512-asLXeydYjcQdMPlHDWjvFsmIwY0LOegM7D8KkTNRW6w+u/+mgwnfj8L0r9/AqfrbJyJNEmrgZJSlY/aBntwZ5Q==",