-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
8482 lines (8482 loc) · 321 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": "shacl-playground",
"version": "0.1.8",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "shacl-playground",
"version": "0.1.8",
"license": "MIT",
"devDependencies": {
"lit": "^3.1.4",
"lz-string": "^1.5.0",
"rdf-elements": "^0.1.2",
"rdf-ext": "^2.5.2",
"shacl-engine": "^1.0.0",
"stricter-standard": "^0.3.1",
"vite": "^6.0.3"
}
},
"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==",
"dev": true,
"engines": [
"node >= 0.2.0"
],
"dependencies": {
"buffer": "^6.0.3"
}
},
"node_modules/@codemirror/autocomplete": {
"version": "6.16.3",
"resolved": "https://registry.npmjs.org/@codemirror/autocomplete/-/autocomplete-6.16.3.tgz",
"integrity": "sha512-Vl/tIeRVVUCRDuOG48lttBasNQu8usGgXQawBXI7WJAiUDSFOfzflmEsZFZo48mAvAaa4FZ/4/yLLxFtdJaKYA==",
"dev": true,
"dependencies": {
"@codemirror/language": "^6.0.0",
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.17.0",
"@lezer/common": "^1.0.0"
},
"peerDependencies": {
"@codemirror/language": "^6.0.0",
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0",
"@lezer/common": "^1.0.0"
}
},
"node_modules/@codemirror/commands": {
"version": "6.6.0",
"resolved": "https://registry.npmjs.org/@codemirror/commands/-/commands-6.6.0.tgz",
"integrity": "sha512-qnY+b7j1UNcTS31Eenuc/5YJB6gQOzkUoNmJQc0rznwqSRpeaWWpjkWy2C/MPTcePpsKJEM26hXrOXl1+nceXg==",
"dev": true,
"dependencies": {
"@codemirror/language": "^6.0.0",
"@codemirror/state": "^6.4.0",
"@codemirror/view": "^6.27.0",
"@lezer/common": "^1.1.0"
}
},
"node_modules/@codemirror/language": {
"version": "6.10.2",
"resolved": "https://registry.npmjs.org/@codemirror/language/-/language-6.10.2.tgz",
"integrity": "sha512-kgbTYTo0Au6dCSc/TFy7fK3fpJmgHDv1sG1KNQKJXVi+xBTEeBPY/M30YXiU6mMXeH+YIDLsbrT4ZwNRdtF+SA==",
"dev": true,
"dependencies": {
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.23.0",
"@lezer/common": "^1.1.0",
"@lezer/highlight": "^1.0.0",
"@lezer/lr": "^1.0.0",
"style-mod": "^4.0.0"
}
},
"node_modules/@codemirror/lint": {
"version": "6.8.1",
"resolved": "https://registry.npmjs.org/@codemirror/lint/-/lint-6.8.1.tgz",
"integrity": "sha512-IZ0Y7S4/bpaunwggW2jYqwLuHj0QtESf5xcROewY6+lDNwZ/NzvR4t+vpYgg9m7V8UXLPYqG+lu3DF470E5Oxg==",
"dev": true,
"dependencies": {
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0",
"crelt": "^1.0.5"
}
},
"node_modules/@codemirror/search": {
"version": "6.5.6",
"resolved": "https://registry.npmjs.org/@codemirror/search/-/search-6.5.6.tgz",
"integrity": "sha512-rpMgcsh7o0GuCDUXKPvww+muLA1pDJaFrpq/CCHtpQJYz8xopu4D1hPcKRoDD0YlF8gZaqTNIRa4VRBWyhyy7Q==",
"dev": true,
"dependencies": {
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0",
"crelt": "^1.0.5"
}
},
"node_modules/@codemirror/state": {
"version": "6.4.1",
"resolved": "https://registry.npmjs.org/@codemirror/state/-/state-6.4.1.tgz",
"integrity": "sha512-QkEyUiLhsJoZkbumGZlswmAhA7CBU02Wrz7zvH4SrcifbsqwlXShVXg65f3v/ts57W3dqyamEriMhij1Z3Zz4A==",
"dev": true
},
"node_modules/@codemirror/view": {
"version": "6.28.2",
"resolved": "https://registry.npmjs.org/@codemirror/view/-/view-6.28.2.tgz",
"integrity": "sha512-A3DmyVfjgPsGIjiJqM/zvODUAPQdQl3ci0ghehYNnbt5x+o76xq+dL5+mMBuysDXnI3kapgOkoeJ0sbtL/3qPw==",
"dev": true,
"dependencies": {
"@codemirror/state": "^6.4.0",
"style-mod": "^4.1.0",
"w3c-keyname": "^2.2.4"
}
},
"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==",
"dev": true,
"engines": {
"node": ">=0.1.90"
}
},
"node_modules/@comunica/actor-abstract-mediatyped": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-mediatyped/-/actor-abstract-mediatyped-3.1.0.tgz",
"integrity": "sha512-2Q8MYtjVPJVKQFO1LaYK3TDh830BLa7M1Y8s4fTZ8JrqM5Y16P0F9DPV1/w0krHp5Txpc/49+O6JRH+9La01Wg==",
"dev": true,
"dependencies": {
"@comunica/core": "^3.1.0",
"@comunica/types": "^3.1.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==",
"dev": true,
"dependencies": {
"@comunica/core": "^2.10.0",
"readable-stream": "^4.4.2"
}
},
"node_modules/@comunica/actor-abstract-parse/node_modules/@comunica/core": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/core/-/core-2.10.0.tgz",
"integrity": "sha512-onsGs2iKHUPRxxMOdx42vdxslk8q9FQZdRjQtHJ6SGiCpJwIL9ciBgPIOl2RL2YfzXHemr/0umeNOppRDcWhJA==",
"dev": true,
"dependencies": {
"@comunica/types": "^2.10.0",
"immutable": "^4.1.0"
},
"engines": {
"node": ">=14.0"
}
},
"node_modules/@comunica/actor-abstract-parse/node_modules/@comunica/types": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/types/-/types-2.10.0.tgz",
"integrity": "sha512-1UjPGbZcYrapBjMGUZedrIGcn9rOLpEOlJo1ZkWddFUGTwndVg9d4BZnQw+UnQzXMcLJcdKt94Zns8iEmBqARw==",
"dev": true,
"dependencies": {
"@rdfjs/types": "*",
"@types/yargs": "^17.0.24",
"asynciterator": "^3.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-abstract-path": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-path/-/actor-abstract-path-3.1.2.tgz",
"integrity": "sha512-Fv9rn+t4jfSdDFd1IXwzJMHIkfw2c3Oy/5cDNhtEaAztmvOWiuv2Izta0Bq00Hr4s9TjA150OdhsacaIy1sXGg==",
"dev": true,
"dependencies": {
"@comunica/bindings-factory": "^3.1.0",
"@comunica/bus-query-operation": "^3.1.2",
"@comunica/context-entries": "^3.1.0",
"@comunica/core": "^3.1.0",
"@comunica/types": "^3.1.0",
"@rdfjs/types": "*",
"asynciterator": "^3.9.0",
"rdf-data-factory": "^1.1.1",
"rdf-string": "^1.6.1",
"sparqlalgebrajs": "^4.3.3"
}
},
"node_modules/@comunica/actor-context-preprocess-convert-shortcuts": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-convert-shortcuts/-/actor-context-preprocess-convert-shortcuts-3.1.2.tgz",
"integrity": "sha512-MblUD+nsJMWm9gcGRzFkJXwssxZGDI8FW43BkELEbRP1FTeyqP5RUHDXpvURmV1yULkOGBn1Pkpb7cQloS/amQ==",
"dev": true,
"dependencies": {
"@comunica/bus-context-preprocess": "^3.1.2",
"@comunica/core": "^3.1.0",
"@comunica/types": "^3.1.0"
}
},
"node_modules/@comunica/actor-context-preprocess-query-source-identify": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-query-source-identify/-/actor-context-preprocess-query-source-identify-3.1.2.tgz",
"integrity": "sha512-HUSPZPek5FllSdz6JJRaggYw2vUvTS/tjDW6AWU9C/SDhhRGgVG6QNCl82Mjui+CGO3tHUXy24TB0TBH5rn+HQ==",
"dev": true,
"dependencies": {
"@comunica/bus-context-preprocess": "^3.1.2",
"@comunica/bus-http-invalidate": "^3.1.0",
"@comunica/bus-query-source-identify": "^3.1.2",
"@comunica/context-entries": "^3.1.0",
"@comunica/core": "^3.1.0",
"@comunica/types": "^3.1.0",
"lru-cache": "^10.0.0"
}
},
"node_modules/@comunica/actor-context-preprocess-query-source-identify/node_modules/lru-cache": {
"version": "10.2.2",
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz",
"integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==",
"dev": true,
"engines": {
"node": "14 || >=16.14"
}
},
"node_modules/@comunica/actor-context-preprocess-query-source-skolemize": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-query-source-skolemize/-/actor-context-preprocess-query-source-skolemize-3.1.2.tgz",
"integrity": "sha512-CeZ+Kx9VKzIIm74oWJzjDAYMK/ghCQzsJ1Y+laNI6d5qFDuS6BnYW9s1zxa3e73AtwqOXXkLcI38V39HLi25RQ==",
"dev": true,
"dependencies": {
"@comunica/bus-context-preprocess": "^3.1.2",
"@comunica/context-entries": "^3.1.0",
"@comunica/core": "^3.1.0",
"@comunica/data-factory": "^3.1.0",
"@comunica/metadata": "^3.1.0",
"@comunica/types": "^3.1.0",
"@rdfjs/types": "*",
"asynciterator": "^3.9.0",
"rdf-data-factory": "^1.1.2",
"rdf-terms": "^1.11.0",
"sparqlalgebrajs": "^4.3.0"
}
},
"node_modules/@comunica/actor-context-preprocess-set-defaults": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-set-defaults/-/actor-context-preprocess-set-defaults-3.1.2.tgz",
"integrity": "sha512-+jPoZuYslP037JBOdt4Lo0SUCLm0kgYd5ZN4F60B0L9Gt0atcsGEybgSO/FOFLoBVBI8wWu16qLlo9gW0mILKA==",
"dev": true,
"dependencies": {
"@comunica/bus-context-preprocess": "^3.1.2",
"@comunica/context-entries": "^3.1.0",
"@comunica/core": "^3.1.0",
"@comunica/types": "^3.1.0",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-context-preprocess-source-to-destination": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-source-to-destination/-/actor-context-preprocess-source-to-destination-3.1.2.tgz",
"integrity": "sha512-jORr/teW8adc4lg1MreqsDh8I6okJlSfa/zFu6c6GID/1Q2uw1aElBKq7nZ2KcmqRnCuRjRCylplkO+Bd+8Qwg==",
"dev": true,
"dependencies": {
"@comunica/bus-context-preprocess": "^3.1.2",
"@comunica/context-entries": "^3.1.0",
"@comunica/core": "^3.1.0",
"@comunica/types": "^3.1.0"
}
},
"node_modules/@comunica/actor-hash-bindings-sha1": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-hash-bindings-sha1/-/actor-hash-bindings-sha1-3.1.0.tgz",
"integrity": "sha512-auUUj0xWMq/9DMD4oIssnAowJiy1HhCP8jz8iM7MF6zYe6J/JHLoJpTsUI/phvX0gVdwlZxgfnHCWa9o3t0/FA==",
"dev": true,
"dependencies": {
"@comunica/bus-hash-bindings": "^3.1.0",
"@comunica/core": "^3.1.0",
"canonicalize": "^2.0.0",
"hash.js": "^1.1.7",
"rdf-string": "^1.6.1"
}
},
"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==",
"dev": true
},
"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==",
"dev": true,
"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-fetch/node_modules/@comunica/bus-http": {
"version": "2.10.2",
"resolved": "https://registry.npmjs.org/@comunica/bus-http/-/bus-http-2.10.2.tgz",
"integrity": "sha512-MAYRF6uEBAuJ9dCPW2Uyne7w3lNwXFXKfa14XuPG5DFTDpgo/Z2pWupPrBsA1eIWMNJ6WOG6QyEv4rllSIBqlg==",
"dev": true,
"dependencies": {
"@comunica/core": "^2.10.0",
"@smessie/readable-web-to-node-stream": "^3.0.3",
"is-stream": "^2.0.1",
"readable-stream-node-to-web": "^1.0.1",
"web-streams-ponyfill": "^1.4.2"
}
},
"node_modules/@comunica/actor-http-fetch/node_modules/@comunica/context-entries": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/context-entries/-/context-entries-2.10.0.tgz",
"integrity": "sha512-lmCYCcXxW8C6ecFH2whZCt31NT1ejb0P/sbytK7f4ctyA06Q8iYFEcYE4eWOXMdpfkwkcnz31x9XL77OGeSC2Q==",
"dev": true,
"dependencies": {
"@comunica/core": "^2.10.0",
"@comunica/types": "^2.10.0",
"@rdfjs/types": "*",
"jsonld-context-parser": "^2.2.2",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-http-fetch/node_modules/@comunica/core": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/core/-/core-2.10.0.tgz",
"integrity": "sha512-onsGs2iKHUPRxxMOdx42vdxslk8q9FQZdRjQtHJ6SGiCpJwIL9ciBgPIOl2RL2YfzXHemr/0umeNOppRDcWhJA==",
"dev": true,
"dependencies": {
"@comunica/types": "^2.10.0",
"immutable": "^4.1.0"
},
"engines": {
"node": ">=14.0"
}
},
"node_modules/@comunica/actor-http-fetch/node_modules/@comunica/mediatortype-time": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/mediatortype-time/-/mediatortype-time-2.10.0.tgz",
"integrity": "sha512-nBz1exxrja1Tj8KSlSevG4Hw2u09tTh6gtNfVjI76i/e7muu4RUWVhi9b8PcwBNAfuUqRl+5OgOSa2X4W+6QlA==",
"dev": true,
"dependencies": {
"@comunica/core": "^2.10.0"
}
},
"node_modules/@comunica/actor-http-fetch/node_modules/@comunica/types": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/types/-/types-2.10.0.tgz",
"integrity": "sha512-1UjPGbZcYrapBjMGUZedrIGcn9rOLpEOlJo1ZkWddFUGTwndVg9d4BZnQw+UnQzXMcLJcdKt94Zns8iEmBqARw==",
"dev": true,
"dependencies": {
"@rdfjs/types": "*",
"@types/yargs": "^17.0.24",
"asynciterator": "^3.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-http-fetch/node_modules/cross-fetch": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-4.0.0.tgz",
"integrity": "sha512-e4a5N8lVvuLgAWgnCrLr2PP0YyDOTHa9H/Rj54dirp61qXnNq46m82bRhNqIA5VccJtWBvPTFRV3TtvHUKPB1g==",
"dev": true,
"dependencies": {
"node-fetch": "^2.6.12"
}
},
"node_modules/@comunica/actor-http-fetch/node_modules/is-stream": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
"integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==",
"dev": true,
"engines": {
"node": ">=8"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/@comunica/actor-http-proxy": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-proxy/-/actor-http-proxy-3.1.0.tgz",
"integrity": "sha512-+nrNBlBs1rLEUe/DmyX8DtT7TbzFA/FtISFlKbGPwmVm99v+VD3eYWqHHYOYsf0L+A40GNXoXLpKiS3ZhiY80A==",
"dev": true,
"dependencies": {
"@comunica/bus-http": "^3.1.0",
"@comunica/context-entries": "^3.1.0",
"@comunica/mediatortype-time": "^3.1.0",
"@comunica/types": "^3.1.0"
}
},
"node_modules/@comunica/actor-init-query": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-init-query/-/actor-init-query-3.1.0.tgz",
"integrity": "sha512-XRtumQ2gyciT5YIOgWbpews/yg1FaGK7vIb+LJIwdNcz7mSXpZW61+zSHZNlEZE7LooVvobMYhYSjAfPLzN4uA==",
"dev": true,
"dependencies": {
"@comunica/actor-http-proxy": "^3.1.0",
"@comunica/bus-http-invalidate": "^3.1.0",
"@comunica/bus-init": "^3.1.0",
"@comunica/bus-query-process": "^3.1.0",
"@comunica/bus-query-result-serialize": "^3.1.0",
"@comunica/context-entries": "^3.1.0",
"@comunica/core": "^3.1.0",
"@comunica/logger-pretty": "^3.1.0",
"@comunica/runner": "^3.1.0",
"@comunica/types": "^3.1.0",
"@rdfjs/types": "*",
"@types/yargs": "^17.0.24",
"asynciterator": "^3.9.0",
"negotiate": "^1.0.1",
"rdf-quad": "^1.5.0",
"streamify-string": "^1.0.1",
"yargs": "^17.7.2"
},
"optionalDependencies": {
"process": "^0.11.10"
}
},
"node_modules/@comunica/actor-optimize-query-operation-assign-sources-exhaustive": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-assign-sources-exhaustive/-/actor-optimize-query-operation-assign-sources-exhaustive-3.1.2.tgz",
"integrity": "sha512-OEqimoQEm0zHOQVAGNF9S5JD+ZetUScKY78Jrl14HNEO2/P55fS7+vqJvzkP+XL9Wmx+2r/ZifPcmnpBa+HWtA==",
"dev": true,
"dependencies": {
"@comunica/bus-optimize-query-operation": "^3.1.0",
"@comunica/bus-query-operation": "^3.1.2",
"@comunica/bus-rdf-update-quads": "^3.1.2",
"@comunica/context-entries": "^3.1.0",
"@comunica/core": "^3.1.0",
"@comunica/types": "^3.1.0",
"sparqlalgebrajs": "^4.3.3"
}
},
"node_modules/@comunica/actor-optimize-query-operation-bgp-to-join": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-bgp-to-join/-/actor-optimize-query-operation-bgp-to-join-3.1.0.tgz",
"integrity": "sha512-lAL4pCsVUe9VmPrrGdkRpzDyO1RadGbctJQB0XESw3Bcm3msNdkdLUsrO/J9kddWcKFsS6lyBAXbO4nX1fAEKg==",
"dev": true,
"dependencies": {
"@comunica/bus-optimize-query-operation": "^3.1.0",
"@comunica/core": "^3.1.0",
"sparqlalgebrajs": "^4.3.3"
}
},
"node_modules/@comunica/actor-optimize-query-operation-describe-to-constructs-subject": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-describe-to-constructs-subject/-/actor-optimize-query-operation-describe-to-constructs-subject-3.1.0.tgz",
"integrity": "sha512-kQ/9UrpvFpPwQrMGJi14UGlcJDtbkqey4Ym3whBFrIO7jpCIjglK86pVIlLByuGxWym3H6rlVGBtQXt7K1jz6w==",
"dev": true,
"dependencies": {
"@comunica/bus-optimize-query-operation": "^3.1.0",
"@comunica/core": "^3.1.0",
"rdf-data-factory": "^1.1.2",
"sparqlalgebrajs": "^4.3.3"
}
},
"node_modules/@comunica/actor-optimize-query-operation-filter-pushdown": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-filter-pushdown/-/actor-optimize-query-operation-filter-pushdown-3.1.0.tgz",
"integrity": "sha512-htKFohXEYCLycB7Zx05JBrk1JTk53OBCStiAtDS1AMlJ9PcEecGOoZIoQDT5jGbNEJ8rr5lP3yUF3I0e2QQt2w==",
"dev": true,
"dependencies": {
"@comunica/bus-optimize-query-operation": "^3.1.0",
"@comunica/core": "^3.1.0",
"@comunica/types": "^3.1.0",
"@rdfjs/types": "*",
"rdf-terms": "^1.11.0",
"sparqlalgebrajs": "^4.3.3"
}
},
"node_modules/@comunica/actor-optimize-query-operation-group-sources": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-group-sources/-/actor-optimize-query-operation-group-sources-3.1.2.tgz",
"integrity": "sha512-WJdV/77zKNw8eLqe7e3i87JPvrAg4iTNidti0IctSSnOe7gIMdNNMEpCBkp1/rf+vXBrkI3eixk1irnAEKF9Zg==",
"dev": true,
"dependencies": {
"@comunica/bus-optimize-query-operation": "^3.1.0",
"@comunica/bus-query-operation": "^3.1.2",
"@comunica/core": "^3.1.0",
"@comunica/types": "^3.1.0",
"sparqlalgebrajs": "^4.3.3"
}
},
"node_modules/@comunica/actor-optimize-query-operation-join-bgp": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-join-bgp/-/actor-optimize-query-operation-join-bgp-3.1.0.tgz",
"integrity": "sha512-svA//RNgikfNzT8kGZAzGIXGWU5q+a8x75uj9vnddftakBrIptM/K4e5dEIpxBZ410QkKxXPNoSf1RPnJtle6g==",
"dev": true,
"dependencies": {
"@comunica/bus-optimize-query-operation": "^3.1.0",
"@comunica/core": "^3.1.0",
"sparqlalgebrajs": "^4.3.3"
}
},
"node_modules/@comunica/actor-optimize-query-operation-join-connected": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-join-connected/-/actor-optimize-query-operation-join-connected-3.1.0.tgz",
"integrity": "sha512-8xttmpDxnWJBHhWZRF41QavKmfjpAC/lVITD32bRVmq54JYSS0WaNwHounKyC62NWCAt2dH7blNBcPaVO+KwlA==",
"dev": true,
"dependencies": {
"@comunica/bus-optimize-query-operation": "^3.1.0",
"@comunica/core": "^3.1.0",
"sparqlalgebrajs": "^4.3.3"
}
},
"node_modules/@comunica/actor-optimize-query-operation-prune-empty-source-operations": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-prune-empty-source-operations/-/actor-optimize-query-operation-prune-empty-source-operations-3.1.2.tgz",
"integrity": "sha512-BQlQnjpCGTd1NrFDwvpbkrvs8xkzLAUlZ9+JR7JXPh7df12TVYTsiS/dsm48V+iCa7ciXUeoybQM4oy/iw+R1Q==",
"dev": true,
"dependencies": {
"@comunica/bus-optimize-query-operation": "^3.1.0",
"@comunica/bus-query-operation": "^3.1.2",
"@comunica/context-entries": "^3.1.0",
"@comunica/core": "^3.1.0",
"@comunica/types": "^3.1.0",
"rdf-data-factory": "^1.1.2",
"sparqlalgebrajs": "^4.3.3"
}
},
"node_modules/@comunica/actor-optimize-query-operation-rewrite-add": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-rewrite-add/-/actor-optimize-query-operation-rewrite-add-3.1.0.tgz",
"integrity": "sha512-U/jd/ySu+peFRg9+Qq0jWtLqY52wTLZjbtx6MbcX6eJG4VUnsdvPmVztuQBs4zXSFxH2ZWwJ5W2K+L+7urTHhQ==",
"dev": true,
"dependencies": {
"@comunica/bus-optimize-query-operation": "^3.1.0",
"@comunica/core": "^3.1.0",
"@rdfjs/types": "*",
"rdf-data-factory": "^1.1.2",
"sparqlalgebrajs": "^4.3.3"
}
},
"node_modules/@comunica/actor-optimize-query-operation-rewrite-copy": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-rewrite-copy/-/actor-optimize-query-operation-rewrite-copy-3.1.0.tgz",
"integrity": "sha512-pv4v7lOYxBbbOWXOjQMs4gu0eDvynwfFe6FZ7WAXnzg+kBfvcHI5N2cNALxITp+HS1xsl78xlp/e8ooPlUz4Tw==",
"dev": true,
"dependencies": {
"@comunica/bus-optimize-query-operation": "^3.1.0",
"@comunica/core": "^3.1.0",
"sparqlalgebrajs": "^4.3.3"
}
},
"node_modules/@comunica/actor-optimize-query-operation-rewrite-move": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-rewrite-move/-/actor-optimize-query-operation-rewrite-move-3.1.0.tgz",
"integrity": "sha512-SWrYrWszIBFddIL3Zws4lp7K4PY/b6B050S7pM/U+zNvaRuxWxY+4aNU0XAMUWvz3x5HQXiZ1svCt3UvIwU/IQ==",
"dev": true,
"dependencies": {
"@comunica/bus-optimize-query-operation": "^3.1.0",
"@comunica/core": "^3.1.0",
"sparqlalgebrajs": "^4.3.3"
}
},
"node_modules/@comunica/actor-query-operation-ask": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-ask/-/actor-query-operation-ask-3.1.2.tgz",
"integrity": "sha512-qNfmKBolqd8J65q43pe5IVQt6S6wPdt2ygoEnoTEYf8cfC6i8pHly0kpA2Oo6RoxGiz6U1NGOIaB96qWn3xTwg==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^3.1.2",
"@comunica/core": "^3.1.0",
"@comunica/types": "^3.1.0",
"sparqlalgebrajs": "^4.3.3"
}
},
"node_modules/@comunica/actor-query-operation-bgp-join": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-join/-/actor-query-operation-bgp-join-3.1.2.tgz",
"integrity": "sha512-P7JL6WV0ovfB3N9GdkhbsWpn9EdR/zBe2fRYJHO5rcvPNmwulOYOhRU0LX0z2px9IUl2NmHUGIVQHgsu8IvXEA==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^3.1.2",
"@comunica/core": "^3.1.0",
"@comunica/types": "^3.1.0",
"sparqlalgebrajs": "^4.3.3"
}
},
"node_modules/@comunica/actor-query-operation-construct": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-construct/-/actor-query-operation-construct-3.1.2.tgz",
"integrity": "sha512-+GS4kv+oogNQm22VO+miBu/A6+nTX/aMgxgI6L9XT1xVZMyJ9DnK58yLYt/jcNjfGaueKfoQY/afp30T8/aB+w==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^3.1.2",
"@comunica/core": "^3.1.0",
"@comunica/types": "^3.1.0",
"@rdfjs/types": "*",
"asynciterator": "^3.9.0",
"rdf-data-factory": "^1.1.1",
"rdf-terms": "^1.11.0",
"sparqlalgebrajs": "^4.3.3"
}
},
"node_modules/@comunica/actor-query-operation-distinct-hash": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-distinct-hash/-/actor-query-operation-distinct-hash-3.1.2.tgz",
"integrity": "sha512-cW7eFfcU5p0E6vPK2pFtGumnrYe18EfJyP/ucHFI4K6w+rJ2SCDmfgslceaV2U5pPbNyzHKmZ/WfzddNzP/N0A==",
"dev": true,
"dependencies": {
"@comunica/bus-hash-bindings": "^3.1.0",
"@comunica/bus-query-operation": "^3.1.2",
"@comunica/core": "^3.1.0",
"@comunica/types": "^3.1.0",
"sparqlalgebrajs": "^4.3.3"
}
},
"node_modules/@comunica/actor-query-operation-extend": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-extend/-/actor-query-operation-extend-3.1.2.tgz",
"integrity": "sha512-fnedEAljEvnKf5KDi3EXJ+xBd9syvDprcAg5/Z7E40LaYpIdpFn1GBBWGzq5WAKsuFtZZsgbcHIM+K3CCMteeg==",
"dev": true,
"dependencies": {
"@comunica/bindings-factory": "^3.1.0",
"@comunica/bus-merge-bindings-context": "^3.1.0",
"@comunica/bus-query-operation": "^3.1.2",
"@comunica/core": "^3.1.0",
"@comunica/expression-evaluator": "^3.1.0",
"@comunica/types": "^3.1.0",
"sparqlalgebrajs": "^4.3.3"
}
},
"node_modules/@comunica/actor-query-operation-filter": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-filter/-/actor-query-operation-filter-3.1.2.tgz",
"integrity": "sha512-RBy16jGYVT9fZIyh7EdkMCYt0SEzU5/C7K9iHwtFUQNeMk1lssV2jnv1kjmInnhTx3CkAIZ/DnBK4VYaLuBOFA==",
"dev": true,
"dependencies": {
"@comunica/bindings-factory": "^3.1.0",
"@comunica/bus-merge-bindings-context": "^3.1.0",
"@comunica/bus-query-operation": "^3.1.2",
"@comunica/core": "^3.1.0",
"@comunica/expression-evaluator": "^3.1.0",
"@comunica/types": "^3.1.0",
"sparqlalgebrajs": "^4.3.3"
}
},
"node_modules/@comunica/actor-query-operation-from-quad": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-from-quad/-/actor-query-operation-from-quad-3.1.2.tgz",
"integrity": "sha512-TZbktdzCyOkB2P0Gt7I+IQAbMryYsdI75nsh7zHZJ20nJKixs6xifZ2FsXK/lYC2/Q8z/uED6XUmHj1y78szGQ==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^3.1.2",
"@comunica/core": "^3.1.0",
"@comunica/types": "^3.1.0",
"@rdfjs/types": "*",
"sparqlalgebrajs": "^4.3.3"
}
},
"node_modules/@comunica/actor-query-operation-group": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-group/-/actor-query-operation-group-3.1.2.tgz",
"integrity": "sha512-5UC3w7BPwiNzvAMce9JihYyEfFzPLLAZLSDD1NktqM4+ApXJJKXgRKAL+Rf3XDNSH6XqB18vVP0d6XwSjaoEUg==",
"dev": true,
"dependencies": {
"@comunica/bindings-factory": "^3.1.0",
"@comunica/bus-hash-bindings": "^3.1.0",
"@comunica/bus-merge-bindings-context": "^3.1.0",
"@comunica/bus-query-operation": "^3.1.2",
"@comunica/core": "^3.1.0",
"@comunica/expression-evaluator": "^3.1.0",
"@comunica/types": "^3.1.0",
"@rdfjs/types": "*",
"asynciterator": "^3.9.0",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.3.3"
}
},
"node_modules/@comunica/actor-query-operation-join": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-join/-/actor-query-operation-join-3.1.2.tgz",
"integrity": "sha512-mxarMAVOsecmcQeJBglrm1IxAvD+LwUxFcYnA0Jtzj17GVX/m3MYqGgO9BabTxog8wdLL+obUB/f8dbDxiTCgQ==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^3.1.2",
"@comunica/bus-rdf-join": "^3.1.2",
"@comunica/core": "^3.1.0",
"@comunica/types": "^3.1.0",
"sparqlalgebrajs": "^4.3.3"
}
},
"node_modules/@comunica/actor-query-operation-leftjoin": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-leftjoin/-/actor-query-operation-leftjoin-3.1.2.tgz",
"integrity": "sha512-fjwy5ZTxu+wQNvK6vEcaWmSAfL+PaWjAMUXohP8GionBiOadtRfJnCGcm2etayP90wAfBDuwrlCzo8dOE6OyVQ==",
"dev": true,
"dependencies": {
"@comunica/bindings-factory": "^3.1.0",
"@comunica/bus-merge-bindings-context": "^3.1.0",
"@comunica/bus-query-operation": "^3.1.2",
"@comunica/bus-rdf-join": "^3.1.2",
"@comunica/core": "^3.1.0",
"@comunica/expression-evaluator": "^3.1.0",
"@comunica/types": "^3.1.0",
"sparqlalgebrajs": "^4.3.3"
}
},
"node_modules/@comunica/actor-query-operation-minus": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-minus/-/actor-query-operation-minus-3.1.2.tgz",
"integrity": "sha512-Sl5dPfv5DqYkQZ5VIKCHLSMyucvOEdbsyP1hNFpSm28Ya87CqwyjFj3Y5BaDXJGV6RuwBppZ0W30P/NVmIVylw==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^3.1.2",
"@comunica/bus-rdf-join": "^3.1.2",
"@comunica/core": "^3.1.0",
"@comunica/types": "^3.1.0",
"sparqlalgebrajs": "^4.3.3"
}
},
"node_modules/@comunica/actor-query-operation-nop": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-nop/-/actor-query-operation-nop-3.1.2.tgz",
"integrity": "sha512-EsxQiaPwala82/Tb8bD5Ciau4ve4TxiON2zcpM17tOLLb7Mwf/7YdsoCbZ+gbzAI3wFZMLPeHBl8oFUzaXHFPA==",
"dev": true,
"dependencies": {
"@comunica/bindings-factory": "^3.1.0",
"@comunica/bus-merge-bindings-context": "^3.1.0",
"@comunica/bus-query-operation": "^3.1.2",
"@comunica/core": "^3.1.0",
"@comunica/metadata": "^3.1.0",
"@comunica/types": "^3.1.0",
"@rdfjs/types": "*",
"asynciterator": "^3.9.0",
"sparqlalgebrajs": "^4.3.3"
}
},
"node_modules/@comunica/actor-query-operation-orderby": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-orderby/-/actor-query-operation-orderby-3.1.2.tgz",
"integrity": "sha512-fdFQQH3gcNUfRnC9So8DKj4fvtpaKtCl86TB3GbwPhR1uBFjGtDg1Hn1tZi5kZzs6kN+MFIKYoE6QSlzg9P6Mg==",
"dev": true,
"dependencies": {
"@comunica/bindings-factory": "^3.1.0",
"@comunica/bus-merge-bindings-context": "^3.1.0",
"@comunica/bus-query-operation": "^3.1.2",
"@comunica/core": "^3.1.0",
"@comunica/expression-evaluator": "^3.1.0",
"@comunica/types": "^3.1.0",
"asynciterator": "^3.9.0",
"sparqlalgebrajs": "^4.3.3"
}
},
"node_modules/@comunica/actor-query-operation-path-alt": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-alt/-/actor-query-operation-path-alt-3.1.2.tgz",
"integrity": "sha512-4G5RhMOvRqkXOBGrsgZCmiYKUoE0+zqQACKsZQbOKrE/k0DRQzeegcGs6jOlPVNZ8TxEb7fmwosxrVdX5z/H0w==",
"dev": true,
"dependencies": {
"@comunica/actor-abstract-path": "^3.1.2",
"@comunica/actor-query-operation-union": "^3.1.2",
"@comunica/bus-query-operation": "^3.1.2",
"@comunica/bus-rdf-metadata-accumulate": "^3.1.0",
"@comunica/types": "^3.1.0",
"asynciterator": "^3.9.0",
"sparqlalgebrajs": "^4.3.3"
}
},
"node_modules/@comunica/actor-query-operation-path-inv": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-inv/-/actor-query-operation-path-inv-3.1.2.tgz",
"integrity": "sha512-A1sWb53CAT/7NVGuZ6oLoWB4w7N11ffcGhieff47UMD1riCCYVkRCxoJ3CLTLsglB9UCa6TVK9SvOq5Rjwnp6g==",
"dev": true,
"dependencies": {
"@comunica/actor-abstract-path": "^3.1.2",
"@comunica/bus-query-operation": "^3.1.2",
"@comunica/types": "^3.1.0",
"sparqlalgebrajs": "^4.3.3"
}
},
"node_modules/@comunica/actor-query-operation-path-link": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-link/-/actor-query-operation-path-link-3.1.2.tgz",
"integrity": "sha512-gFx5YC3rxz+e/jgerer04pUw5ZhoRjCWMf3CLQ8wwB05CmWT0XmLxyTG286oo5ByLddvfDVwPgWLPMNTRwfWZw==",
"dev": true,
"dependencies": {
"@comunica/actor-abstract-path": "^3.1.2",
"@comunica/bus-query-operation": "^3.1.2",
"@comunica/types": "^3.1.0",
"sparqlalgebrajs": "^4.3.3"
}
},
"node_modules/@comunica/actor-query-operation-path-nps": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-nps/-/actor-query-operation-path-nps-3.1.2.tgz",
"integrity": "sha512-vDlr1iolREx7ge0N8yJw2m/2FLqGYZmg6NJWcyJ42c4TQTUsgaxpXT7FiG7DKFP5BbL+/9F/MAKLZjbPtBEM1g==",
"dev": true,
"dependencies": {
"@comunica/actor-abstract-path": "^3.1.2",
"@comunica/bus-query-operation": "^3.1.2",
"@comunica/types": "^3.1.0",
"sparqlalgebrajs": "^4.3.3"
}
},
"node_modules/@comunica/actor-query-operation-path-one-or-more": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-one-or-more/-/actor-query-operation-path-one-or-more-3.1.2.tgz",
"integrity": "sha512-NKwKpAqy+NJS2mv4kCUq3CNH++zPzQ2+hMRE4m9AMZRoFKrsbVt5yJi8OzvXeFOtj5JAz4u7Qv7NC4GLuw6XXA==",
"dev": true,
"dependencies": {
"@comunica/actor-abstract-path": "^3.1.2",
"@comunica/bindings-factory": "^3.1.0",
"@comunica/bus-merge-bindings-context": "^3.1.0",
"@comunica/bus-query-operation": "^3.1.2",
"@comunica/types": "^3.1.0",
"asynciterator": "^3.9.0",
"sparqlalgebrajs": "^4.3.3"
}
},
"node_modules/@comunica/actor-query-operation-path-seq": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-seq/-/actor-query-operation-path-seq-3.1.2.tgz",
"integrity": "sha512-VJUafah82tn45dZRx6Wqupw0vPQAVs3p+lmtwZIfjGym+QOuyc0Cl+ewVEfCz/zPWfIA2YQtXjOuXv1rz2MtWw==",
"dev": true,
"dependencies": {
"@comunica/actor-abstract-path": "^3.1.2",
"@comunica/bus-query-operation": "^3.1.2",
"@comunica/bus-rdf-join": "^3.1.2",
"@comunica/types": "^3.1.0",
"sparqlalgebrajs": "^4.3.3"
}
},
"node_modules/@comunica/actor-query-operation-path-zero-or-more": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-zero-or-more/-/actor-query-operation-path-zero-or-more-3.1.2.tgz",
"integrity": "sha512-iOdPM162qNtp+zZaPTn/95JcMEfWCHsnTF1EyxEBKNHaSQQSJcp6InMBMUydn52h8bpjTAETdH5j2HhtZ3NchQ==",
"dev": true,
"dependencies": {
"@comunica/actor-abstract-path": "^3.1.2",
"@comunica/bindings-factory": "^3.1.0",
"@comunica/bus-merge-bindings-context": "^3.1.0",
"@comunica/bus-query-operation": "^3.1.2",
"@comunica/types": "^3.1.0",
"asynciterator": "^3.9.0",
"rdf-string": "^1.6.1",
"sparqlalgebrajs": "^4.3.3"
}
},
"node_modules/@comunica/actor-query-operation-path-zero-or-one": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-zero-or-one/-/actor-query-operation-path-zero-or-one-3.1.2.tgz",
"integrity": "sha512-oGi438sSY0+NLFNTjlBgnh69xS6tVEeahMrHRPMZ5ZnHGX77RSBVuJy9JSFAmxitmis5CkDS9AAPW2q8FG76lA==",
"dev": true,
"dependencies": {
"@comunica/actor-abstract-path": "^3.1.2",
"@comunica/bindings-factory": "^3.1.0",
"@comunica/bus-merge-bindings-context": "^3.1.0",
"@comunica/bus-query-operation": "^3.1.2",
"@comunica/metadata": "^3.1.0",
"@comunica/types": "^3.1.0",
"asynciterator": "^3.9.0",
"sparqlalgebrajs": "^4.3.3"
}
},
"node_modules/@comunica/actor-query-operation-project": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-project/-/actor-query-operation-project-3.1.2.tgz",
"integrity": "sha512-S0CMX4m5oSLhg1SLyFXUxHhrKO5CIAWtdLdgPziy6ilW+119UuCqWpc8rR2uLArEpUvYPS9MRowRLnpvJb0Ulg==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^3.1.2",
"@comunica/core": "^3.1.0",
"@comunica/data-factory": "^3.1.0",
"@comunica/types": "^3.1.0",
"@rdfjs/types": "*",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.3.3"
}
},
"node_modules/@comunica/actor-query-operation-reduced-hash": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-reduced-hash/-/actor-query-operation-reduced-hash-3.1.2.tgz",
"integrity": "sha512-dpDadyHd7jvE3B1parAZOjBwv9lqCQhernQ94BlO+ncK8VE2nK99/0X+3Oe4Pm1n5uWt4Th51J8F6jvPIzXxRQ==",
"dev": true,
"dependencies": {
"@comunica/bus-hash-bindings": "^3.1.0",
"@comunica/bus-query-operation": "^3.1.2",
"@comunica/core": "^3.1.0",
"@comunica/types": "^3.1.0",
"lru-cache": "^10.0.0",
"sparqlalgebrajs": "^4.3.3"
}
},
"node_modules/@comunica/actor-query-operation-reduced-hash/node_modules/lru-cache": {
"version": "10.2.2",
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz",
"integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==",
"dev": true,
"engines": {
"node": "14 || >=16.14"
}
},
"node_modules/@comunica/actor-query-operation-service": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-service/-/actor-query-operation-service-3.1.2.tgz",
"integrity": "sha512-TM6GmCyemVomAeejTsPfmhtWGY2Fe5NatLuOUBRbyDILQ0lwIJ+d2Fi6DV+0X6j4aXtmEAkzzTSs0jwMBO56Fw==",
"dev": true,
"dependencies": {
"@comunica/bindings-factory": "^3.1.0",
"@comunica/bus-merge-bindings-context": "^3.1.0",
"@comunica/bus-query-operation": "^3.1.2",
"@comunica/bus-query-source-identify": "^3.1.2",
"@comunica/core": "^3.1.0",
"@comunica/metadata": "^3.1.0",
"@comunica/types": "^3.1.0",
"asynciterator": "^3.9.0",
"sparqlalgebrajs": "^4.3.3"
}
},
"node_modules/@comunica/actor-query-operation-slice": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-slice/-/actor-query-operation-slice-3.1.2.tgz",
"integrity": "sha512-OZ7Y06hZPqRT2M0yFZykTTN7H7EqlfyHDUJXbSTaIayxjcpCHO0UZ0j6WE3rnUSfZfK8zhS3fuvroB2AUiaSkw==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^3.1.2",
"@comunica/context-entries": "^3.1.0",
"@comunica/core": "^3.1.0",
"@comunica/types": "^3.1.0",
"sparqlalgebrajs": "^4.3.3"
}
},
"node_modules/@comunica/actor-query-operation-source": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-source/-/actor-query-operation-source-3.1.2.tgz",
"integrity": "sha512-vLnpR85UHTm7d5DyfFhmuga9MtQHhP8WLC7VARLZ+l4sWLm6XVOzA6tEnzwnIEv+5nG322mGJOOclZ/rvh7JdQ==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^3.1.2",
"@comunica/context-entries": "^3.1.0",
"@comunica/core": "^3.1.0",
"@comunica/metadata": "^3.1.0",
"@comunica/types": "^3.1.0",
"sparqlalgebrajs": "^4.3.3"
}
},
"node_modules/@comunica/actor-query-operation-union": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-union/-/actor-query-operation-union-3.1.2.tgz",
"integrity": "sha512-5+sMNzYSLDS+vxTj7wnQSaOk8sYFA5tYILw08NpP+3B7fhl1tAobgXKyGuYe9MF7hVjkg64h5sE1B8/FoBvg+A==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^3.1.2",
"@comunica/bus-rdf-metadata-accumulate": "^3.1.0",
"@comunica/core": "^3.1.0",
"@comunica/metadata": "^3.1.0",
"@comunica/types": "^3.1.0",
"@rdfjs/types": "*",
"asynciterator": "^3.9.0",
"rdf-terms": "^1.11.0",
"sparqlalgebrajs": "^4.3.3"
}
},
"node_modules/@comunica/actor-query-operation-update-clear": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-clear/-/actor-query-operation-update-clear-3.1.2.tgz",
"integrity": "sha512-WPWeGjDYwDeccyjSaYH4+DhCpW/8ORUnXFaJSz7b2dut4CmKyrSAQv28w0XFH1X04Led9bFX0+ywru4yJCZLRw==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^3.1.2",
"@comunica/bus-rdf-update-quads": "^3.1.2",
"@comunica/core": "^3.1.0",
"@comunica/types": "^3.1.0",
"@rdfjs/types": "*",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.3.3"
}
},
"node_modules/@comunica/actor-query-operation-update-compositeupdate": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-compositeupdate/-/actor-query-operation-update-compositeupdate-3.1.2.tgz",
"integrity": "sha512-Jwxk1PlFmfux3GP3yC7N/6UWa5Whdi3/kRwJJCA2k2vCjLDMV+jnACMWDRlW1gwi9fHEvPtHiAODEKoCcu8cUA==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^3.1.2",
"@comunica/core": "^3.1.0",
"@comunica/types": "^3.1.0",
"sparqlalgebrajs": "^4.3.3"
}
},
"node_modules/@comunica/actor-query-operation-update-create": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-create/-/actor-query-operation-update-create-3.1.2.tgz",
"integrity": "sha512-sG5tY2bMv1gCynKMzOkfBalDgED1Q2Mm2jvy2IwgdG+HDP0Forxb4GHjk3Kne1Gz9efeyd0/IRJEFcEz6f+lXQ==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^3.1.2",
"@comunica/bus-rdf-update-quads": "^3.1.2",
"@comunica/core": "^3.1.0",
"@comunica/types": "^3.1.0",
"sparqlalgebrajs": "^4.3.3"
}
},
"node_modules/@comunica/actor-query-operation-update-deleteinsert": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-deleteinsert/-/actor-query-operation-update-deleteinsert-3.1.2.tgz",
"integrity": "sha512-dE3C+tdWW2P05VXbYE+sQeQxPryl2X06t/MIw7pBMySVyntdkei70yfcvyPX1pxAoEAfUtz7fK86dGxr5kWvbA==",