-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage-lock.json
More file actions
10170 lines (10170 loc) · 400 KB
/
package-lock.json
File metadata and controls
10170 lines (10170 loc) · 400 KB
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": "nectar-bee",
"version": "1.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "nectar-bee",
"version": "1.0.0",
"license": "ISC",
"dependencies": {
"@comunica/query-sparql": "^3.0.0",
"@comunica/query-sparql-file": "^3.0.0",
"n3": "^1.17.2"
},
"devDependencies": {
"@types/jest": "^29.5.8",
"@types/node": "^20.19.17",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.2"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@babel/code-frame": {
"version": "7.27.1",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz",
"integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-validator-identifier": "^7.27.1",
"js-tokens": "^4.0.0",
"picocolors": "^1.1.1"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/compat-data": {
"version": "7.28.4",
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.4.tgz",
"integrity": "sha512-YsmSKC29MJwf0gF8Rjjrg5LQCmyh+j/nD8/eP7f+BeoQTKYqs9RoWbjGOdy0+1Ekr68RJZMUOPVQaQisnIo4Rw==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/core": {
"version": "7.28.4",
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.4.tgz",
"integrity": "sha512-2BCOP7TN8M+gVDj7/ht3hsaO/B/n5oDbiAyyvnRlNOs+u1o+JWNYTQrmpuNp1/Wq2gcFrI01JAW+paEKDMx/CA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/code-frame": "^7.27.1",
"@babel/generator": "^7.28.3",
"@babel/helper-compilation-targets": "^7.27.2",
"@babel/helper-module-transforms": "^7.28.3",
"@babel/helpers": "^7.28.4",
"@babel/parser": "^7.28.4",
"@babel/template": "^7.27.2",
"@babel/traverse": "^7.28.4",
"@babel/types": "^7.28.4",
"@jridgewell/remapping": "^2.3.5",
"convert-source-map": "^2.0.0",
"debug": "^4.1.0",
"gensync": "^1.0.0-beta.2",
"json5": "^2.2.3",
"semver": "^6.3.1"
},
"engines": {
"node": ">=6.9.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/babel"
}
},
"node_modules/@babel/core/node_modules/semver": {
"version": "6.3.1",
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true,
"license": "ISC",
"bin": {
"semver": "bin/semver.js"
}
},
"node_modules/@babel/generator": {
"version": "7.28.3",
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.3.tgz",
"integrity": "sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/parser": "^7.28.3",
"@babel/types": "^7.28.2",
"@jridgewell/gen-mapping": "^0.3.12",
"@jridgewell/trace-mapping": "^0.3.28",
"jsesc": "^3.0.2"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-compilation-targets": {
"version": "7.27.2",
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz",
"integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/compat-data": "^7.27.2",
"@babel/helper-validator-option": "^7.27.1",
"browserslist": "^4.24.0",
"lru-cache": "^5.1.1",
"semver": "^6.3.1"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-compilation-targets/node_modules/semver": {
"version": "6.3.1",
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true,
"license": "ISC",
"bin": {
"semver": "bin/semver.js"
}
},
"node_modules/@babel/helper-globals": {
"version": "7.28.0",
"resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz",
"integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-module-imports": {
"version": "7.27.1",
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz",
"integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/traverse": "^7.27.1",
"@babel/types": "^7.27.1"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-module-transforms": {
"version": "7.28.3",
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz",
"integrity": "sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-module-imports": "^7.27.1",
"@babel/helper-validator-identifier": "^7.27.1",
"@babel/traverse": "^7.28.3"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
}
},
"node_modules/@babel/helper-plugin-utils": {
"version": "7.27.1",
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz",
"integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-string-parser": {
"version": "7.27.1",
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
"integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-identifier": {
"version": "7.27.1",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz",
"integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-option": {
"version": "7.27.1",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz",
"integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helpers": {
"version": "7.28.4",
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz",
"integrity": "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/template": "^7.27.2",
"@babel/types": "^7.28.4"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/parser": {
"version": "7.28.4",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.4.tgz",
"integrity": "sha512-yZbBqeM6TkpP9du/I2pUZnJsRMGGvOuIrhjzC1AwHwW+6he4mni6Bp/m8ijn0iOuZuPI2BfkCoSRunpyjnrQKg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/types": "^7.28.4"
},
"bin": {
"parser": "bin/babel-parser.js"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@babel/plugin-syntax-async-generators": {
"version": "7.8.4",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz",
"integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.8.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-bigint": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz",
"integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.8.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-class-properties": {
"version": "7.12.13",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz",
"integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.12.13"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-class-static-block": {
"version": "7.14.5",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz",
"integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.14.5"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-import-attributes": {
"version": "7.27.1",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.27.1.tgz",
"integrity": "sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.27.1"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-import-meta": {
"version": "7.10.4",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz",
"integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.10.4"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-json-strings": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz",
"integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.8.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-jsx": {
"version": "7.27.1",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.27.1.tgz",
"integrity": "sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.27.1"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-logical-assignment-operators": {
"version": "7.10.4",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz",
"integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.10.4"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-nullish-coalescing-operator": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz",
"integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.8.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-numeric-separator": {
"version": "7.10.4",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz",
"integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.10.4"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-object-rest-spread": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz",
"integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.8.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-optional-catch-binding": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz",
"integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.8.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-optional-chaining": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz",
"integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.8.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-private-property-in-object": {
"version": "7.14.5",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz",
"integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.14.5"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-top-level-await": {
"version": "7.14.5",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz",
"integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.14.5"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-typescript": {
"version": "7.27.1",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.27.1.tgz",
"integrity": "sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.27.1"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/template": {
"version": "7.27.2",
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz",
"integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/code-frame": "^7.27.1",
"@babel/parser": "^7.27.2",
"@babel/types": "^7.27.1"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/traverse": {
"version": "7.28.4",
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.4.tgz",
"integrity": "sha512-YEzuboP2qvQavAcjgQNVgsvHIDv6ZpwXvcvjmyySP2DIMuByS/6ioU5G9pYrWHM6T2YDfc7xga9iNzYOs12CFQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/code-frame": "^7.27.1",
"@babel/generator": "^7.28.3",
"@babel/helper-globals": "^7.28.0",
"@babel/parser": "^7.28.4",
"@babel/template": "^7.27.2",
"@babel/types": "^7.28.4",
"debug": "^4.3.1"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/types": {
"version": "7.28.4",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.4.tgz",
"integrity": "sha512-bkFqkLhh3pMBUQQkpVgWDWq/lqzc2678eUyDlTBhRqhCHFguYYGM0Efga7tYk4TogG/3x0EEl66/OQ+WGbWB/Q==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-string-parser": "^7.27.1",
"@babel/helper-validator-identifier": "^7.27.1"
},
"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==",
"dev": true,
"license": "MIT"
},
"node_modules/@bergos/jsonparse": {
"version": "1.4.2",
"resolved": "https://registry.npmjs.org/@bergos/jsonparse/-/jsonparse-1.4.2.tgz",
"integrity": "sha512-qUt0QNJjvg4s1zk+AuLM6s/zcsQ8MvGn7+1f0vPuxvpCYa08YtTryuDInngbEyW5fNGGYe2znKt61RMGd5HnXg==",
"engines": [
"node >= 0.2.0"
],
"license": "MIT",
"dependencies": {
"buffer": "^6.0.3"
}
},
"node_modules/@colors/colors": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.6.0.tgz",
"integrity": "sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==",
"license": "MIT",
"engines": {
"node": ">=0.1.90"
}
},
"node_modules/@comunica/actor-abstract-mediatyped": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-mediatyped/-/actor-abstract-mediatyped-3.3.0.tgz",
"integrity": "sha512-aTpw3ByBm/Iyr7REJEH9UN2D3VPwfjQTOXOguENrdkU14nkD4WmbA1z2Tz3wNAE7DK28CKXcR5E7iCja9dKJUg==",
"license": "MIT",
"dependencies": {
"@comunica/core": "^3.3.0",
"@comunica/types": "^3.3.0"
}
},
"node_modules/@comunica/actor-abstract-parse": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-parse/-/actor-abstract-parse-3.3.0.tgz",
"integrity": "sha512-flFHGBWN4ppvhNBM/p5Shx0QY3U6FkClSCZNtsmXNMHb3j1QxGA0sgBv3joReNACvDiARUyMq2Zfp/Ye0tvCNA==",
"license": "MIT",
"dependencies": {
"@comunica/core": "^3.3.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-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-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/lru-cache": {
"version": "10.4.3",
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
"integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==",
"license": "ISC"
},
"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-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-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-dereference-fallback": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-fallback/-/actor-dereference-fallback-3.3.0.tgz",
"integrity": "sha512-IiBYDdm9KVUhFUSI6mDczbe5YvP/35xIci/SP4Z1VTqEzr3iFAFGOjHqCIRT8XXrh+hG3pb/Fc0AxmxfJxKRdg==",
"license": "MIT",
"dependencies": {
"@comunica/bus-dereference": "^3.3.0",
"@comunica/core": "^3.3.0"
}
},
"node_modules/@comunica/actor-dereference-file": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-file/-/actor-dereference-file-3.3.0.tgz",
"integrity": "sha512-DhoPV+mos/ihoy0EAkY3Ae4pWqlXLJgDzJ/DwY3bkEPcqn/RxD1ioT3RgUlHkdGk8NogcCXmpAKhhZu1voFiPw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-dereference": "^3.3.0",
"@comunica/core": "^3.3.0"
}
},
"node_modules/@comunica/actor-dereference-http": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-http/-/actor-dereference-http-3.3.0.tgz",
"integrity": "sha512-Yqc38Sqs3PgxMiNhLj/8Pdqm/1Aryt5//kCB9s4h1regO0TNozPU9PNAGoqp4WKgQBPvpR+vjQc+Xeti04DPqA==",
"license": "MIT",
"dependencies": {
"@comunica/bus-dereference": "^3.3.0",
"@comunica/bus-http": "^3.3.0",
"@comunica/core": "^3.3.0",
"@jeswr/stream-to-string": "^2.0.0",
"cross-fetch": "^4.0.0",
"relative-to-absolute-iri": "^1.0.7"
}
},
"node_modules/@comunica/actor-dereference-rdf-parse": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-rdf-parse/-/actor-dereference-rdf-parse-3.3.0.tgz",
"integrity": "sha512-isL43quMe+bSQpRkbtHQT3LNkzQ44JUD9HUVFuggzpFERd5K26XF2rqHfUUMYGQ9/BG5Zo9K9x4Nd39d90966w==",
"license": "MIT",
"dependencies": {
"@comunica/bus-dereference": "^3.3.0",
"@comunica/bus-dereference-rdf": "^3.3.0",
"@comunica/bus-rdf-parse": "^3.3.0"
}
},
"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-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-http-fetch": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-fetch/-/actor-http-fetch-3.3.0.tgz",
"integrity": "sha512-bzDtSE4zLMbI5bBPgu/XQ8QSDxYRN3w8T6R778xkhi2ulXasjv7oEDSTG5kWGc2GMO76Mhr8a33NFTRJOAqPIQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-http": "^3.3.0",
"@comunica/context-entries": "^3.3.0",
"@comunica/mediatortype-time": "^3.3.0",
"abort-controller": "^3.0.0",
"cross-fetch": "^4.0.0"
}
},
"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-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-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-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-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-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-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-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-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-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-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-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-rewrite-add": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-rewrite-add/-/actor-optimize-query-operation-rewrite-add-3.3.0.tgz",
"integrity": "sha512-8jsHEb5g2qka+g9zMhpFHfDn50q/tqVWPLKATMo2Xc4G/KKGM754be0BW4D3yzoGIHjNVnM3oe3mOO259BD5wQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^3.3.0",
"@comunica/core": "^3.3.0",
"@rdfjs/types": "*",
"rdf-data-factory": "^1.1.2",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-rewrite-copy": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-rewrite-copy/-/actor-optimize-query-operation-rewrite-copy-3.3.0.tgz",
"integrity": "sha512-NaC1DPWg5DVavmzGkIyiazhewOwjGR1eEkxHAgQm3T4f8DFmNuRysf4hDZxuE2jQahODrv5vlkS5X07ZRs06QA==",
"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-rewrite-move": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-rewrite-move/-/actor-optimize-query-operation-rewrite-move-3.3.0.tgz",
"integrity": "sha512-03fxh1NtVYWuU5NXvm8joGhAa0hBqzgtag4fFi/nbxYr8m9tzkMM7471Yaf9YotXZbohRS5i19KtqLSlajRUCw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^3.3.0",
"@comunica/core": "^3.3.0",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-query-operation-ask": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-ask/-/actor-query-operation-ask-3.3.0.tgz",
"integrity": "sha512-Vc/L2qpgOEU8S6H0suuhCZLfbETap6ExM65eE3+hnRuMSoFcIznjPeGft5dvWJyMipHzpu/KiKTVcCS27OPnZw==",
"license": "MIT",
"dependencies": {
"@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-query-operation-bgp-join": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-join/-/actor-query-operation-bgp-join-3.3.0.tgz",
"integrity": "sha512-9LsbA2fSw+6eWyugQJVq6Qvaupf2dcv8ps0Dp9G+wr3fZBfBfo8nJOiawpvSmdvQH/cTeXyVSMbI4G8R0BBR0w==",
"license": "MIT",
"dependencies": {
"@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-query-operation-construct": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-construct/-/actor-query-operation-construct-3.3.0.tgz",
"integrity": "sha512-APXwYgfxDJOwLTOIm4NpEGAqlgnYgMvb+Zo8/imqWjuEi4PY4GFo0aboM4062IS8f59OzwXmUAJMOJMUPM44Ng==",
"license": "MIT",
"dependencies": {
"@comunica/bus-query-operation": "^3.3.0",
"@comunica/core": "^3.3.0",