-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage-lock.json
More file actions
13467 lines (13467 loc) · 532 KB
/
package-lock.json
File metadata and controls
13467 lines (13467 loc) · 532 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": "@sib-swiss/sparql",
"version": "0.0.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@sib-swiss/sparql",
"version": "0.0.1",
"license": "MIT",
"workspaces": [
"packages/sparql-overview",
"packages/sparql-editor",
"packages/demo"
],
"devDependencies": {
"@eslint/js": "^9.29.0",
"@rollup/plugin-typescript": "^12.1.3",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@types/eslint__js": "^9.14.0",
"@types/node": "^24.0.3",
"@types/sparqljs": "^3.1.12",
"auto-changelog": "^2.5.0",
"eslint": "^9.29.0",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"lint-staged": "^16.1.2",
"prettier": "^3.5.3",
"tslib": "^2.8.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.1",
"vite": "^6.3.5",
"vitest": "^3.2.4"
}
},
"node_modules/@adobe/css-tools": {
"version": "4.4.0",
"resolved": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.4.0.tgz",
"integrity": "sha512-Ff9+ksdQQB3rMncgqDK78uLznstjyfIf2Arnh22pW8kBpLs6rpKDwgnZT46hin5Hl1WzazzK64DOrhSwYpS7bQ==",
"dev": true
},
"node_modules/@antfu/install-pkg": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@antfu/install-pkg/-/install-pkg-1.1.0.tgz",
"integrity": "sha512-MGQsmw10ZyI+EJo45CdSER4zEb+p31LpDAFp2Z3gkSd1yqVZGi0Ebx++YTEMonJy4oChEMLsxZ64j8FH6sSqtQ==",
"license": "MIT",
"dependencies": {
"package-manager-detector": "^1.3.0",
"tinyexec": "^1.0.1"
},
"funding": {
"url": "https://github.com/sponsors/antfu"
}
},
"node_modules/@antfu/install-pkg/node_modules/tinyexec": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-1.0.2.tgz",
"integrity": "sha512-W/KYk+NFhkmsYpuHq5JykngiOCnxeVL8v8dFnqxSD8qEEdRfXk1SDM6JzNqcERbcGYj9tMrDQBYV9cjgnunFIg==",
"license": "MIT",
"engines": {
"node": ">=18"
}
},
"node_modules/@asamuzakjp/css-color": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/@asamuzakjp/css-color/-/css-color-3.2.0.tgz",
"integrity": "sha512-K1A6z8tS3XsmCMM86xoWdn7Fkdn9m6RSVtocUrJYIwZnFVkng/PvkEoWtOWmP+Scc6saYWHWZYbndEEXxl24jw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@csstools/css-calc": "^2.1.3",
"@csstools/css-color-parser": "^3.0.9",
"@csstools/css-parser-algorithms": "^3.0.4",
"@csstools/css-tokenizer": "^3.0.3",
"lru-cache": "^10.4.3"
}
},
"node_modules/@babel/code-frame": {
"version": "7.24.7",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz",
"integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==",
"dev": true,
"dependencies": {
"@babel/highlight": "^7.24.7",
"picocolors": "^1.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-identifier": {
"version": "7.24.7",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz",
"integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==",
"dev": true,
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/highlight": {
"version": "7.24.7",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz",
"integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==",
"dev": true,
"dependencies": {
"@babel/helper-validator-identifier": "^7.24.7",
"chalk": "^2.4.2",
"js-tokens": "^4.0.0",
"picocolors": "^1.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/color-convert": {
"version": "1.9.3",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
"integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
"dev": true,
"dependencies": {
"color-name": "1.1.3"
}
},
"node_modules/@babel/highlight/node_modules/color-name": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
"integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==",
"dev": true
},
"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/@babel/runtime": {
"version": "7.27.6",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.27.6.tgz",
"integrity": "sha512-vbavdySgbTTrmFE+EsiqUTzlOr5bzlnJtUv9PynGCAKvfQqjIXbvFdumPM/GxMDfyuGMJaJAU6TO4zc1Jf1i8Q==",
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"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/@braintree/sanitize-url": {
"version": "7.1.1",
"resolved": "https://registry.npmjs.org/@braintree/sanitize-url/-/sanitize-url-7.1.1.tgz",
"integrity": "sha512-i1L7noDNxtFyL5DmZafWy1wRVhGehQmzZaz1HiN5e7iylJMSZR7ekOV7NsIqa5qBldlLrsKv4HbgFUVlQrz8Mw==",
"license": "MIT"
},
"node_modules/@chevrotain/cst-dts-gen": {
"version": "11.0.3",
"resolved": "https://registry.npmjs.org/@chevrotain/cst-dts-gen/-/cst-dts-gen-11.0.3.tgz",
"integrity": "sha512-BvIKpRLeS/8UbfxXxgC33xOumsacaeCKAjAeLyOn7Pcp95HiRbrpl14S+9vaZLolnbssPIUuiUd8IvgkRyt6NQ==",
"license": "Apache-2.0",
"dependencies": {
"@chevrotain/gast": "11.0.3",
"@chevrotain/types": "11.0.3",
"lodash-es": "4.17.21"
}
},
"node_modules/@chevrotain/gast": {
"version": "11.0.3",
"resolved": "https://registry.npmjs.org/@chevrotain/gast/-/gast-11.0.3.tgz",
"integrity": "sha512-+qNfcoNk70PyS/uxmj3li5NiECO+2YKZZQMbmjTqRI3Qchu8Hig/Q9vgkHpI3alNjr7M+a2St5pw5w5F6NL5/Q==",
"license": "Apache-2.0",
"dependencies": {
"@chevrotain/types": "11.0.3",
"lodash-es": "4.17.21"
}
},
"node_modules/@chevrotain/regexp-to-ast": {
"version": "11.0.3",
"resolved": "https://registry.npmjs.org/@chevrotain/regexp-to-ast/-/regexp-to-ast-11.0.3.tgz",
"integrity": "sha512-1fMHaBZxLFvWI067AVbGJav1eRY7N8DDvYCTwGBiE/ytKBgP8azTdgyrKyWZ9Mfh09eHWb5PgTSO8wi7U824RA==",
"license": "Apache-2.0"
},
"node_modules/@chevrotain/types": {
"version": "11.0.3",
"resolved": "https://registry.npmjs.org/@chevrotain/types/-/types-11.0.3.tgz",
"integrity": "sha512-gsiM3G8b58kZC2HaWR50gu6Y1440cHiJ+i3JUvcp/35JchYejb2+5MVeJK0iKThYpAa/P2PYFV4hoi44HD+aHQ==",
"license": "Apache-2.0"
},
"node_modules/@chevrotain/utils": {
"version": "11.0.3",
"resolved": "https://registry.npmjs.org/@chevrotain/utils/-/utils-11.0.3.tgz",
"integrity": "sha512-YslZMgtJUyuMbZ+aKvfF3x1f5liK4mWNxghFRv7jqRR9C3R3fAOGTTKvxXDa2Y1s9zSbcpuO0cAxDYsc9SrXoQ==",
"license": "Apache-2.0"
},
"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": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-mediatyped/-/actor-abstract-mediatyped-4.2.0.tgz",
"integrity": "sha512-+7NuPZQAi7iRJ1Cie9qqhbJjBv0/SadA/24+KrDVU4+4QM6n5usCKibA8D84Nqgt257IsrFrb2G7NndTZ6taww==",
"license": "MIT",
"dependencies": {
"@comunica/core": "^4.2.0",
"@comunica/types": "^4.2.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-abstract-parse": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-parse/-/actor-abstract-parse-4.2.0.tgz",
"integrity": "sha512-WUHr9Bhr3Z7eJ2GtSGnhj1xCXCarKkC82WPorlG+RhuPuryp152GtJYtdyBIR4pEetP2hL4n+VuvHjXY80LWbQ==",
"license": "MIT",
"dependencies": {
"@comunica/core": "^4.2.0",
"readable-stream": "^4.5.2"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-abstract-path": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-path/-/actor-abstract-path-4.3.0.tgz",
"integrity": "sha512-YESgq6YfNH93dLCBsEaqxhu8XFPEelp3tQay2y77d/cQr95e4+l89R9TXWjxb94L9q20CYFQsXmYM79A7FNcJA==",
"license": "MIT",
"dependencies": {
"@comunica/bus-query-operation": "^4.2.0",
"@comunica/context-entries": "^4.2.0",
"@comunica/core": "^4.2.0",
"@comunica/types": "^4.2.0",
"@comunica/utils-bindings-factory": "^4.2.0",
"@comunica/utils-query-operation": "^4.2.0",
"@rdfjs/types": "*",
"asynciterator": "^3.9.0",
"rdf-string": "^1.6.1",
"sparqlalgebrajs": "^4.3.8"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-average": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-average/-/actor-bindings-aggregator-factory-average-4.2.0.tgz",
"integrity": "sha512-VXVPsfVB801cXFfAMwnURTsOFrPYUB1qxxQNen1rlV0DVAFJw4kbgmdJLbnmBOR8Job7jx0JqQh5hKvl6uJP9w==",
"license": "MIT",
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^4.2.0",
"@comunica/bus-function-factory": "^4.2.0",
"@comunica/context-entries": "^4.2.0",
"@comunica/core": "^4.2.0",
"@comunica/types": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-count": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-count/-/actor-bindings-aggregator-factory-count-4.2.0.tgz",
"integrity": "sha512-wCo+ezCKYCDrzNwg07i9Z9xfBHHLKQLS10ImTEDMpjRNshR4GWgWB9saHQi2COEsBMTERBpEHADB4BZTx8FC6w==",
"license": "MIT",
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^4.2.0",
"@comunica/core": "^4.2.0",
"@comunica/types": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0",
"@rdfjs/types": "*",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-group-concat": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-group-concat/-/actor-bindings-aggregator-factory-group-concat-4.2.0.tgz",
"integrity": "sha512-Npn5Jco1vZLc5tmYe2eRgENEYFXdjuHrIjYagmA74wdw/cWUei74XE2zN1y2G4hW2DmvLVS9WXQ5ww9t0qxdzA==",
"license": "MIT",
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^4.2.0",
"@comunica/context-entries": "^4.2.0",
"@comunica/core": "^4.2.0",
"@comunica/types": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-max": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-max/-/actor-bindings-aggregator-factory-max-4.2.0.tgz",
"integrity": "sha512-T5ApKSMavbKyALe4PadgBQSj4AE2fa0yk6+tUiKRFr0I5WqMyoj57x3SWasVtWXssk/LySyT+PNQzr5c4tlc9w==",
"license": "MIT",
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^4.2.0",
"@comunica/core": "^4.2.0",
"@comunica/types": "^4.2.0",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-min": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-min/-/actor-bindings-aggregator-factory-min-4.2.0.tgz",
"integrity": "sha512-kUv1v0pqJrrrmOhx+SfLXMafreJAn48Phb5xcTT7UqyYTQO+WYGa3pXp2+P+9QfitreR4At58FNsv1lz5f9pAw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^4.2.0",
"@comunica/core": "^4.2.0",
"@comunica/types": "^4.2.0",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-sample": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-sample/-/actor-bindings-aggregator-factory-sample-4.2.0.tgz",
"integrity": "sha512-uV+3rrTfOAHricPHcuGPRVkufOfsBzQFM7Fa19/bmaZbWiouVS22bwAeQhQbUJXmQ4uU79kCD+eYXOKw689t/Q==",
"license": "MIT",
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^4.2.0",
"@comunica/core": "^4.2.0",
"@comunica/types": "^4.2.0",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-sum": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-sum/-/actor-bindings-aggregator-factory-sum-4.2.0.tgz",
"integrity": "sha512-Zh4Fr3IUiPFhr6cv/B49JBshOJHwEHZQ0qKsYN0ZTHc4YVA58/aveufhQX75Ijr/NU8wl9s7XRsy4/PZPk0SDA==",
"license": "MIT",
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^4.2.0",
"@comunica/bus-function-factory": "^4.2.0",
"@comunica/context-entries": "^4.2.0",
"@comunica/core": "^4.2.0",
"@comunica/types": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-wildcard-count": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-wildcard-count/-/actor-bindings-aggregator-factory-wildcard-count-4.2.0.tgz",
"integrity": "sha512-tBYD4aFjeqPMzYGnCdxngYh6Xwi7rbRE/60jTXy8O3TMiHjt2ogCDxF4qMlO6VJGWVb8Sg2ZTFciuNDwPR28HA==",
"license": "MIT",
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^4.2.0",
"@comunica/core": "^4.2.0",
"@comunica/types": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0",
"@rdfjs/types": "*",
"rdf-string": "^1.6.3"
}
},
"node_modules/@comunica/actor-context-preprocess-convert-shortcuts": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-convert-shortcuts/-/actor-context-preprocess-convert-shortcuts-4.2.0.tgz",
"integrity": "sha512-M1ruybVTRaaRkLBKlCDyLYOvxeDvFTW28R2USnTxoqMSYEA8kt4Wl7WHq3CeswCQjJy09MzNFsMieUplJXcJsA==",
"license": "MIT",
"dependencies": {
"@comunica/bus-context-preprocess": "^4.2.0",
"@comunica/core": "^4.2.0",
"@comunica/types": "^4.2.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-context-preprocess-query-source-identify": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-query-source-identify/-/actor-context-preprocess-query-source-identify-4.2.0.tgz",
"integrity": "sha512-5Y1FgCjDxuZVdaHFeBr71pIcDO++kIuHEiXqSi2JN4JjAv/if7Ds2Y7xkyU5c3Ql9Qh5G7rkFZ37jvpW+hiu/g==",
"license": "MIT",
"dependencies": {
"@comunica/bus-context-preprocess": "^4.2.0",
"@comunica/bus-http-invalidate": "^4.2.0",
"@comunica/bus-query-source-identify": "^4.2.0",
"@comunica/context-entries": "^4.2.0",
"@comunica/core": "^4.2.0",
"@comunica/types": "^4.2.0",
"lru-cache": "^10.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-context-preprocess-query-source-skolemize": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-query-source-skolemize/-/actor-context-preprocess-query-source-skolemize-4.2.0.tgz",
"integrity": "sha512-5QL1DI0vBeCRDJItM1LfM+vk1G2kUi1CpSb4uAwaa8o8hkwdExtWXguPp+w8GCk/h5ot4P23vgWgwZTZ3nwW2A==",
"license": "MIT",
"dependencies": {
"@comunica/bus-context-preprocess": "^4.2.0",
"@comunica/context-entries": "^4.2.0",
"@comunica/core": "^4.2.0",
"@comunica/types": "^4.2.0",
"@comunica/utils-data-factory": "^4.0.1",
"@comunica/utils-metadata": "^4.2.0",
"@rdfjs/types": "*",
"asynciterator": "^3.9.0",
"rdf-terms": "^1.11.0",
"sparqlalgebrajs": "^4.3.8"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-context-preprocess-set-defaults": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-set-defaults/-/actor-context-preprocess-set-defaults-4.2.0.tgz",
"integrity": "sha512-opUbREA93zVZc9OgPvWYQ3UGZy/WvS4d7bQ8FAcQxfv6zPR6UPC5gCC9/iPMa8f1zFSndj71vd+8AY8JqoB3lA==",
"license": "MIT",
"dependencies": {
"@comunica/bus-context-preprocess": "^4.2.0",
"@comunica/context-entries": "^4.2.0",
"@comunica/core": "^4.2.0",
"@comunica/types": "^4.2.0",
"@rdfjs/types": "*",
"rdf-data-factory": "^1.1.2"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-context-preprocess-source-to-destination": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-source-to-destination/-/actor-context-preprocess-source-to-destination-4.2.0.tgz",
"integrity": "sha512-s3CkLRLQnHWRzZF44vsuRjxslcEK3hH4CnvkSv3SIrHFVuzIrbUFYDUBvuaFmQJFDLmFJEwk7G49MCWh1RmofQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-context-preprocess": "^4.2.0",
"@comunica/context-entries": "^4.2.0",
"@comunica/core": "^4.2.0",
"@comunica/types": "^4.2.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-dereference-fallback": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-fallback/-/actor-dereference-fallback-4.2.0.tgz",
"integrity": "sha512-MtDTZj1zUrzj8zte74+3KnMVaJrQfQm15AquK3g8XwJYwDEPJwT5bDRenb/TXlcG6qio9MamY4iYkgsCRPmPVQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-dereference": "^4.2.0",
"@comunica/core": "^4.2.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-dereference-http": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-http/-/actor-dereference-http-4.2.0.tgz",
"integrity": "sha512-FKyO0N15QKanXc5mHAdLTaI0BXEhs2A6uxGr0IwcAePaMFt+fjxlG/sz97PeSgVzoW60nLD21a29KVN6cTGbMg==",
"license": "MIT",
"dependencies": {
"@comunica/bus-dereference": "^4.2.0",
"@comunica/bus-http": "^4.2.0",
"@comunica/core": "^4.2.0",
"@jeswr/stream-to-string": "^2.0.0",
"relative-to-absolute-iri": "^1.0.7"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-dereference-rdf-parse": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-rdf-parse/-/actor-dereference-rdf-parse-4.2.0.tgz",
"integrity": "sha512-i8Buj5Vlf6C7cA59Y8DqPjVABSDQZtjOgME/dheGrLdGm04xES+MRBwjLIhYnXadBns0Kk/UjIsnSI+k6sEXdw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-dereference": "^4.2.0",
"@comunica/bus-dereference-rdf": "^4.2.0",
"@comunica/bus-rdf-parse": "^4.2.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-expression-evaluator-factory-default": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-expression-evaluator-factory-default/-/actor-expression-evaluator-factory-default-4.2.0.tgz",
"integrity": "sha512-LrAySdpna3PdyW67emqIezNGIANsB5XDV38V8IeLiCiK5L1eIIZtk9izHSHhj/aEEWJSsLn7LTzBQcE8a8tjaw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-expression-evaluator-factory": "^4.2.0",
"@comunica/bus-function-factory": "^4.2.0",
"@comunica/bus-query-operation": "^4.2.0",
"@comunica/context-entries": "^4.2.0",
"@comunica/core": "^4.2.0",
"@comunica/types": "^4.2.0",
"@comunica/utils-bindings-factory": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0",
"@comunica/utils-query-operation": "^4.2.0",
"@rdfjs/types": "*",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-function-factory-expression-bnode": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-bnode/-/actor-function-factory-expression-bnode-4.2.0.tgz",
"integrity": "sha512-s67te7Rts2g+JBmWOcM6/leOg/UB4ilH6Pn0aVeDC3cILn0WuZkqOfMiVlkbvZ/D9sG7eKH/nyPqsoSylUq0HA==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^4.2.0",
"@comunica/context-entries": "^4.2.0",
"@comunica/types": "^4.2.0",
"@comunica/utils-data-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.2.0"
}
},
"node_modules/@comunica/actor-function-factory-expression-bound": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-bound/-/actor-function-factory-expression-bound-4.2.0.tgz",
"integrity": "sha512-SU5V0ndU921PjPyX5kUqt5/91ILD+vXz5f+DvkIC5iZqNuVZ0jbXGMAKxQ1Dcy78SN5ll4z0LOIwBx3SyD2ItQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^4.2.0",
"@comunica/context-entries": "^4.2.0",
"@comunica/types": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0"
}
},
"node_modules/@comunica/actor-function-factory-expression-coalesce": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-coalesce/-/actor-function-factory-expression-coalesce-4.2.0.tgz",
"integrity": "sha512-c9t33f/EBfCK4361orkjEhWMEK/eUBkml6xts3eoV2B/aw6fmz2Kht4uve3GX+veTTs7vEW8IjeCmDANxvOvTA==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0"
}
},
"node_modules/@comunica/actor-function-factory-expression-concat": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-concat/-/actor-function-factory-expression-concat-4.2.0.tgz",
"integrity": "sha512-S+YtHwxnkwedZUE8MDcZYDYiuFCXmmaaWXZIfkbmkm2u5v0fv1NP1UMuEyoLHPHg+COZ4YUmn/dC+vx03fQI+A==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^4.2.0",
"@comunica/context-entries": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0"
}
},
"node_modules/@comunica/actor-function-factory-expression-extensions": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-extensions/-/actor-function-factory-expression-extensions-4.2.0.tgz",
"integrity": "sha512-88n8WY2wqKKoCRknf/FFUkxBmpCDnG8e35czIIajwzSN4ks5Hiaf4A7m4dm/2ppoxevilz53SollC+Q4gA8iRA==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^4.2.0",
"@comunica/context-entries": "^4.2.0",
"@comunica/core": "^4.2.0",
"@comunica/types": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0",
"rdf-data-factory": "^1.1.2"
}
},
"node_modules/@comunica/actor-function-factory-expression-if": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-if/-/actor-function-factory-expression-if-4.2.0.tgz",
"integrity": "sha512-NjQXhjqJmq263NWy9CmcfiR9yU7mWBRmdFpoG0FjITEK/M0Naaw4uqoAc7XqT9/JLVamBGvPRcnLQbnRheL60g==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^4.2.0",
"@comunica/types": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0"
}
},
"node_modules/@comunica/actor-function-factory-expression-in": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-in/-/actor-function-factory-expression-in-4.2.0.tgz",
"integrity": "sha512-fcvuCduoXIR+tnfFLDoXhAmlVN2883F7cekVxae1uohDbhC0T+R34N/oipw7TlnYucNlFcG3anpOj1KyEgM6ng==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^4.2.0",
"@comunica/types": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0"
}
},
"node_modules/@comunica/actor-function-factory-expression-logical-and": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-logical-and/-/actor-function-factory-expression-logical-and-4.2.0.tgz",
"integrity": "sha512-M18sNb0kDItuf6z8oOLESWenLXLeEuw8NU+H1LB9sFe5S/MWGbj+mKsKTM+4+TsfsUUBXPtdYz68P6QmZo/HTw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^4.2.0",
"@comunica/types": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0"
}
},
"node_modules/@comunica/actor-function-factory-expression-logical-or": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-logical-or/-/actor-function-factory-expression-logical-or-4.2.0.tgz",
"integrity": "sha512-HrJJva+8MrC/2Ekj07whjDcDme3li9qo94eNWPt4T5QipgJjoetjcgKmbv8MZT8HnimaHE/Z/joJ0znGE1bLHw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^4.2.0",
"@comunica/types": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0"
}
},
"node_modules/@comunica/actor-function-factory-expression-not-in": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-not-in/-/actor-function-factory-expression-not-in-4.2.0.tgz",
"integrity": "sha512-bQXdzZPo1GBIXr1mNY5Y2YDnf2WrVtO+wg0GvyoEJyMs0pLp+TLU5Sl9iDtbqZUsvl1Lqq1NVQS0c/O3IzambA==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^4.2.0",
"@comunica/types": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0"
}
},
"node_modules/@comunica/actor-function-factory-expression-same-term": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-same-term/-/actor-function-factory-expression-same-term-4.2.0.tgz",
"integrity": "sha512-8anp3qVn/T1Z6p5XIM0kCR5OPhULkw4ebg8/MKWFmGABJ5CYIfRdzLAxqaFv0whOA6WI3fcriluRscG0YX5zIw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^4.2.0",
"@comunica/context-entries": "^4.2.0",
"@comunica/types": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0"
}
},
"node_modules/@comunica/actor-function-factory-term-abs": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-abs/-/actor-function-factory-term-abs-4.2.0.tgz",
"integrity": "sha512-7VyPSyZ5MWkVlTwuGgp0pQhfVEFeneub7HCP2vLnjvSA4LVZiol98y/oC9p1Y1w8aSoIA4NbTGg4KVXaMPtmUg==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0"
}
},
"node_modules/@comunica/actor-function-factory-term-addition": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-addition/-/actor-function-factory-term-addition-4.2.0.tgz",
"integrity": "sha512-KpqP4AYg7NDRVRbSUvf7n2MOz7dcFwUtEAVaQpDJmcr7Rfy5eAxaFooozaL8MDFOtom/Ekwqafq7tsLe6EzwZQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0",
"bignumber.js": "^9.1.2"
}
},
"node_modules/@comunica/actor-function-factory-term-ceil": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-ceil/-/actor-function-factory-term-ceil-4.2.0.tgz",
"integrity": "sha512-+xiX6Qz9xP/WX+lBq5TSBHzx89gTeZq/uWdTN0V5q7DskPmpjScdobhtsCSENIB0NPPM+yiXo2TDXl+WdfQDww==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0"
}
},
"node_modules/@comunica/actor-function-factory-term-contains": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-contains/-/actor-function-factory-term-contains-4.2.0.tgz",
"integrity": "sha512-t/OE6LJ7qFGd+Ptpe61VeLfa0rZcbj4RuwWQ5NV/FKIOyO+EOVvs3jSnsO2fxx+ecQlmXIoxqYKw28MIHmjMdA==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0"
}
},
"node_modules/@comunica/actor-function-factory-term-datatype": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-datatype/-/actor-function-factory-term-datatype-4.2.0.tgz",
"integrity": "sha512-Ilvh8RQcpUFoVHtiZBJfGkbcjw2c+SelG4phelKDaQJgdqQmJ1OguoQHXLatsUJMBwcrd6boSfqUt41Yiv18Ug==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0"
}
},
"node_modules/@comunica/actor-function-factory-term-day": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-day/-/actor-function-factory-term-day-4.2.0.tgz",
"integrity": "sha512-V3Wd3l+/gHrmiu481MHzhpJ3Lztc3oY2/cr1wsZC0+dzvgf8ZGsZPH+DQy5IYHoX9puzUeIa7pU1bf6mXMVVcQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0"
}
},
"node_modules/@comunica/actor-function-factory-term-division": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-division/-/actor-function-factory-term-division-4.2.0.tgz",
"integrity": "sha512-5RWmZmkxxuSz4M0h3GR9XoFSGizIMsXjrry/L0YFYh7HVy8MVyrY7I4SzajtpLwbxBWh+G4g43Uula1hKpGqSA==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0",
"bignumber.js": "^9.1.2"
}
},
"node_modules/@comunica/actor-function-factory-term-encode-for-uri": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-encode-for-uri/-/actor-function-factory-term-encode-for-uri-4.2.0.tgz",
"integrity": "sha512-nZscihmc0w1N5kHr4TVy65gBZ/p9B6E3SZkOq7ynbZiJtcISYihYgGo7zH28eygT4XuIjnfWQrh24AcGrRYBLQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0"
}
},
"node_modules/@comunica/actor-function-factory-term-equality": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-equality/-/actor-function-factory-term-equality-4.2.0.tgz",
"integrity": "sha512-+bMnfco/d6GnO2uQk1GVOM3CkSz+1kCWoI+bq7m6e99VilfshTSVQdH49el0ni7cmtQuoHjroXzLv0Ctis0Veg==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^4.2.0",
"@comunica/context-entries": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0"
}
},
"node_modules/@comunica/actor-function-factory-term-floor": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-floor/-/actor-function-factory-term-floor-4.2.0.tgz",
"integrity": "sha512-DcB/U9TWYYP5NXxANUexvbBgFFhvgOSg6s6lbph9RjizcRW2kLDBWGs/KLximidRm1DHrKey6z2m4k8oHH9P4g==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0"
}
},
"node_modules/@comunica/actor-function-factory-term-greater-than": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-greater-than/-/actor-function-factory-term-greater-than-4.2.0.tgz",
"integrity": "sha512-Hs/S6UyR9lUWl8+WhpEe3RwFnA2undypWyVcO7j5BJ0hsYN0KNdGDATMKmloiRXGpOyqfTF2n9+pQcjxzhDDcg==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0"
}
},
"node_modules/@comunica/actor-function-factory-term-greater-than-equal": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-greater-than-equal/-/actor-function-factory-term-greater-than-equal-4.2.0.tgz",
"integrity": "sha512-aNCSKytsQf6AaD6Rnbs1/DPJLvlvPnpUBim5R7dqOhqggmD5pclmAViKd7Oonq5elRck0/A8/+QRiH7KoYsj5g==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0"
}
},
"node_modules/@comunica/actor-function-factory-term-hours": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-hours/-/actor-function-factory-term-hours-4.2.0.tgz",
"integrity": "sha512-TYzhArFJV1vPItVIM1M2pOpkmyhjZLk5UzZX4VYtXpBCH/+YDIgrqxLOxOp1JnG1RlfBywk9hcV6jEo/rNHctw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0"
}
},
"node_modules/@comunica/actor-function-factory-term-inequality": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-inequality/-/actor-function-factory-term-inequality-4.2.0.tgz",
"integrity": "sha512-Yl8nu6KiFQVPVszsm60BnWy0uLY0Tvmsl0hbCFP2q8Qrm7dLJSIakYCJy1VbQPGTQrXXEgVyrnjid2ZlzQFZJQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0"
}
},
"node_modules/@comunica/actor-function-factory-term-iri": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-iri/-/actor-function-factory-term-iri-4.2.0.tgz",
"integrity": "sha512-HLtn1gOUXpfJcfsfrDw+UeEKNxyMSCosyug1bAbXDO6qtG0BcM6xYHkg65m8dNEa0qm7jljHnrF0EH8Gu0QlOg==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^4.2.0",
"@comunica/context-entries": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0",
"relative-to-absolute-iri": "^1.0.7"
}
},
"node_modules/@comunica/actor-function-factory-term-is-blank": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-is-blank/-/actor-function-factory-term-is-blank-4.2.0.tgz",
"integrity": "sha512-GVaCnhIHlIBBYKR7kewBUHf7fYmErX5FyTmikp9F1YhfXlL511jmLYbcENu9zSos8QWbqcFGiQ8wzBB+cJdhEg==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0"
}
},
"node_modules/@comunica/actor-function-factory-term-is-iri": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-is-iri/-/actor-function-factory-term-is-iri-4.2.0.tgz",
"integrity": "sha512-xob3nm4z9EmvA7JR0jvf8OVTmx/P1ErOgQGH7y81awzeSjT6eQ4Y3o2e1nSbecfoaiVqObBRpEiD+E9L2H9vUw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0"
}
},
"node_modules/@comunica/actor-function-factory-term-is-literal": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-is-literal/-/actor-function-factory-term-is-literal-4.2.0.tgz",
"integrity": "sha512-tZxbZm+3rtGanvb6HekWiMRvkKzDndUvRAPOqXt1ht3SD0fhfHRU8yyGbUaIulvSpPkDxJAYWjiMHdxE0jlhyw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0"
}
},
"node_modules/@comunica/actor-function-factory-term-is-numeric": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-is-numeric/-/actor-function-factory-term-is-numeric-4.2.0.tgz",
"integrity": "sha512-7UumdEXwqstImhsF10K6EBxUyNf/MQ/DJQL2246lu3ZsBDL+pwUjFOEXpEjZtbvi50210NxESZXyuB2LvuBdTw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0"
}
},
"node_modules/@comunica/actor-function-factory-term-is-triple": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-is-triple/-/actor-function-factory-term-is-triple-4.2.0.tgz",
"integrity": "sha512-fG8wf+ZyOux18/eDncfrNDuYO4b0dAZ8SloG0Yo1X82JrZspMCkknJbFmwxp7S9GJFl/wFFxwa5d//ycEs1VvQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0"
}
},
"node_modules/@comunica/actor-function-factory-term-lang": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-lang/-/actor-function-factory-term-lang-4.2.0.tgz",
"integrity": "sha512-+MzyAmSHCeMEqhP6w7NWlZo7FOcHbEkVPFzBAzX1fS9hJOAKSiioKPIo5ubC8jK0vVOsWLSG0xhrRfDWwOtX2g==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0"
}
},
"node_modules/@comunica/actor-function-factory-term-langmatches": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-langmatches/-/actor-function-factory-term-langmatches-4.2.0.tgz",
"integrity": "sha512-TtABO+iJWf1lnyEayumxAFiczmI888lhpk6k20VjEHOgCkjBDEz/6tbQiIiIWtcnC0N63TNoz0O43GmXDwv4zQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0"
}
},
"node_modules/@comunica/actor-function-factory-term-lcase": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-lcase/-/actor-function-factory-term-lcase-4.2.0.tgz",
"integrity": "sha512-wzL8z/m7/gBGY/vMXPj0gfy3g6DtiIgHLY67V0FDPe80qyYqzSE2hmbcEziANTnev9WtoG1B+JVv7u+pDEGCdw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0"
}
},
"node_modules/@comunica/actor-function-factory-term-lesser-than": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-lesser-than/-/actor-function-factory-term-lesser-than-4.2.0.tgz",
"integrity": "sha512-cIGAJgSTZX1DsAWO/Y+SsyeDEfA9rDN/eXk/PELyaicTJCfRS4Dqji+s8QHBkQLDs9Fhbh7/zLS4g0gCw9IHtQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^4.2.0",
"@comunica/context-entries": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0"
}
},
"node_modules/@comunica/actor-function-factory-term-lesser-than-equal": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-lesser-than-equal/-/actor-function-factory-term-lesser-than-equal-4.2.0.tgz",
"integrity": "sha512-I5zylRT2AIghY71BkTQk2PY7eYRfaPSnB+oPz6Xm5bOS7/HbCYraaayXfUVBxSg+VgBo/3ECNKgycKsxcjy2lg==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0"
}
},
"node_modules/@comunica/actor-function-factory-term-md5": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-md5/-/actor-function-factory-term-md5-4.2.0.tgz",
"integrity": "sha512-s8DODZorW82KE+7nXrmROtk1UB5TjD9gtaz5wfNTUGUy8XgNLx11L31w6PWjzP2Sj8nRzQWgYjzyfupriGSXBQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0",
"@types/spark-md5": "^3.0.1",
"spark-md5": "^3.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-minutes": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-minutes/-/actor-function-factory-term-minutes-4.2.0.tgz",
"integrity": "sha512-q3wZPiblx/V2yvX6joz7kxiwi7fac09cFeX1UuQnGLZPWkUBs1TScznWpp0SS3FpRJ/OYPoRRppAvphqg5rKeQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0"
}
},
"node_modules/@comunica/actor-function-factory-term-month": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-month/-/actor-function-factory-term-month-4.2.0.tgz",
"integrity": "sha512-yknO7g8x/M3ICf5wH3+PsFom94GlQacGfmoctJNVVwtTwJ61UWwZ7ytNvQjKII2W1afUUGQThnnE7/kF8aIVWg==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0"
}
},
"node_modules/@comunica/actor-function-factory-term-multiplication": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-multiplication/-/actor-function-factory-term-multiplication-4.2.0.tgz",
"integrity": "sha512-LyB+ZiLelY8GCMwXsb6Y/+iWbJiJpqnuGYQ18kCTLhj9Hi2pELvjhQGmov2BGQHBkEWskzEFhZjxzqExsr5M4g==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^4.2.0",
"@comunica/utils-expression-evaluator": "^4.2.0",
"bignumber.js": "^9.1.2"
}
},