-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.lock
3712 lines (3712 loc) · 142 KB
/
deno.lock
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
{
"version": "4",
"specifiers": {
"jsr:@hono/hono@^4.6.16": "4.6.16",
"npm:@deno/vite-plugin@^1.0.2": "1.0.2_vite@5.4.11__@types+node@22.5.4_@types+node@22.5.4",
"npm:@graphql-codegen/cli@3.3.1": "3.3.1_graphql@16.10.0_@types+node@22.5.4",
"npm:@graphql-codegen/introspection@3.0.1": "3.0.1_graphql@16.10.0",
"npm:@graphql-codegen/schema-ast@^3.0.1": "3.0.1_graphql@16.10.0",
"npm:@graphql-codegen/typed-document-node@4.0.1": "4.0.1_graphql@16.10.0",
"npm:@graphql-codegen/typescript-operations@3.0.4": "3.0.4_graphql@16.10.0",
"npm:@graphql-codegen/typescript-urql@^3.7.3": "3.7.3_graphql@16.10.0_graphql-tag@2.12.6__graphql@16.10.0",
"npm:@graphql-codegen/typescript@3.0.4": "3.0.4_graphql@16.10.0",
"npm:@graphql-codegen/urql-introspection@2.2.1": "2.2.1_graphql@16.10.0",
"npm:@graphql-typed-document-node/core@^3.2.0": "3.2.0_graphql@16.10.0",
"npm:@saleor/app-sdk@0.0.0-pr-20250109150409": "0.0.0-pr-20250109150409_graphql@16.10.0_next@15.1.4__@opentelemetry+api@1.9.0__react@18.3.1__react-dom@18.3.1___react@18.3.1_react@18.3.1_react-dom@18.3.1__react@18.3.1_@opentelemetry+api@1.9.0",
"npm:@types/node@*": "22.5.4",
"npm:@types/react@^18.3.12": "18.3.18",
"npm:@vitejs/plugin-react@^4.3.3": "4.3.4_vite@5.4.11_@babel+core@7.26.0_@types+node@22.5.4",
"npm:graphql-codegen@*": "0.4.0",
"npm:react-dom@^18.3.1": "18.3.1_react@18.3.1",
"npm:react-router-dom@^6.28.0": "6.28.1_react@18.3.1_react-dom@18.3.1__react@18.3.1",
"npm:react@^18.3.1": "18.3.1",
"npm:vite@*": "5.4.11_@types+node@22.5.4",
"npm:vite@^5.4.11": "5.4.11_@types+node@22.5.4"
},
"jsr": {
"@hono/hono@4.6.16": {
"integrity": "b540c6b1352d73142895f7bb6bfd0b6cc514ede61c12940338c4ae5dd06cb326"
}
},
"npm": {
"@ampproject/remapping@2.3.0": {
"integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==",
"dependencies": [
"@jridgewell/gen-mapping",
"@jridgewell/trace-mapping"
]
},
"@ardatan/relay-compiler@12.0.0_graphql@16.10.0_@babel+core@7.26.0": {
"integrity": "sha512-9anThAaj1dQr6IGmzBMcfzOQKTa5artjuPmw8NYK/fiGEMjADbSguBY2FMDykt+QhilR3wc9VA/3yVju7JHg7Q==",
"dependencies": [
"@babel/core",
"@babel/generator",
"@babel/parser",
"@babel/runtime",
"@babel/traverse",
"@babel/types",
"babel-preset-fbjs",
"chalk",
"fb-watchman",
"fbjs",
"glob",
"graphql@16.10.0",
"immutable",
"invariant",
"nullthrows",
"relay-runtime",
"signedsource",
"yargs@15.4.1"
]
},
"@ardatan/sync-fetch@0.0.1": {
"integrity": "sha512-xhlTqH0m31mnsG0tIP4ETgfSB6gXDaYYsUWTrlUV93fFQPI9dd8hE0Ot6MHLCtqgB32hwJAC3YZMWlXZw7AleA==",
"dependencies": [
"node-fetch@2.7.0"
]
},
"@babel/code-frame@7.26.2": {
"integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==",
"dependencies": [
"@babel/helper-validator-identifier",
"js-tokens",
"picocolors"
]
},
"@babel/compat-data@7.26.3": {
"integrity": "sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g=="
},
"@babel/core@7.26.0": {
"integrity": "sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==",
"dependencies": [
"@ampproject/remapping",
"@babel/code-frame",
"@babel/generator",
"@babel/helper-compilation-targets",
"@babel/helper-module-transforms",
"@babel/helpers",
"@babel/parser",
"@babel/template",
"@babel/traverse",
"@babel/types",
"convert-source-map",
"debug",
"gensync",
"json5",
"semver@6.3.1"
]
},
"@babel/generator@7.26.3": {
"integrity": "sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==",
"dependencies": [
"@babel/parser",
"@babel/types",
"@jridgewell/gen-mapping",
"@jridgewell/trace-mapping",
"jsesc"
]
},
"@babel/helper-annotate-as-pure@7.25.9": {
"integrity": "sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==",
"dependencies": [
"@babel/types"
]
},
"@babel/helper-compilation-targets@7.25.9": {
"integrity": "sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==",
"dependencies": [
"@babel/compat-data",
"@babel/helper-validator-option",
"browserslist",
"lru-cache",
"semver@6.3.1"
]
},
"@babel/helper-create-class-features-plugin@7.25.9_@babel+core@7.26.0": {
"integrity": "sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==",
"dependencies": [
"@babel/core",
"@babel/helper-annotate-as-pure",
"@babel/helper-member-expression-to-functions",
"@babel/helper-optimise-call-expression",
"@babel/helper-replace-supers",
"@babel/helper-skip-transparent-expression-wrappers",
"@babel/traverse",
"semver@6.3.1"
]
},
"@babel/helper-member-expression-to-functions@7.25.9": {
"integrity": "sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==",
"dependencies": [
"@babel/traverse",
"@babel/types"
]
},
"@babel/helper-module-imports@7.25.9": {
"integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==",
"dependencies": [
"@babel/traverse",
"@babel/types"
]
},
"@babel/helper-module-transforms@7.26.0_@babel+core@7.26.0": {
"integrity": "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==",
"dependencies": [
"@babel/core",
"@babel/helper-module-imports",
"@babel/helper-validator-identifier",
"@babel/traverse"
]
},
"@babel/helper-optimise-call-expression@7.25.9": {
"integrity": "sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==",
"dependencies": [
"@babel/types"
]
},
"@babel/helper-plugin-utils@7.25.9": {
"integrity": "sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw=="
},
"@babel/helper-replace-supers@7.25.9_@babel+core@7.26.0": {
"integrity": "sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==",
"dependencies": [
"@babel/core",
"@babel/helper-member-expression-to-functions",
"@babel/helper-optimise-call-expression",
"@babel/traverse"
]
},
"@babel/helper-skip-transparent-expression-wrappers@7.25.9": {
"integrity": "sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==",
"dependencies": [
"@babel/traverse",
"@babel/types"
]
},
"@babel/helper-string-parser@7.25.9": {
"integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA=="
},
"@babel/helper-validator-identifier@7.25.9": {
"integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="
},
"@babel/helper-validator-option@7.25.9": {
"integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw=="
},
"@babel/helpers@7.26.0": {
"integrity": "sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==",
"dependencies": [
"@babel/template",
"@babel/types"
]
},
"@babel/parser@7.26.3": {
"integrity": "sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==",
"dependencies": [
"@babel/types"
]
},
"@babel/plugin-proposal-class-properties@7.18.6_@babel+core@7.26.0": {
"integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==",
"dependencies": [
"@babel/core",
"@babel/helper-create-class-features-plugin",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-proposal-object-rest-spread@7.20.7_@babel+core@7.26.0": {
"integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==",
"dependencies": [
"@babel/compat-data",
"@babel/core",
"@babel/helper-compilation-targets",
"@babel/helper-plugin-utils",
"@babel/plugin-syntax-object-rest-spread",
"@babel/plugin-transform-parameters"
]
},
"@babel/plugin-syntax-class-properties@7.12.13_@babel+core@7.26.0": {
"integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-syntax-flow@7.26.0_@babel+core@7.26.0": {
"integrity": "sha512-B+O2DnPc0iG+YXFqOxv2WNuNU97ToWjOomUQ78DouOENWUaM5sVrmet9mcomUGQFwpJd//gvUagXBSdzO1fRKg==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-syntax-import-assertions@7.26.0_@babel+core@7.26.0": {
"integrity": "sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-syntax-jsx@7.25.9_@babel+core@7.26.0": {
"integrity": "sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-syntax-object-rest-spread@7.8.3_@babel+core@7.26.0": {
"integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-arrow-functions@7.25.9_@babel+core@7.26.0": {
"integrity": "sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-block-scoped-functions@7.25.9_@babel+core@7.26.0": {
"integrity": "sha512-toHc9fzab0ZfenFpsyYinOX0J/5dgJVA2fm64xPewu7CoYHWEivIWKxkK2rMi4r3yQqLnVmheMXRdG+k239CgA==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-block-scoping@7.25.9_@babel+core@7.26.0": {
"integrity": "sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-classes@7.25.9_@babel+core@7.26.0": {
"integrity": "sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==",
"dependencies": [
"@babel/core",
"@babel/helper-annotate-as-pure",
"@babel/helper-compilation-targets",
"@babel/helper-plugin-utils",
"@babel/helper-replace-supers",
"@babel/traverse",
"globals"
]
},
"@babel/plugin-transform-computed-properties@7.25.9_@babel+core@7.26.0": {
"integrity": "sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils",
"@babel/template"
]
},
"@babel/plugin-transform-destructuring@7.25.9_@babel+core@7.26.0": {
"integrity": "sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-flow-strip-types@7.25.9_@babel+core@7.26.0": {
"integrity": "sha512-/VVukELzPDdci7UUsWQaSkhgnjIWXnIyRpM02ldxaVoFK96c41So8JcKT3m0gYjyv7j5FNPGS5vfELrWalkbDA==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils",
"@babel/plugin-syntax-flow"
]
},
"@babel/plugin-transform-for-of@7.25.9_@babel+core@7.26.0": {
"integrity": "sha512-LqHxduHoaGELJl2uhImHwRQudhCM50pT46rIBNvtT/Oql3nqiS3wOwP+5ten7NpYSXrrVLgtZU3DZmPtWZo16A==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils",
"@babel/helper-skip-transparent-expression-wrappers"
]
},
"@babel/plugin-transform-function-name@7.25.9_@babel+core@7.26.0": {
"integrity": "sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==",
"dependencies": [
"@babel/core",
"@babel/helper-compilation-targets",
"@babel/helper-plugin-utils",
"@babel/traverse"
]
},
"@babel/plugin-transform-literals@7.25.9_@babel+core@7.26.0": {
"integrity": "sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-member-expression-literals@7.25.9_@babel+core@7.26.0": {
"integrity": "sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-modules-commonjs@7.26.3_@babel+core@7.26.0": {
"integrity": "sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ==",
"dependencies": [
"@babel/core",
"@babel/helper-module-transforms",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-object-super@7.25.9_@babel+core@7.26.0": {
"integrity": "sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils",
"@babel/helper-replace-supers"
]
},
"@babel/plugin-transform-parameters@7.25.9_@babel+core@7.26.0": {
"integrity": "sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-property-literals@7.25.9_@babel+core@7.26.0": {
"integrity": "sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-react-display-name@7.25.9_@babel+core@7.26.0": {
"integrity": "sha512-KJfMlYIUxQB1CJfO3e0+h0ZHWOTLCPP115Awhaz8U0Zpq36Gl/cXlpoyMRnUWlhNUBAzldnCiAZNvCDj7CrKxQ==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-react-jsx-self@7.25.9_@babel+core@7.26.0": {
"integrity": "sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-react-jsx-source@7.25.9_@babel+core@7.26.0": {
"integrity": "sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-react-jsx@7.25.9_@babel+core@7.26.0": {
"integrity": "sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw==",
"dependencies": [
"@babel/core",
"@babel/helper-annotate-as-pure",
"@babel/helper-module-imports",
"@babel/helper-plugin-utils",
"@babel/plugin-syntax-jsx",
"@babel/types"
]
},
"@babel/plugin-transform-shorthand-properties@7.25.9_@babel+core@7.26.0": {
"integrity": "sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/plugin-transform-spread@7.25.9_@babel+core@7.26.0": {
"integrity": "sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils",
"@babel/helper-skip-transparent-expression-wrappers"
]
},
"@babel/plugin-transform-template-literals@7.25.9_@babel+core@7.26.0": {
"integrity": "sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw==",
"dependencies": [
"@babel/core",
"@babel/helper-plugin-utils"
]
},
"@babel/runtime@7.26.0": {
"integrity": "sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==",
"dependencies": [
"regenerator-runtime@0.14.1"
]
},
"@babel/template@7.25.9": {
"integrity": "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==",
"dependencies": [
"@babel/code-frame",
"@babel/parser",
"@babel/types"
]
},
"@babel/traverse@7.26.4": {
"integrity": "sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w==",
"dependencies": [
"@babel/code-frame",
"@babel/generator",
"@babel/parser",
"@babel/template",
"@babel/types",
"debug",
"globals"
]
},
"@babel/types@7.26.3": {
"integrity": "sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==",
"dependencies": [
"@babel/helper-string-parser",
"@babel/helper-validator-identifier"
]
},
"@deno/vite-plugin@1.0.2_vite@5.4.11__@types+node@22.5.4_@types+node@22.5.4": {
"integrity": "sha512-ZaC5W1yCb1xdRURU5qHFHrxZABr1tC68tS73/YhXUUbe9nuytCV4CG/dpLxMkxS64Fs3YwcqEz2k1eAqE9W5SQ==",
"dependencies": [
"vite"
]
},
"@emnapi/runtime@1.3.1": {
"integrity": "sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==",
"dependencies": [
"tslib@2.8.1"
]
},
"@esbuild/aix-ppc64@0.21.5": {
"integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ=="
},
"@esbuild/android-arm64@0.21.5": {
"integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A=="
},
"@esbuild/android-arm@0.21.5": {
"integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg=="
},
"@esbuild/android-x64@0.21.5": {
"integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA=="
},
"@esbuild/darwin-arm64@0.21.5": {
"integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ=="
},
"@esbuild/darwin-x64@0.21.5": {
"integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw=="
},
"@esbuild/freebsd-arm64@0.21.5": {
"integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g=="
},
"@esbuild/freebsd-x64@0.21.5": {
"integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ=="
},
"@esbuild/linux-arm64@0.21.5": {
"integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q=="
},
"@esbuild/linux-arm@0.21.5": {
"integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA=="
},
"@esbuild/linux-ia32@0.21.5": {
"integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg=="
},
"@esbuild/linux-loong64@0.21.5": {
"integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg=="
},
"@esbuild/linux-mips64el@0.21.5": {
"integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg=="
},
"@esbuild/linux-ppc64@0.21.5": {
"integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w=="
},
"@esbuild/linux-riscv64@0.21.5": {
"integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA=="
},
"@esbuild/linux-s390x@0.21.5": {
"integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A=="
},
"@esbuild/linux-x64@0.21.5": {
"integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ=="
},
"@esbuild/netbsd-x64@0.21.5": {
"integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg=="
},
"@esbuild/openbsd-x64@0.21.5": {
"integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow=="
},
"@esbuild/sunos-x64@0.21.5": {
"integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg=="
},
"@esbuild/win32-arm64@0.21.5": {
"integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A=="
},
"@esbuild/win32-ia32@0.21.5": {
"integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA=="
},
"@esbuild/win32-x64@0.21.5": {
"integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw=="
},
"@graphql-codegen/cli@3.3.1_graphql@16.10.0_@types+node@22.5.4": {
"integrity": "sha512-4Es8Y9zFeT0Zx2qRL7L3qXDbbqvXK6aID+8v8lP6gaYD+uWx3Jd4Hsq5vxwVBR+6flm0BW/C85Qm0cvmT7O6LA==",
"dependencies": [
"@babel/generator",
"@babel/template",
"@babel/types",
"@graphql-codegen/core",
"@graphql-codegen/plugin-helpers@4.2.0_graphql@16.10.0",
"@graphql-tools/apollo-engine-loader",
"@graphql-tools/code-file-loader",
"@graphql-tools/git-loader",
"@graphql-tools/github-loader",
"@graphql-tools/graphql-file-loader",
"@graphql-tools/json-file-loader",
"@graphql-tools/load",
"@graphql-tools/prisma-loader",
"@graphql-tools/url-loader",
"@graphql-tools/utils@9.2.1_graphql@16.10.0",
"@parcel/watcher",
"@whatwg-node/fetch",
"chalk",
"cosmiconfig@7.1.0",
"debounce",
"detect-indent",
"graphql@16.10.0",
"graphql-config",
"inquirer",
"is-glob",
"jiti@1.21.7",
"json-to-pretty-yaml",
"listr2",
"log-symbols",
"micromatch",
"shell-quote",
"string-env-interpolation",
"ts-log",
"tslib@2.8.1",
"yaml",
"yargs@17.7.2"
]
},
"@graphql-codegen/core@3.1.0_graphql@16.10.0": {
"integrity": "sha512-DH1/yaR7oJE6/B+c6ZF2Tbdh7LixF1K8L+8BoSubjNyQ8pNwR4a70mvc1sv6H7qgp6y1bPQ9tKE+aazRRshysw==",
"dependencies": [
"@graphql-codegen/plugin-helpers@4.2.0_graphql@16.10.0",
"@graphql-tools/schema",
"@graphql-tools/utils@9.2.1_graphql@16.10.0",
"graphql@16.10.0",
"tslib@2.5.3"
]
},
"@graphql-codegen/introspection@3.0.1_graphql@16.10.0": {
"integrity": "sha512-D6vJQTEL/np4EmeUHm5spLK59cr+AMXEoLRoTI+dagFzlHYDTfXZH6F7uhKaakxcj0SAQhIWKvGMggotUdEtyg==",
"dependencies": [
"@graphql-codegen/plugin-helpers@4.2.0_graphql@16.10.0",
"@graphql-codegen/visitor-plugin-common@3.1.1_graphql@16.10.0",
"graphql@16.10.0",
"tslib@2.5.3"
]
},
"@graphql-codegen/plugin-helpers@2.7.2_graphql@16.10.0": {
"integrity": "sha512-kln2AZ12uii6U59OQXdjLk5nOlh1pHis1R98cDZGFnfaiAbX9V3fxcZ1MMJkB7qFUymTALzyjZoXXdyVmPMfRg==",
"dependencies": [
"@graphql-tools/utils@8.13.1_graphql@16.10.0",
"change-case-all@1.0.14",
"common-tags",
"graphql@16.10.0",
"import-from",
"lodash",
"tslib@2.4.1"
]
},
"@graphql-codegen/plugin-helpers@4.2.0_graphql@16.10.0": {
"integrity": "sha512-THFTCfg+46PXlXobYJ/OoCX6pzjI+9woQqCjdyKtgoI0tn3Xq2HUUCiidndxUpEYVrXb5pRiRXb7b/ZbMQqD0A==",
"dependencies": [
"@graphql-tools/utils@9.2.1_graphql@16.10.0",
"change-case-all@1.0.15",
"common-tags",
"graphql@16.10.0",
"import-from",
"lodash",
"tslib@2.5.3"
]
},
"@graphql-codegen/schema-ast@3.0.1_graphql@16.10.0": {
"integrity": "sha512-rTKTi4XiW4QFZnrEqetpiYEWVsOFNoiR/v3rY9mFSttXFbIwNXPme32EspTiGWmEEdHY8UuTDtZN3vEcs/31zw==",
"dependencies": [
"@graphql-codegen/plugin-helpers@4.2.0_graphql@16.10.0",
"@graphql-tools/utils@9.2.1_graphql@16.10.0",
"graphql@16.10.0",
"tslib@2.5.3"
]
},
"@graphql-codegen/typed-document-node@4.0.1_graphql@16.10.0": {
"integrity": "sha512-mQNYCd12JsFSaK6xLry4olY9TdYG7GxQPexU6qU4Om++eKhseGwk2eGmQDRG4Qp8jEDFLMXuHMVUKqMQ1M+F/A==",
"dependencies": [
"@graphql-codegen/plugin-helpers@4.2.0_graphql@16.10.0",
"@graphql-codegen/visitor-plugin-common@3.1.1_graphql@16.10.0",
"auto-bind",
"change-case-all@1.0.15",
"graphql@16.10.0",
"tslib@2.5.3"
]
},
"@graphql-codegen/typescript-operations@3.0.4_graphql@16.10.0": {
"integrity": "sha512-6yE2OL2+WJ1vd5MwFEGXpaxsFGzjAGUytPVHDML3Bi3TwP1F3lnQlIko4untwvHW0JhZEGQ7Ck30H9HjcxpdKA==",
"dependencies": [
"@graphql-codegen/plugin-helpers@4.2.0_graphql@16.10.0",
"@graphql-codegen/typescript",
"@graphql-codegen/visitor-plugin-common@3.1.1_graphql@16.10.0",
"auto-bind",
"graphql@16.10.0",
"tslib@2.5.3"
]
},
"@graphql-codegen/typescript-urql@3.7.3_graphql@16.10.0_graphql-tag@2.12.6__graphql@16.10.0": {
"integrity": "sha512-ndb3C/IZeLaZXI24OEQZnJ7OgzZJvBdw1xnU/ohL6/lMcC5xQgxHBpqM10MZgfTc9l9Ip7qZVCVQk3I4cvcGrA==",
"dependencies": [
"@graphql-codegen/plugin-helpers@2.7.2_graphql@16.10.0",
"@graphql-codegen/visitor-plugin-common@2.13.1_graphql@16.10.0",
"auto-bind",
"graphql@16.10.0",
"graphql-tag",
"tslib@2.4.1"
]
},
"@graphql-codegen/typescript@3.0.4_graphql@16.10.0": {
"integrity": "sha512-x4O47447DZrWNtE/l5CU9QzzW4m1RbmCEdijlA3s2flG/y1Ckqdemob4CWfilSm5/tZ3w1junVDY616RDTSvZw==",
"dependencies": [
"@graphql-codegen/plugin-helpers@4.2.0_graphql@16.10.0",
"@graphql-codegen/schema-ast",
"@graphql-codegen/visitor-plugin-common@3.1.1_graphql@16.10.0",
"auto-bind",
"graphql@16.10.0",
"tslib@2.5.3"
]
},
"@graphql-codegen/urql-introspection@2.2.1_graphql@16.10.0": {
"integrity": "sha512-/KjHSf4dQNoYZZ+G10b3lbw304ik9xHzRf/syNvoYehmwdYE5J7RnO1v1Cz78LDm2NEdsFas6vJHi0sJd/pOHg==",
"dependencies": [
"@graphql-codegen/plugin-helpers@2.7.2_graphql@16.10.0",
"@urql/introspection",
"graphql@16.10.0",
"tslib@2.4.1"
]
},
"@graphql-codegen/visitor-plugin-common@2.13.1_graphql@16.10.0": {
"integrity": "sha512-mD9ufZhDGhyrSaWQGrU1Q1c5f01TeWtSWy/cDwXYjJcHIj1Y/DG2x0tOflEfCvh5WcnmHNIw4lzDsg1W7iFJEg==",
"dependencies": [
"@graphql-codegen/plugin-helpers@2.7.2_graphql@16.10.0",
"@graphql-tools/optimize",
"@graphql-tools/relay-operation-optimizer",
"@graphql-tools/utils@8.13.1_graphql@16.10.0",
"auto-bind",
"change-case-all@1.0.14",
"dependency-graph",
"graphql@16.10.0",
"graphql-tag",
"parse-filepath",
"tslib@2.4.1"
]
},
"@graphql-codegen/visitor-plugin-common@3.1.1_graphql@16.10.0": {
"integrity": "sha512-uAfp+zu/009R3HUAuTK2AamR1bxIltM6rrYYI6EXSmkM3rFtFsLTuJhjUDj98HcUCszJZrADppz8KKLGRUVlNg==",
"dependencies": [
"@graphql-codegen/plugin-helpers@4.2.0_graphql@16.10.0",
"@graphql-tools/optimize",
"@graphql-tools/relay-operation-optimizer",
"@graphql-tools/utils@9.2.1_graphql@16.10.0",
"auto-bind",
"change-case-all@1.0.15",
"dependency-graph",
"graphql@16.10.0",
"graphql-tag",
"parse-filepath",
"tslib@2.5.3"
]
},
"@graphql-tools/apollo-engine-loader@7.3.26_graphql@16.10.0": {
"integrity": "sha512-h1vfhdJFjnCYn9b5EY1Z91JTF0KB3hHVJNQIsiUV2mpQXZdeOXQoaWeYEKaiI5R6kwBw5PP9B0fv3jfUIG8LyQ==",
"dependencies": [
"@ardatan/sync-fetch",
"@graphql-tools/utils@9.2.1_graphql@16.10.0",
"@whatwg-node/fetch",
"graphql@16.10.0",
"tslib@2.8.1"
]
},
"@graphql-tools/batch-execute@8.5.22_graphql@16.10.0": {
"integrity": "sha512-hcV1JaY6NJQFQEwCKrYhpfLK8frSXDbtNMoTur98u10Cmecy1zrqNKSqhEyGetpgHxaJRqszGzKeI3RuroDN6A==",
"dependencies": [
"@graphql-tools/utils@9.2.1_graphql@16.10.0",
"dataloader",
"graphql@16.10.0",
"tslib@2.8.1",
"value-or-promise"
]
},
"@graphql-tools/code-file-loader@7.3.23_graphql@16.10.0": {
"integrity": "sha512-8Wt1rTtyTEs0p47uzsPJ1vAtfAx0jmxPifiNdmo9EOCuUPyQGEbMaik/YkqZ7QUFIEYEQu+Vgfo8tElwOPtx5Q==",
"dependencies": [
"@graphql-tools/graphql-tag-pluck",
"@graphql-tools/utils@9.2.1_graphql@16.10.0",
"globby",
"graphql@16.10.0",
"tslib@2.8.1",
"unixify"
]
},
"@graphql-tools/delegate@9.0.35_graphql@16.10.0": {
"integrity": "sha512-jwPu8NJbzRRMqi4Vp/5QX1vIUeUPpWmlQpOkXQD2r1X45YsVceyUUBnktCrlJlDB4jPRVy7JQGwmYo3KFiOBMA==",
"dependencies": [
"@graphql-tools/batch-execute",
"@graphql-tools/executor",
"@graphql-tools/schema",
"@graphql-tools/utils@9.2.1_graphql@16.10.0",
"dataloader",
"graphql@16.10.0",
"tslib@2.8.1",
"value-or-promise"
]
},
"@graphql-tools/executor-graphql-ws@0.0.14_graphql@16.10.0_ws@8.13.0": {
"integrity": "sha512-P2nlkAsPZKLIXImFhj0YTtny5NQVGSsKnhi7PzXiaHSXc6KkzqbWZHKvikD4PObanqg+7IO58rKFpGXP7eeO+w==",
"dependencies": [
"@graphql-tools/utils@9.2.1_graphql@16.10.0",
"@repeaterjs/repeater@3.0.4",
"@types/ws",
"graphql@16.10.0",
"graphql-ws",
"isomorphic-ws@5.0.0_ws@8.13.0",
"tslib@2.8.1",
"ws@8.13.0"
]
},
"@graphql-tools/executor-http@0.1.10_graphql@16.10.0_@types+node@22.5.4": {
"integrity": "sha512-hnAfbKv0/lb9s31LhWzawQ5hghBfHS+gYWtqxME6Rl0Aufq9GltiiLBcl7OVVOnkLF0KhwgbYP1mB5VKmgTGpg==",
"dependencies": [
"@graphql-tools/utils@9.2.1_graphql@16.10.0",
"@repeaterjs/repeater@3.0.6",
"@whatwg-node/fetch",
"dset",
"extract-files",
"graphql@16.10.0",
"meros",
"tslib@2.8.1",
"value-or-promise"
]
},
"@graphql-tools/executor-legacy-ws@0.0.11_graphql@16.10.0_ws@8.13.0": {
"integrity": "sha512-4ai+NnxlNfvIQ4c70hWFvOZlSUN8lt7yc+ZsrwtNFbFPH/EroIzFMapAxM9zwyv9bH38AdO3TQxZ5zNxgBdvUw==",
"dependencies": [
"@graphql-tools/utils@9.2.1_graphql@16.10.0",
"@types/ws",
"graphql@16.10.0",
"isomorphic-ws@5.0.0_ws@8.13.0",
"tslib@2.8.1",
"ws@8.13.0"
]
},
"@graphql-tools/executor@0.0.20_graphql@16.10.0": {
"integrity": "sha512-GdvNc4vszmfeGvUqlcaH1FjBoguvMYzxAfT6tDd4/LgwymepHhinqLNA5otqwVLW+JETcDaK7xGENzFomuE6TA==",
"dependencies": [
"@graphql-tools/utils@9.2.1_graphql@16.10.0",
"@graphql-typed-document-node/core",
"@repeaterjs/repeater@3.0.6",
"graphql@16.10.0",
"tslib@2.8.1",
"value-or-promise"
]
},
"@graphql-tools/git-loader@7.3.0_graphql@16.10.0": {
"integrity": "sha512-gcGAK+u16eHkwsMYqqghZbmDquh8QaO24Scsxq+cVR+vx1ekRlsEiXvu+yXVDbZdcJ6PBIbeLcQbEu+xhDLmvQ==",
"dependencies": [
"@graphql-tools/graphql-tag-pluck",
"@graphql-tools/utils@9.2.1_graphql@16.10.0",
"graphql@16.10.0",
"is-glob",
"micromatch",
"tslib@2.8.1",
"unixify"
]
},
"@graphql-tools/github-loader@7.3.28_graphql@16.10.0_@types+node@22.5.4": {
"integrity": "sha512-OK92Lf9pmxPQvjUNv05b3tnVhw0JRfPqOf15jZjyQ8BfdEUrJoP32b4dRQQem/wyRL24KY4wOfArJNqzpsbwCA==",
"dependencies": [
"@ardatan/sync-fetch",
"@graphql-tools/executor-http",
"@graphql-tools/graphql-tag-pluck",
"@graphql-tools/utils@9.2.1_graphql@16.10.0",
"@whatwg-node/fetch",
"graphql@16.10.0",
"tslib@2.8.1",
"value-or-promise"
]
},
"@graphql-tools/graphql-file-loader@7.5.17_graphql@16.10.0": {
"integrity": "sha512-hVwwxPf41zOYgm4gdaZILCYnKB9Zap7Ys9OhY1hbwuAuC4MMNY9GpUjoTU3CQc3zUiPoYStyRtUGkHSJZ3HxBw==",
"dependencies": [
"@graphql-tools/import",
"@graphql-tools/utils@9.2.1_graphql@16.10.0",
"globby",
"graphql@16.10.0",
"tslib@2.8.1",
"unixify"
]
},
"@graphql-tools/graphql-tag-pluck@7.5.2_graphql@16.10.0": {
"integrity": "sha512-RW+H8FqOOLQw0BPXaahYepVSRjuOHw+7IL8Opaa5G5uYGOBxoXR7DceyQ7BcpMgktAOOmpDNQ2WtcboChOJSRA==",
"dependencies": [
"@babel/parser",
"@babel/plugin-syntax-import-assertions",
"@babel/traverse",
"@babel/types",
"@graphql-tools/utils@9.2.1_graphql@16.10.0",
"graphql@16.10.0",
"tslib@2.8.1"
]
},
"@graphql-tools/import@6.7.18_graphql@16.10.0": {
"integrity": "sha512-XQDdyZTp+FYmT7as3xRWH/x8dx0QZA2WZqfMF5EWb36a0PiH7WwlRQYIdyYXj8YCLpiWkeBXgBRHmMnwEYR8iQ==",
"dependencies": [
"@graphql-tools/utils@9.2.1_graphql@16.10.0",
"graphql@16.10.0",
"resolve-from@5.0.0",
"tslib@2.8.1"
]
},
"@graphql-tools/json-file-loader@7.4.18_graphql@16.10.0": {
"integrity": "sha512-AJ1b6Y1wiVgkwsxT5dELXhIVUPs/u3VZ8/0/oOtpcoyO/vAeM5rOvvWegzicOOnQw8G45fgBRMkkRfeuwVt6+w==",
"dependencies": [
"@graphql-tools/utils@9.2.1_graphql@16.10.0",
"globby",
"graphql@16.10.0",
"tslib@2.8.1",
"unixify"
]
},
"@graphql-tools/load@7.8.14_graphql@16.10.0": {
"integrity": "sha512-ASQvP+snHMYm+FhIaLxxFgVdRaM0vrN9wW2BKInQpktwWTXVyk+yP5nQUCEGmn0RTdlPKrffBaigxepkEAJPrg==",
"dependencies": [
"@graphql-tools/schema",
"@graphql-tools/utils@9.2.1_graphql@16.10.0",
"graphql@16.10.0",
"p-limit@3.1.0",
"tslib@2.8.1"
]
},
"@graphql-tools/merge@8.4.2_graphql@16.10.0": {
"integrity": "sha512-XbrHAaj8yDuINph+sAfuq3QCZ/tKblrTLOpirK0+CAgNlZUCHs0Fa+xtMUURgwCVThLle1AF7svJCxFizygLsw==",
"dependencies": [
"@graphql-tools/utils@9.2.1_graphql@16.10.0",
"graphql@16.10.0",
"tslib@2.8.1"
]
},
"@graphql-tools/optimize@1.4.0_graphql@16.10.0": {
"integrity": "sha512-dJs/2XvZp+wgHH8T5J2TqptT9/6uVzIYvA6uFACha+ufvdMBedkfR4b4GbT8jAKLRARiqRTxy3dctnwkTM2tdw==",
"dependencies": [
"graphql@16.10.0",
"tslib@2.8.1"
]
},
"@graphql-tools/prisma-loader@7.2.72_graphql@16.10.0_@types+node@22.5.4": {
"integrity": "sha512-0a7uV7Fky6yDqd0tI9+XMuvgIo6GAqiVzzzFV4OSLry4AwiQlI3igYseBV7ZVOGhedOTqj/URxjpiv07hRcwag==",
"dependencies": [
"@graphql-tools/url-loader",
"@graphql-tools/utils@9.2.1_graphql@16.10.0",
"@types/js-yaml",
"@types/json-stable-stringify",
"@whatwg-node/fetch",
"chalk",
"debug",
"dotenv",
"graphql@16.10.0",
"graphql-request",
"http-proxy-agent",
"https-proxy-agent",
"jose",
"js-yaml",
"json-stable-stringify",
"lodash",
"scuid",
"tslib@2.8.1",
"yaml-ast-parser"
]
},
"@graphql-tools/relay-operation-optimizer@6.5.18_graphql@16.10.0": {
"integrity": "sha512-mc5VPyTeV+LwiM+DNvoDQfPqwQYhPV/cl5jOBjTgSniyaq8/86aODfMkrE2OduhQ5E00hqrkuL2Fdrgk0w1QJg==",
"dependencies": [
"@ardatan/relay-compiler",
"@graphql-tools/utils@9.2.1_graphql@16.10.0",
"graphql@16.10.0",
"tslib@2.8.1"
]
},
"@graphql-tools/schema@9.0.19_graphql@16.10.0": {
"integrity": "sha512-oBRPoNBtCkk0zbUsyP4GaIzCt8C0aCI4ycIRUL67KK5pOHljKLBBtGT+Jr6hkzA74C8Gco8bpZPe7aWFjiaK2w==",
"dependencies": [
"@graphql-tools/merge",
"@graphql-tools/utils@9.2.1_graphql@16.10.0",
"graphql@16.10.0",
"tslib@2.8.1",
"value-or-promise"
]
},
"@graphql-tools/url-loader@7.17.18_graphql@16.10.0_ws@8.18.0_@types+node@22.5.4": {
"integrity": "sha512-ear0CiyTj04jCVAxi7TvgbnGDIN2HgqzXzwsfcqiVg9cvjT40NcMlZ2P1lZDgqMkZ9oyLTV8Bw6j+SyG6A+xPw==",
"dependencies": [
"@ardatan/sync-fetch",
"@graphql-tools/delegate",
"@graphql-tools/executor-graphql-ws",
"@graphql-tools/executor-http",
"@graphql-tools/executor-legacy-ws",
"@graphql-tools/utils@9.2.1_graphql@16.10.0",
"@graphql-tools/wrap",
"@types/ws",
"@whatwg-node/fetch",
"graphql@16.10.0",
"isomorphic-ws@5.0.0_ws@8.18.0",
"tslib@2.8.1",
"value-or-promise",
"ws@8.18.0"
]
},
"@graphql-tools/utils@8.13.1_graphql@16.10.0": {
"integrity": "sha512-qIh9yYpdUFmctVqovwMdheVNJqFh+DQNWIhX87FJStfXYnmweBUDATok9fWPleKeFwxnW8IapKmY8m8toJEkAw==",
"dependencies": [
"graphql@16.10.0",
"tslib@2.8.1"
]
},
"@graphql-tools/utils@9.2.1_graphql@16.10.0": {
"integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==",
"dependencies": [
"@graphql-typed-document-node/core",
"graphql@16.10.0",
"tslib@2.8.1"
]
},
"@graphql-tools/wrap@9.4.2_graphql@16.10.0": {
"integrity": "sha512-DFcd9r51lmcEKn0JW43CWkkI2D6T9XI1juW/Yo86i04v43O9w2/k4/nx2XTJv4Yv+iXwUw7Ok81PGltwGJSDSA==",
"dependencies": [
"@graphql-tools/delegate",
"@graphql-tools/schema",
"@graphql-tools/utils@9.2.1_graphql@16.10.0",
"graphql@16.10.0",
"tslib@2.8.1",
"value-or-promise"
]
},
"@graphql-typed-document-node/core@3.2.0_graphql@16.10.0": {
"integrity": "sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==",
"dependencies": [