-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage-lock.json
9762 lines (9762 loc) · 384 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": "google-sheet-sync",
"version": "1.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "google-sheet-sync",
"version": "1.0.0",
"dependencies": {
"@comunica/query-sparql": "^2.8.1",
"@inrupt/solid-client-authn-core": "^1.17.1",
"@rmlio/yarrrml-parser": "^1.5.4",
"dotenv": "^16.3.1",
"fs-extra": "^11.1.1",
"googleapis": "^122.0.0",
"http-server": "^14.1.1",
"js-yaml": "^4.1.0",
"n3": "^1.17.0",
"node-fetch": "^3.3.2",
"ws": "^8.13.0"
},
"devDependencies": {
"@solid/community-server": "^6.0.1",
"cpy-cli": "^5.0.0",
"eslint": "^8.45.0",
"eslint-plugin-jsdoc": "^46.4.6",
"markdownlint-cli2": "^0.8.1",
"rimraf": "^5.0.1"
}
},
"node_modules/@aashutoshrathi/word-wrap": {
"version": "1.2.6",
"resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz",
"integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/@babel/code-frame": {
"version": "7.22.5",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.5.tgz",
"integrity": "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==",
"dev": true,
"dependencies": {
"@babel/highlight": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-identifier": {
"version": "7.22.5",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz",
"integrity": "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==",
"dev": true,
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/highlight": {
"version": "7.22.5",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.5.tgz",
"integrity": "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==",
"dev": true,
"dependencies": {
"@babel/helper-validator-identifier": "^7.22.5",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/highlight/node_modules/ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
"integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
"dev": true,
"dependencies": {
"color-convert": "^1.9.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/highlight/node_modules/chalk": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"dev": true,
"dependencies": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
"supports-color": "^5.3.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/highlight/node_modules/escape-string-regexp": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
"integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
"dev": true,
"engines": {
"node": ">=0.8.0"
}
},
"node_modules/@babel/highlight/node_modules/has-flag": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
"integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
"dev": true,
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/highlight/node_modules/supports-color": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
"integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
"dev": true,
"dependencies": {
"has-flag": "^3.0.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/@bergos/jsonparse": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/@bergos/jsonparse/-/jsonparse-1.4.1.tgz",
"integrity": "sha512-vXIT0nzZGX/+yMD5bx2VhTzc92H55tPoehh1BW/FZHOndWGFddrH3MAfdx39FRc7irABirW6EQaGxIJYV6CGuA==",
"engines": [
"node >= 0.2.0"
],
"dependencies": {
"buffer": "^6.0.3"
}
},
"node_modules/@colors/colors": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz",
"integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==",
"engines": {
"node": ">=0.1.90"
}
},
"node_modules/@comunica/actor-abstract-mediatyped": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-mediatyped/-/actor-abstract-mediatyped-2.8.1.tgz",
"integrity": "sha512-8AycSu7D5sOMeRpjxesW084TkHNzrLTZvsWVTOYcN6EzjaiiGTRURdCaACnPbRJ7+DiMgs7zulHQhAQJmiNh8A==",
"dependencies": {
"@comunica/core": "^2.8.1",
"@comunica/types": "^2.8.1"
}
},
"node_modules/@comunica/actor-abstract-parse": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-parse/-/actor-abstract-parse-2.8.1.tgz",
"integrity": "sha512-py7yNpwyResmFKGFK/0CfX3IaJFTsSM1iGpRdDXQE0X6Vy1PWkx0oMjrwWzLLrPHKaOpCKHxkE2euaQ/wnOGpA==",
"dependencies": {
"@comunica/core": "^2.8.1",
"readable-stream": "^4.2.0"
}
},
"node_modules/@comunica/actor-abstract-path": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-path/-/actor-abstract-path-2.8.1.tgz",
"integrity": "sha512-kF/7jW9wP42e8Btgj00JArPXuaRySyfpmJsxFINWYdcYhtbs/IwScTth6CN/6MHec460mM486q7QQL624jho4Q==",
"dependencies": {
"@comunica/bindings-factory": "^2.7.0",
"@comunica/bus-query-operation": "^2.8.1",
"@comunica/context-entries": "^2.8.1",
"@comunica/core": "^2.8.1",
"@comunica/types": "^2.8.1",
"@rdfjs/types": "*",
"asynciterator": "^3.8.1",
"rdf-data-factory": "^1.1.1",
"rdf-string": "^1.6.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-context-preprocess-source-to-destination": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-source-to-destination/-/actor-context-preprocess-source-to-destination-2.8.1.tgz",
"integrity": "sha512-0v17uumGZ+BGjnnD54zcH2LNcKf0dJvDTVyfDgSkaNB+T4VHDRlHmVzey+Ej3nl4juSQIY3FD5DqlmvUWgBpLA==",
"dependencies": {
"@comunica/bus-context-preprocess": "^2.8.1",
"@comunica/context-entries": "^2.8.1",
"@comunica/core": "^2.8.1",
"@comunica/types": "^2.8.1"
}
},
"node_modules/@comunica/actor-dereference-fallback": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-fallback/-/actor-dereference-fallback-2.8.1.tgz",
"integrity": "sha512-JQk4cZMNi2y5kgIk30i90NGPuU/Nk24/yOMOv7sL4cNoKRGtVfk7qTxzjBiaFBc7MzgH58cbWQFbXjQzIIn5gQ==",
"dependencies": {
"@comunica/bus-dereference": "^2.8.1",
"@comunica/core": "^2.8.1"
}
},
"node_modules/@comunica/actor-dereference-file": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-file/-/actor-dereference-file-2.8.1.tgz",
"integrity": "sha512-UQQT8ojZG+JUR0H9YFlrNvDeDy+qD6N8yHmq6suT1jT41JAi1vzlDZkvKaypAnxJPrJTvjVdK/tlXArqPyhDJA==",
"dev": true,
"dependencies": {
"@comunica/bus-dereference": "^2.8.1",
"@comunica/core": "^2.8.1"
}
},
"node_modules/@comunica/actor-dereference-http": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-http/-/actor-dereference-http-2.8.1.tgz",
"integrity": "sha512-q3Az8WUhUYH0ZWp2F2Kcpi9jAqw6oW8933pGFPZ61/p9f1RVxHay10RWmPV94hdy0GR52LPdrzqQZDrYkS2q7Q==",
"dependencies": {
"@comunica/bus-dereference": "^2.8.1",
"@comunica/bus-http": "^2.8.1",
"@comunica/core": "^2.8.1",
"cross-fetch": "^4.0.0",
"relative-to-absolute-iri": "^1.0.7",
"stream-to-string": "^1.2.0"
}
},
"node_modules/@comunica/actor-dereference-rdf-parse": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-rdf-parse/-/actor-dereference-rdf-parse-2.8.1.tgz",
"integrity": "sha512-6MxYYE166wnUI3DXt71e1i1PfPmEbZPjJoYwap/a67lUJ05BBpFPBiLF9hvfR4HIvX6MRBPikNZ/5Je8Ex20sQ==",
"dependencies": {
"@comunica/bus-dereference": "^2.8.1",
"@comunica/bus-dereference-rdf": "^2.8.1",
"@comunica/bus-rdf-parse": "^2.8.1"
}
},
"node_modules/@comunica/actor-hash-bindings-sha1": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-hash-bindings-sha1/-/actor-hash-bindings-sha1-2.8.1.tgz",
"integrity": "sha512-uxC4WYWMLDFzcLAKaZhb7KxIbFwOY9V2x+cmj2VnyQbjLHPCo5rB4GZ15d5Lc36L5wBQil+fYt/I137s5uHu/A==",
"dependencies": {
"@comunica/bus-hash-bindings": "^2.8.1",
"@comunica/core": "^2.8.1",
"canonicalize": "^2.0.0",
"hash.js": "^1.1.7",
"rdf-string": "^1.6.1"
}
},
"node_modules/@comunica/actor-http-fetch": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-fetch/-/actor-http-fetch-2.8.1.tgz",
"integrity": "sha512-EC18K9zT4DTgw1KnzMr5gU6iMmMLRAysG7ZM8w1RPMw21aQf9fiYz/dtfiHRdXJ2FWlu0MpfBhr0IJA4wySNvQ==",
"dependencies": {
"@comunica/bus-http": "^2.8.1",
"@comunica/context-entries": "^2.8.1",
"@comunica/mediatortype-time": "^2.8.1",
"abort-controller": "^3.0.0",
"cross-fetch": "^4.0.0"
}
},
"node_modules/@comunica/actor-http-proxy": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-proxy/-/actor-http-proxy-2.8.1.tgz",
"integrity": "sha512-Yst22rmMWm5WMWcy/g+K5m7wwxf4lN/QxWEQ1qvCatyk75+rp9JwUcync1mIpxOV+fC0W6nDgvt52F4vRYgteA==",
"dependencies": {
"@comunica/bus-http": "^2.8.1",
"@comunica/context-entries": "^2.8.1",
"@comunica/mediatortype-time": "^2.8.1",
"@comunica/types": "^2.8.1"
}
},
"node_modules/@comunica/actor-http-wayback": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-wayback/-/actor-http-wayback-2.8.1.tgz",
"integrity": "sha512-U/JgdupZr52LOZxHCJsKADv2WKN9K4G8Wn2Gvw67q7IojK9YAZ8+C3mTFNGaKZQD7enmSlYirv5lvzp+Fj9/fg==",
"dependencies": {
"@comunica/bus-http": "^2.8.1",
"@comunica/context-entries": "^2.8.1",
"@comunica/core": "^2.8.1",
"cross-fetch": "^4.0.0",
"stream-to-string": "^1.2.0"
}
},
"node_modules/@comunica/actor-init-query": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-init-query/-/actor-init-query-2.8.1.tgz",
"integrity": "sha512-mcSsmSo2Qb9DNBE45y/T10Yt5CPVgLCIsQRFXt8GeVpimWTd+Jd6GoT7adzdLHA2/nkcmmInPz1ZK6yOQJAoVQ==",
"dependencies": {
"@comunica/actor-http-proxy": "^2.8.1",
"@comunica/bus-context-preprocess": "^2.8.1",
"@comunica/bus-http-invalidate": "^2.8.1",
"@comunica/bus-init": "^2.8.1",
"@comunica/bus-optimize-query-operation": "^2.8.1",
"@comunica/bus-query-operation": "^2.8.1",
"@comunica/bus-query-parse": "^2.8.1",
"@comunica/bus-query-result-serialize": "^2.8.1",
"@comunica/context-entries": "^2.8.1",
"@comunica/core": "^2.8.1",
"@comunica/logger-pretty": "^2.8.1",
"@comunica/runner": "^2.8.1",
"@comunica/types": "^2.8.1",
"@rdfjs/types": "*",
"@types/yargs": "^17.0.13",
"asynciterator": "^3.8.1",
"negotiate": "^1.0.1",
"rdf-quad": "^1.5.0",
"rdf-string": "^1.6.1",
"sparqlalgebrajs": "^4.2.0",
"streamify-string": "^1.0.1",
"yargs": "^17.6.2"
},
"optionalDependencies": {
"process": "^0.11.10"
}
},
"node_modules/@comunica/actor-optimize-query-operation-bgp-to-join": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-bgp-to-join/-/actor-optimize-query-operation-bgp-to-join-2.8.1.tgz",
"integrity": "sha512-AJWYHbQx0JwyPobs8YNremdL5qBMdM66/tLktzkXdDuDdsCXcdUQ3HYSzHFh/3IPiTIbIwYep+98+d9w3qiiPw==",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^2.8.1",
"@comunica/core": "^2.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-optimize-query-operation-join-bgp": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-join-bgp/-/actor-optimize-query-operation-join-bgp-2.8.1.tgz",
"integrity": "sha512-GA2iwOv+5bVBI8fWw5gax5rIR72xQAsd39V5DU3v0zSyRFv5MAXOp5HNkvsA0HSOW0aqFKaZL6wEWRiOAfK+nQ==",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^2.8.1",
"@comunica/core": "^2.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-optimize-query-operation-join-connected": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-join-connected/-/actor-optimize-query-operation-join-connected-2.8.1.tgz",
"integrity": "sha512-ib65LTrsKob/q1NVTXFlCHj5C9xWlxfJkszADD7PF7zteIjBN8AAnC+fIDQtjeX5Udaqx/Izi6s8rh0Nzdka9w==",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^2.8.1",
"@comunica/core": "^2.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-ask": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-ask/-/actor-query-operation-ask-2.8.1.tgz",
"integrity": "sha512-7KP+AXmWalVSBPlq87Xa+bOhbhlD/XuaA/ERctmQpO1mu/1830XoN9q9GyrS3ztFFC+/6G8ZAvDLbKNGK4pTpw==",
"dependencies": {
"@comunica/bus-query-operation": "^2.8.1",
"@comunica/core": "^2.8.1",
"@comunica/types": "^2.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-bgp-join": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-join/-/actor-query-operation-bgp-join-2.8.1.tgz",
"integrity": "sha512-viwowSgLCRkMI4ngX2O9djvkfuqB0zroVw/QINgJQHEQejMDLYyxN2izXi/B1NbWil9HrnZ/JWWTlI6qfBkbnw==",
"dependencies": {
"@comunica/bus-query-operation": "^2.8.1",
"@comunica/core": "^2.8.1",
"@comunica/types": "^2.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-construct": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-construct/-/actor-query-operation-construct-2.8.1.tgz",
"integrity": "sha512-ptRU/OUz9biQ/ocgWKDT8/k3RpmRT1CNyBCFbkLs7Ph7YzU99UJrRseceq2JM9U2fMKS7vhXrIPyZbFfS9RhQg==",
"dependencies": {
"@comunica/bus-query-operation": "^2.8.1",
"@comunica/core": "^2.8.1",
"@comunica/types": "^2.8.1",
"@rdfjs/types": "*",
"asynciterator": "^3.8.1",
"rdf-data-factory": "^1.1.1",
"rdf-terms": "^1.11.0",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-describe-subject": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-describe-subject/-/actor-query-operation-describe-subject-2.8.1.tgz",
"integrity": "sha512-Tr3rgNHMpT1nb9DLsy+zcAqaPcPCAeUpb6GyLn9J+XjlN84fe1F7dPyZpfWy6dsSzoLacB0/46b4OYq1yqmvbw==",
"dependencies": {
"@comunica/actor-query-operation-union": "^2.8.1",
"@comunica/bus-query-operation": "^2.8.1",
"@comunica/core": "^2.8.1",
"@comunica/types": "^2.8.1",
"asynciterator": "^3.8.1",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-distinct-hash": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-distinct-hash/-/actor-query-operation-distinct-hash-2.8.1.tgz",
"integrity": "sha512-SrkaG21QdINEX4cn+41u/nyedc/7sGYgHIoULMRziQuno/R+g8QfU+RWGB15b6KVXzfx0W4p+CH18ljbnErfqg==",
"dependencies": {
"@comunica/bus-hash-bindings": "^2.8.1",
"@comunica/bus-query-operation": "^2.8.1",
"@comunica/core": "^2.8.1",
"@comunica/types": "^2.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-extend": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-extend/-/actor-query-operation-extend-2.8.1.tgz",
"integrity": "sha512-INPYehLQ15wQaoDGcHP89DkF+x/wS4vRMWHbMMadDcDrHckclquvPIkWACOaPpjAveg59pzzkogm8Z5Z0Vk2mg==",
"dependencies": {
"@comunica/bindings-factory": "^2.7.0",
"@comunica/bus-query-operation": "^2.8.1",
"@comunica/core": "^2.8.1",
"@comunica/types": "^2.8.1",
"sparqlalgebrajs": "^4.2.0",
"sparqlee": "^3.0.0"
}
},
"node_modules/@comunica/actor-query-operation-filter-sparqlee": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-filter-sparqlee/-/actor-query-operation-filter-sparqlee-2.8.1.tgz",
"integrity": "sha512-YguWcEp3WSgmlHue+8aYXEOyx69asLubjv47CtPem8SnDs7q/JWXKNhc8RCKsO8bCTAEKYVXuX0N4uBBajIeDQ==",
"dependencies": {
"@comunica/bindings-factory": "^2.7.0",
"@comunica/bus-query-operation": "^2.8.1",
"@comunica/core": "^2.8.1",
"@comunica/types": "^2.8.1",
"sparqlalgebrajs": "^4.2.0",
"sparqlee": "^3.0.0"
}
},
"node_modules/@comunica/actor-query-operation-from-quad": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-from-quad/-/actor-query-operation-from-quad-2.8.1.tgz",
"integrity": "sha512-JS885BPSU9CiR2XkM1KmJWS9VA8SxegCjt3BAsX4fwzLkso8CsCm60WwacD/Pfi6hVcaNkdjDaXSoY2EgDG3FQ==",
"dependencies": {
"@comunica/bus-query-operation": "^2.8.1",
"@comunica/core": "^2.8.1",
"@comunica/types": "^2.8.1",
"@rdfjs/types": "*",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-group": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-group/-/actor-query-operation-group-2.8.1.tgz",
"integrity": "sha512-iqqnIfrwBBJUuqHHlAUx1Qz9YojFzmwm1r2RoUz9lWT+//0BXoZfnbVzhx6DP+XrhsMQo6JPrVDpcEMLjhCzag==",
"dependencies": {
"@comunica/bindings-factory": "^2.7.0",
"@comunica/bus-hash-bindings": "^2.8.1",
"@comunica/bus-query-operation": "^2.8.1",
"@comunica/core": "^2.8.1",
"@comunica/types": "^2.8.1",
"@rdfjs/types": "*",
"asynciterator": "^3.8.1",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.2.0",
"sparqlee": "^3.0.0"
}
},
"node_modules/@comunica/actor-query-operation-join": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-join/-/actor-query-operation-join-2.8.1.tgz",
"integrity": "sha512-k8Uxg8xkTNbVP1gbEeflR+sqfCHmrbfmlyeaMft12jYVS2nMDKzeKwDoLbss1dno+GJ1fzUMQCtYWKsGUGoWcQ==",
"dependencies": {
"@comunica/bus-query-operation": "^2.8.1",
"@comunica/bus-rdf-join": "^2.8.1",
"@comunica/core": "^2.8.1",
"@comunica/types": "^2.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-leftjoin": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-leftjoin/-/actor-query-operation-leftjoin-2.8.1.tgz",
"integrity": "sha512-iU1AXCO1UfXJZ2iIXrJ+g4BpneqmLez9HVX+du6LaxtiJOO8geBlTdw5GetxtwlEjP/ga+6iPKpvrflE8nIIog==",
"dependencies": {
"@comunica/bus-query-operation": "^2.8.1",
"@comunica/bus-rdf-join": "^2.8.1",
"@comunica/core": "^2.8.1",
"@comunica/types": "^2.8.1",
"sparqlalgebrajs": "^4.2.0",
"sparqlee": "^3.0.0"
}
},
"node_modules/@comunica/actor-query-operation-minus": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-minus/-/actor-query-operation-minus-2.8.1.tgz",
"integrity": "sha512-cKYTCu+rYJ4WLwSWw1n+JxXmvKSHhsC0Dg6z46e7bc7640tPBuZJOJ7WE+hkohQd9r0U0ii2lp8EkBn8CaajjA==",
"dependencies": {
"@comunica/bus-query-operation": "^2.8.1",
"@comunica/bus-rdf-join": "^2.8.1",
"@comunica/core": "^2.8.1",
"@comunica/types": "^2.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-nop": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-nop/-/actor-query-operation-nop-2.8.1.tgz",
"integrity": "sha512-ynaK4pvaI9nOWExQFHLqjdNI5GHzL+Hj/vSrTmQjmZx6fZRIbkpDKauxuzOksmM9e+IBHlz3q46Lkhbw2+prcA==",
"dependencies": {
"@comunica/bindings-factory": "^2.7.0",
"@comunica/bus-query-operation": "^2.8.1",
"@comunica/core": "^2.8.1",
"@comunica/metadata": "^2.8.1",
"@comunica/types": "^2.8.1",
"asynciterator": "^3.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-orderby-sparqlee": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-orderby-sparqlee/-/actor-query-operation-orderby-sparqlee-2.8.1.tgz",
"integrity": "sha512-ueEDdqyWCjeNxNAEGpc533getc9XOTGTokKoihUXNC4lSsTeEsOr6IU6DJjb1a4l19v6F/rxIOfBdhGZvUJCqw==",
"dependencies": {
"@comunica/bus-query-operation": "^2.8.1",
"@comunica/core": "^2.8.1",
"@comunica/types": "^2.8.1",
"asynciterator": "^3.8.1",
"sparqlalgebrajs": "^4.2.0",
"sparqlee": "^3.0.0"
}
},
"node_modules/@comunica/actor-query-operation-path-alt": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-alt/-/actor-query-operation-path-alt-2.8.1.tgz",
"integrity": "sha512-teeLoFi21tpZZoQ38ekxBw5cGHcw5tEmh9afdE5TKO/1+biOPjU5Z+qNwQ/hRWzx6oJDioHqRpXTgebM06q/uA==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.8.1",
"@comunica/actor-query-operation-union": "^2.8.1",
"@comunica/bus-query-operation": "^2.8.1",
"@comunica/types": "^2.8.1",
"asynciterator": "^3.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-path-inv": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-inv/-/actor-query-operation-path-inv-2.8.1.tgz",
"integrity": "sha512-Y217gP1QlVdDjrG3jQhai3uWq0VBcvgKL4HT9TCBL0IXbeur5e4qEXnynkzyLi7Yyt8durqziFEvK4gYHyOseQ==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.8.1",
"@comunica/bus-query-operation": "^2.8.1",
"@comunica/types": "^2.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-path-link": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-link/-/actor-query-operation-path-link-2.8.1.tgz",
"integrity": "sha512-b/uR1fOCzmf6gU2Xy5la9d9mqvPUM7+HJwmND/l2RF7U6eXaSn7bzZAyI9BA34mMFdQPwf0QfcAn7Tufjh2weg==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.8.1",
"@comunica/bus-query-operation": "^2.8.1",
"@comunica/types": "^2.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-path-nps": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-nps/-/actor-query-operation-path-nps-2.8.1.tgz",
"integrity": "sha512-uzMu8YIgsHFej5Ek1sT4G32pP5WWLwPn0/AADa19PZK1LPVN36iCaleTrYPqoDDchkVui7OPT1Y9ZOSWCBeFjA==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.8.1",
"@comunica/bus-query-operation": "^2.8.1",
"@comunica/types": "^2.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-path-one-or-more": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-one-or-more/-/actor-query-operation-path-one-or-more-2.8.1.tgz",
"integrity": "sha512-AhBrH+OwHJbzScei7AS7KXLRq87O0kLUlCNp86Ak2pA4ashUbzIGxeN2r5xhhk1KhTa0lHP4iJpDZkbwQCB+wg==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.8.1",
"@comunica/bindings-factory": "^2.7.0",
"@comunica/bus-query-operation": "^2.8.1",
"@comunica/types": "^2.8.1",
"asynciterator": "^3.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-path-seq": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-seq/-/actor-query-operation-path-seq-2.8.1.tgz",
"integrity": "sha512-mka/d7SmxzSboQjJ6/2iQfrwwm/CiSKWHktkJUiWCMIg/14FtA9UC+An6W+avaUNcHyM2gQBXUE2XlxFqV0feg==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.8.1",
"@comunica/bus-query-operation": "^2.8.1",
"@comunica/bus-rdf-join": "^2.8.1",
"@comunica/types": "^2.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-path-zero-or-more": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-zero-or-more/-/actor-query-operation-path-zero-or-more-2.8.1.tgz",
"integrity": "sha512-ILy/7BP3VtRFUQT9Y/39FD9DRCamkdCmmrMBILmeJkYrMxBksth8BAAvyx5zjA3L0/VY/jg1jeAmxYi1sVWIoA==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.8.1",
"@comunica/bindings-factory": "^2.7.0",
"@comunica/bus-query-operation": "^2.8.1",
"@comunica/types": "^2.8.1",
"asynciterator": "^3.8.1",
"rdf-string": "^1.6.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-path-zero-or-one": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-zero-or-one/-/actor-query-operation-path-zero-or-one-2.8.1.tgz",
"integrity": "sha512-bWVLFNsTv7ZaU7Awu93TTpC965FdjrqZ36XtYkEwV7l/dK/GjG8m2QPMcbzmqQ4qK0IG6xK0qFk8zKyOKCAocw==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.8.1",
"@comunica/bindings-factory": "^2.7.0",
"@comunica/bus-query-operation": "^2.8.1",
"@comunica/metadata": "^2.8.1",
"@comunica/types": "^2.8.1",
"asynciterator": "^3.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-project": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-project/-/actor-query-operation-project-2.8.1.tgz",
"integrity": "sha512-yKHzK4O0AnLUKOTkJMcFJj3rbuVcYrrT6WOawItFnc0iqT8N9M9vrZHOJ4EbP45KJsZTOiDyiiT8FFSi/TYMng==",
"dependencies": {
"@comunica/bus-query-operation": "^2.8.1",
"@comunica/core": "^2.8.1",
"@comunica/data-factory": "^2.7.0",
"@comunica/types": "^2.8.1",
"@rdfjs/types": "*",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-quadpattern": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-quadpattern/-/actor-query-operation-quadpattern-2.8.1.tgz",
"integrity": "sha512-/pBg6NHY7U7ovt4eBlFFhhefd8oNam+0HkxmEt21IrlStl8Z4Oyznyq/9tEML2WMeUe7UXyFO/wXexdTAHhj8g==",
"dependencies": {
"@comunica/bindings-factory": "^2.7.0",
"@comunica/bus-query-operation": "^2.8.1",
"@comunica/bus-rdf-resolve-quad-pattern": "^2.8.1",
"@comunica/context-entries": "^2.8.1",
"@comunica/core": "^2.8.1",
"@comunica/types": "^2.8.1",
"@rdfjs/types": "*",
"asynciterator": "^3.8.1",
"rdf-data-factory": "^1.1.1",
"rdf-string": "^1.6.3",
"rdf-terms": "^1.11.0",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-reduced-hash": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-reduced-hash/-/actor-query-operation-reduced-hash-2.8.1.tgz",
"integrity": "sha512-Jf1avdFe4eqp/zt+31PzqwlMMu3f34mnTzrQ4JU85Rf9l/sPAD8Oc67rqlBiiPqFbJWuOkjMTzcUkoHUaIF7LA==",
"dependencies": {
"@comunica/bus-hash-bindings": "^2.8.1",
"@comunica/bus-query-operation": "^2.8.1",
"@comunica/core": "^2.8.1",
"@comunica/types": "^2.8.1",
"@types/lru-cache": "^7.0.0",
"lru-cache": "^10.0.0",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-service": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-service/-/actor-query-operation-service-2.8.1.tgz",
"integrity": "sha512-MJbhYw1zCEosDjqdJXwLbKqlFAesagqdsWWnafef+HmaksBma9uv9Sg1BiKZTumczkbgxkEr/KGopiSezmYC2g==",
"dependencies": {
"@comunica/bindings-factory": "^2.7.0",
"@comunica/bus-query-operation": "^2.8.1",
"@comunica/context-entries": "^2.8.1",
"@comunica/core": "^2.8.1",
"@comunica/metadata": "^2.8.1",
"@comunica/types": "^2.8.1",
"asynciterator": "^3.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-slice": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-slice/-/actor-query-operation-slice-2.8.1.tgz",
"integrity": "sha512-J/shxPmfnTgX4MUKVAj+6e5GG6oyjwwMtL4gHytKCLdSh3s0TIa6mbT9IxjVEReSCpjHIlUpzGYD8bHeRGiE6Q==",
"dependencies": {
"@comunica/bus-query-operation": "^2.8.1",
"@comunica/context-entries": "^2.8.1",
"@comunica/core": "^2.8.1",
"@comunica/types": "^2.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-sparql-endpoint": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-sparql-endpoint/-/actor-query-operation-sparql-endpoint-2.8.1.tgz",
"integrity": "sha512-IIxEyRqPvQB62q/5XkosKn7YYOIG6eGPsEO0x25Rco48mlgyRdAGuRNiuPwOhGRHJk6yyc1ktfSQ58BFM4VKDA==",
"dependencies": {
"@comunica/bindings-factory": "^2.7.0",
"@comunica/bus-http": "^2.8.1",
"@comunica/bus-query-operation": "^2.8.1",
"@comunica/bus-rdf-resolve-quad-pattern": "^2.8.1",
"@comunica/bus-rdf-update-quads": "^2.8.1",
"@comunica/context-entries": "^2.8.1",
"@comunica/core": "^2.8.1",
"@comunica/mediatortype-httprequests": "^2.8.1",
"@comunica/metadata": "^2.8.1",
"@comunica/types": "^2.8.1",
"@rdfjs/types": "*",
"asynciterator": "^3.8.1",
"fetch-sparql-endpoint": "^3.3.3",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-union": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-union/-/actor-query-operation-union-2.8.1.tgz",
"integrity": "sha512-eeCU4R45rgmIKLBZMYQqGM97XS6WNHPkksLZ8xoIAfsjGfkJfFBSjWNLV7csVaE3Jnm6NPDBfGyaSkm0w9UdTA==",
"dependencies": {
"@comunica/bus-query-operation": "^2.8.1",
"@comunica/core": "^2.8.1",
"@comunica/metadata": "^2.8.1",
"@comunica/types": "^2.8.1",
"@rdfjs/types": "*",
"asynciterator": "^3.8.1",
"rdf-terms": "^1.11.0",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-update-add-rewrite": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-add-rewrite/-/actor-query-operation-update-add-rewrite-2.8.1.tgz",
"integrity": "sha512-0+YkVA+icVgRSlTXj1GI/P+PN6evVZksHu9b+v1cTmb8e7JxlARi1FWkmYBnoNy+BLb22k8EpcVPLHmSMHxb0A==",
"dependencies": {
"@comunica/bus-query-operation": "^2.8.1",
"@comunica/core": "^2.8.1",
"@comunica/types": "^2.8.1",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-update-clear": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-clear/-/actor-query-operation-update-clear-2.8.1.tgz",
"integrity": "sha512-2hharb0huR3Efo2JHkXPrBo2/G71MRNVw7ECa5z1W0nRTF/uwYjTHyCDbfdwRWur4shrD3rWw51WZKCEJrf7bg==",
"dependencies": {
"@comunica/bus-query-operation": "^2.8.1",
"@comunica/bus-rdf-update-quads": "^2.8.1",
"@comunica/core": "^2.8.1",
"@comunica/types": "^2.8.1",
"@rdfjs/types": "*",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-update-compositeupdate": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-compositeupdate/-/actor-query-operation-update-compositeupdate-2.8.1.tgz",
"integrity": "sha512-xpfRPSYtasDXlso4c4xqq6cKIR2sk2rkYR+nVsWq+k6WC5LNdkOEBNLikOo3GM8xiX2gWigRO7TKpXPDNj96qA==",
"dependencies": {
"@comunica/bus-query-operation": "^2.8.1",
"@comunica/core": "^2.8.1",
"@comunica/types": "^2.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-update-copy-rewrite": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-copy-rewrite/-/actor-query-operation-update-copy-rewrite-2.8.1.tgz",
"integrity": "sha512-2w2alteCRLEXcrzL8XnDHtjTrUdky2v4RaLromuWiZ7mswnDEGDm+xuw5/nTu7lxYMzw7u+k7vhjfH0713LFSQ==",
"dependencies": {
"@comunica/bus-query-operation": "^2.8.1",
"@comunica/core": "^2.8.1",
"@comunica/types": "^2.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-update-create": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-create/-/actor-query-operation-update-create-2.8.1.tgz",
"integrity": "sha512-eta6oy0uVCNNwnKL6QgoW9lziEOxp7pw6OuMi0u4BBDFv57cUaSkMiOBnVmwgnn23/FQIWRg2q+m6ZJJIYWlOw==",
"dependencies": {
"@comunica/bus-query-operation": "^2.8.1",
"@comunica/bus-rdf-update-quads": "^2.8.1",
"@comunica/core": "^2.8.1",
"@comunica/types": "^2.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-update-deleteinsert": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-deleteinsert/-/actor-query-operation-update-deleteinsert-2.8.1.tgz",
"integrity": "sha512-6RaKFPOvStclWzmdmGcO2hnp2n+kt6jAUe14JG9m+OlalEXX5Qpcep1tWOUD2qJQuKoJcLofHKmpVYjdCF/Fxg==",
"dependencies": {
"@comunica/actor-query-operation-construct": "^2.8.1",
"@comunica/bindings-factory": "^2.7.0",
"@comunica/bus-query-operation": "^2.8.1",
"@comunica/bus-rdf-update-quads": "^2.8.1",
"@comunica/core": "^2.8.1",
"@comunica/types": "^2.8.1",
"@rdfjs/types": "*",
"asynciterator": "^3.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-update-drop": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-drop/-/actor-query-operation-update-drop-2.8.1.tgz",
"integrity": "sha512-4dno1rlRZTLDDt4L9qpCynRiKtGotUEtghfFxO50e4OPtndZdyb8BZQf4DRcsp8oyL3cT8xLuvqO7qAMOOuKHg==",
"dependencies": {
"@comunica/bus-query-operation": "^2.8.1",
"@comunica/bus-rdf-update-quads": "^2.8.1",
"@comunica/core": "^2.8.1",
"@comunica/types": "^2.8.1",
"@rdfjs/types": "*",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-update-load": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-load/-/actor-query-operation-update-load-2.8.1.tgz",
"integrity": "sha512-gtzQBSGH3cMl003NLewp2GFd64vXY/ATGCIsuqz2upk8kk+57j02CAV7ytyvwGuqo9d3KG8GwS2ncAYuaz6vNA==",
"dependencies": {
"@comunica/bus-query-operation": "^2.8.1",
"@comunica/bus-rdf-update-quads": "^2.8.1",
"@comunica/context-entries": "^2.8.1",
"@comunica/core": "^2.8.1",
"@comunica/types": "^2.8.1",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-update-move-rewrite": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-move-rewrite/-/actor-query-operation-update-move-rewrite-2.8.1.tgz",
"integrity": "sha512-xq0O92+R4b6XtUXm9SKU++PZ4WxKRZLEqixgscFnImRu3xIequZv2gye7YAnrr2/igJKiYvd5bSiA3CJnMBGig==",
"dependencies": {
"@comunica/bus-query-operation": "^2.8.1",
"@comunica/core": "^2.8.1",
"@comunica/types": "^2.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-values": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-values/-/actor-query-operation-values-2.8.1.tgz",
"integrity": "sha512-6InmVgC0bz86UkbXWAdtodFuAU98xdxnf675k6oHgdz41rdGxCyfE6mqDXiVHqeXk8oISHyqCH5bx9BQzHf6mg==",
"dependencies": {
"@comunica/bindings-factory": "^2.7.0",
"@comunica/bus-query-operation": "^2.8.1",
"@comunica/core": "^2.8.1",
"@comunica/metadata": "^2.8.1",
"@comunica/types": "^2.8.1",
"asynciterator": "^3.8.1",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-parse-graphql": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-parse-graphql/-/actor-query-parse-graphql-2.8.1.tgz",
"integrity": "sha512-EPsWalAgkAzCS2LaWAaEj80mFoOcW3URlEcK7P50v+DTYyX5kVp0Ddb8iT0279WNhrOXYzML3CKoxXjCJr83+A==",
"dependencies": {
"@comunica/bus-query-parse": "^2.8.1",
"@comunica/context-entries": "^2.8.1",
"@comunica/core": "^2.8.1",
"graphql-to-sparql": "^3.0.1"
}
},
"node_modules/@comunica/actor-query-parse-sparql": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-parse-sparql/-/actor-query-parse-sparql-2.8.1.tgz",
"integrity": "sha512-IiUlOqCIreMyy9B7MkAtAGag7ZB5eobyboSKkqW7JGHJBmIPGtv/dnSMR60/O3vmQMdal9qko6HpubbGrW3rsg==",
"dependencies": {
"@comunica/bus-query-parse": "^2.8.1",
"@comunica/core": "^2.8.1",
"@types/sparqljs": "^3.1.3",
"sparqlalgebrajs": "^4.2.0",
"sparqljs": "^3.7.1"
}
},
"node_modules/@comunica/actor-query-result-serialize-json": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-json/-/actor-query-result-serialize-json-2.8.1.tgz",
"integrity": "sha512-TmBA0muqzOCVOSen+Fd1ItREQuCbe8lG/seHa4PelQqV6rOO6cGiRUlPLyTQQjsGZ5HDu/tgUtReiM0dPpaO7w==",
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.8.1",
"@comunica/types": "^2.8.1",
"rdf-string": "^1.6.1",
"readable-stream": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-rdf": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-rdf/-/actor-query-result-serialize-rdf-2.8.1.tgz",
"integrity": "sha512-i2JyCcp04DLm0Eccv8OvWJ5UYQm1RTUJjs1szJaoIwfU1h7jaL7pFQc0mReMMQ/bbOd/qOYvPxKoiBfTJbX4Yg==",
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.8.1",
"@comunica/bus-rdf-serialize": "^2.8.1",
"@comunica/core": "^2.8.1",
"@comunica/types": "^2.8.1"
}
},
"node_modules/@comunica/actor-query-result-serialize-simple": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-simple/-/actor-query-result-serialize-simple-2.8.1.tgz",
"integrity": "sha512-6lDbKQH97mIJ2E9iC3yE+iVaIeKpPstIzR5oTtqSDie8Rl1zx+3K2qY4jGptTK4zKicnS8+YmMz5dA22gII0tg==",
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.8.1",
"@comunica/types": "^2.8.1",
"@rdfjs/types": "*",
"rdf-string": "^1.6.3",
"readable-stream": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-sparql-csv": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-sparql-csv/-/actor-query-result-serialize-sparql-csv-2.8.1.tgz",
"integrity": "sha512-sCw/4JSnq0dwIynP4yH3Yc+mqaspy8gyM01CtnofdWPeBPRMvhOeGAaZHPI9cObfzf7sS0SLl1CIbm24jdUJXw==",
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.8.1",
"@comunica/types": "^2.8.1",
"@rdfjs/types": "*",
"readable-stream": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-sparql-json": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-sparql-json/-/actor-query-result-serialize-sparql-json-2.8.1.tgz",
"integrity": "sha512-bQC+SyByII+i9pGbXQnusCjKNO86pbRjkXJ95eWKdOq+ao+JLBs8fRI9dhf/OxnTT1YTkiWX/f/iBREjwE70xQ==",
"dependencies": {
"@comunica/bus-http": "^2.8.1",
"@comunica/bus-http-invalidate": "^2.8.1",
"@comunica/bus-query-result-serialize": "^2.8.1",
"@comunica/core": "^2.8.1",
"@comunica/types": "^2.8.1",
"@rdfjs/types": "*",
"readable-stream": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-sparql-tsv": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-sparql-tsv/-/actor-query-result-serialize-sparql-tsv-2.8.1.tgz",
"integrity": "sha512-VvN6H0MtYkqTKmg/I1Y3K6+k/cMlk90M7faZ0L8a9t6ZzivREu6pprqzM3GhOCl8VsOucU8nxjh2YH9hSAYrVw==",
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.8.1",
"@comunica/types": "^2.8.1",
"@rdfjs/types": "*",
"rdf-string-ttl": "^1.3.2",
"readable-stream": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-sparql-xml": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-sparql-xml/-/actor-query-result-serialize-sparql-xml-2.8.1.tgz",
"integrity": "sha512-shsy6vq3QYmu2PV0US1hBctT0AoYubyDiwD4UJTK+lvR1n1y+znAz2RLd3ttz5LHBRoldj8V6EYOIkTpS8bLBg==",
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.8.1",
"@comunica/types": "^2.8.1",
"@rdfjs/types": "*",
"readable-stream": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-stats": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-stats/-/actor-query-result-serialize-stats-2.8.1.tgz",
"integrity": "sha512-wp9iZZTQZS+ojh+rii0g3xBWO81EZ3lhb/HPfXerEK1riflHQS4o+bVOCxP7RjqM0XhEMyJ7NC3wb+OyaqXsxw==",
"dependencies": {
"@comunica/bus-http": "^2.8.1",
"@comunica/bus-http-invalidate": "^2.8.1",
"@comunica/bus-query-result-serialize": "^2.8.1",
"@comunica/core": "^2.8.1",
"@comunica/types": "^2.8.1",
"process": "^0.11.10",
"readable-stream": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-table": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-table/-/actor-query-result-serialize-table-2.8.1.tgz",
"integrity": "sha512-l9RBUhaDPzCbxof/WILypkZJodEWTL3CFMTgsabI/vyjNcM/MiQ+0XZKnKRotA9dZMi8qjD6u4i5w9OtTEU+VQ==",
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.8.1",
"@comunica/types": "^2.8.1",
"@rdfjs/types": "*",
"rdf-data-factory": "^1.1.1",
"rdf-string": "^1.6.3",
"rdf-terms": "^1.11.0",
"readable-stream": "^4.2.0"