-
Notifications
You must be signed in to change notification settings - Fork 4
/
package-lock.json
8441 lines (8441 loc) · 301 KB
/
package-lock.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "grievance-portal",
"version": "1.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "grievance-portal",
"version": "1.0.0",
"workspaces": [
"backend",
"frontend"
],
"devDependencies": {
"concurrently": "^9.1.0",
"nodemon": "^3.1.9",
"ts-node-dev": "^2.0.0"
}
},
"backend": {
"version": "1.0.0",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.3",
"cloudinary": "^1.41.3",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-session": "^1.18.1",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.12.0",
"mongoose": "^8.9.2",
"multer": "^1.4.5-lts.1",
"multer-storage-cloudinary": "^4.0.0",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.1"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/mongodb": "^4.0.7",
"@types/mongoose": "^5.11.97",
"@types/multer": "^1.4.12",
"@types/passport": "^1.0.7",
"@types/passport-google-oauth20": "^2.0.10",
"nodemon": "^3.1.9",
"ts-node-dev": "^2.0.0"
}
},
"frontend": {
"version": "0.1.0",
"dependencies": {
"@ag-grid-community/client-side-row-model": "^32.3.3",
"@ag-grid-community/core": "^32.3.3",
"@ag-grid-enterprise/all-modules": "^27.3.0",
"ag-grid-react": "^33.0.3",
"axios": "^1.7.9",
"next": "15.1.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.54.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.1.2",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
},
"frontend/node_modules/@types/node": {
"version": "20.17.10",
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.17.10.tgz",
"integrity": "sha512-/jrvh5h6NXhEauFFexRin69nA0uHJ5gwk4iDivp/DeoEua3uwCUto6PC86IpRITBOs4+6i2I56K5x5b6WYGXHA==",
"dev": true,
"license": "MIT",
"dependencies": {
"undici-types": "~6.19.2"
}
},
"node_modules/@ag-grid-community/all-modules": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-community/all-modules/-/all-modules-27.3.0.tgz",
"integrity": "sha512-yH5jH+sJ6niUR5N4MiyOYDUnldcjCRwpDeL82JyGh7/rsxACH026KcxEO+7Gk22CnSeMwUZidGorU2Dj/Na8rg==",
"deprecated": "Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.",
"license": "MIT",
"dependencies": {
"@ag-grid-community/client-side-row-model": "~27.3.0",
"@ag-grid-community/core": "~27.3.0",
"@ag-grid-community/csv-export": "~27.3.0",
"@ag-grid-community/infinite-row-model": "~27.3.0"
}
},
"node_modules/@ag-grid-community/all-modules/node_modules/@ag-grid-community/client-side-row-model": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-community/client-side-row-model/-/client-side-row-model-27.3.0.tgz",
"integrity": "sha512-t6ggg/SvESsGEC75z62rD/zFeo2DZCKFxw5e0qKweHR106CjBUNMlnfXIIG81qOSXUWGnbbWlrijBbKbyt8aTA==",
"license": "MIT",
"dependencies": {
"@ag-grid-community/core": "~27.3.0"
}
},
"node_modules/@ag-grid-community/all-modules/node_modules/@ag-grid-community/core": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-community/core/-/core-27.3.0.tgz",
"integrity": "sha512-77/bE2KdFlFI/ywEP46aSspXtgBteY/OPQyzU/lWqYrG2wC6cLfPSUB60t9e0FiqElwM/Vdcjz0TAjRwhZOPkw==",
"license": "MIT"
},
"node_modules/@ag-grid-community/client-side-row-model": {
"version": "32.3.3",
"resolved": "https://registry.npmjs.org/@ag-grid-community/client-side-row-model/-/client-side-row-model-32.3.3.tgz",
"integrity": "sha512-/6OFltj9qax/xfOcYMOKGFQRFTrPX8hrELfS2jChWwpo/+rpnnFqN2iUlIiAB1tDJZsi2ryl8S4UoFSTcEv/VA==",
"license": "MIT",
"dependencies": {
"@ag-grid-community/core": "32.3.3",
"tslib": "^2.3.0"
}
},
"node_modules/@ag-grid-community/core": {
"version": "32.3.3",
"resolved": "https://registry.npmjs.org/@ag-grid-community/core/-/core-32.3.3.tgz",
"integrity": "sha512-JMr5ahDjjl+pvQbBM1/VrfVFlioCVnMl1PKWc6MC1ENhpXT1+CPQdfhUEUw2VytOulQeQ4eeP0pFKPuBZ5Jn2g==",
"license": "MIT",
"dependencies": {
"ag-charts-types": "10.3.3",
"tslib": "^2.3.0"
}
},
"node_modules/@ag-grid-community/csv-export": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-community/csv-export/-/csv-export-27.3.0.tgz",
"integrity": "sha512-7pR05jEqTdUPAoqEMHxXGh6j0KViGmqLa4uwKmriKzfZOvwlq6umjDmXvPFCRCWfswb9KOqS1iZlGhcWufKApQ==",
"license": "MIT",
"dependencies": {
"@ag-grid-community/core": "~27.3.0"
}
},
"node_modules/@ag-grid-community/csv-export/node_modules/@ag-grid-community/core": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-community/core/-/core-27.3.0.tgz",
"integrity": "sha512-77/bE2KdFlFI/ywEP46aSspXtgBteY/OPQyzU/lWqYrG2wC6cLfPSUB60t9e0FiqElwM/Vdcjz0TAjRwhZOPkw==",
"license": "MIT"
},
"node_modules/@ag-grid-community/infinite-row-model": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-community/infinite-row-model/-/infinite-row-model-27.3.0.tgz",
"integrity": "sha512-hUWQ6YdRrNCDAvSn1bbxvnklIqPx8QGXMjmLVfR47+Gp1aoA1i9OxtA39SlzsZnRqDxZE5eKgwb5uy2+C4vKhA==",
"license": "MIT",
"dependencies": {
"@ag-grid-community/core": "~27.3.0"
}
},
"node_modules/@ag-grid-community/infinite-row-model/node_modules/@ag-grid-community/core": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-community/core/-/core-27.3.0.tgz",
"integrity": "sha512-77/bE2KdFlFI/ywEP46aSspXtgBteY/OPQyzU/lWqYrG2wC6cLfPSUB60t9e0FiqElwM/Vdcjz0TAjRwhZOPkw==",
"license": "MIT"
},
"node_modules/@ag-grid-enterprise/all-modules": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-enterprise/all-modules/-/all-modules-27.3.0.tgz",
"integrity": "sha512-DShNoMmOeDbeaCRTY7bbzITKvdMKVvDY96btRNU7nXi49PMk3k+4CMTpm+MO6Fq6SfINBarCfoUMfWHyjm7TUA==",
"deprecated": "Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.",
"license": "Commercial",
"dependencies": {
"@ag-grid-community/all-modules": "~27.3.0",
"@ag-grid-enterprise/charts": "~27.3.0",
"@ag-grid-enterprise/clipboard": "~27.3.0",
"@ag-grid-enterprise/column-tool-panel": "~27.3.0",
"@ag-grid-enterprise/core": "~27.3.0",
"@ag-grid-enterprise/excel-export": "~27.3.0",
"@ag-grid-enterprise/filter-tool-panel": "~27.3.0",
"@ag-grid-enterprise/master-detail": "~27.3.0",
"@ag-grid-enterprise/menu": "~27.3.0",
"@ag-grid-enterprise/multi-filter": "~27.3.0",
"@ag-grid-enterprise/range-selection": "~27.3.0",
"@ag-grid-enterprise/rich-select": "~27.3.0",
"@ag-grid-enterprise/row-grouping": "~27.3.0",
"@ag-grid-enterprise/server-side-row-model": "~27.3.0",
"@ag-grid-enterprise/set-filter": "~27.3.0",
"@ag-grid-enterprise/side-bar": "~27.3.0",
"@ag-grid-enterprise/sparklines": "~27.3.0",
"@ag-grid-enterprise/status-bar": "~27.3.0",
"@ag-grid-enterprise/viewport-row-model": "~27.3.0"
}
},
"node_modules/@ag-grid-enterprise/charts": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-enterprise/charts/-/charts-27.3.0.tgz",
"integrity": "sha512-itjdWDL6DHDNrdAazLAJpodPsIeImqkijYqNuVLWZFlCE0G6vNW9pMOozzXU/uMCf1lkUv3hJkse42ds4oDBHQ==",
"license": "Commercial",
"dependencies": {
"@ag-grid-community/core": "~27.3.0",
"@ag-grid-enterprise/core": "~27.3.0",
"@ag-grid-enterprise/range-selection": "~27.3.0",
"ag-charts-community": "~5.3.0"
}
},
"node_modules/@ag-grid-enterprise/charts/node_modules/@ag-grid-community/core": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-community/core/-/core-27.3.0.tgz",
"integrity": "sha512-77/bE2KdFlFI/ywEP46aSspXtgBteY/OPQyzU/lWqYrG2wC6cLfPSUB60t9e0FiqElwM/Vdcjz0TAjRwhZOPkw==",
"license": "MIT"
},
"node_modules/@ag-grid-enterprise/clipboard": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-enterprise/clipboard/-/clipboard-27.3.0.tgz",
"integrity": "sha512-KiGJ3CWKHasKW9oJz9XAALmkODTgeM3t2lb1GG6B0gv1nOyP1RnxW3YpK0RYSJbOLT/KXqIB9wdMOqidZGKoKw==",
"license": "Commercial",
"dependencies": {
"@ag-grid-community/core": "~27.3.0",
"@ag-grid-community/csv-export": "~27.3.0",
"@ag-grid-enterprise/core": "~27.3.0"
}
},
"node_modules/@ag-grid-enterprise/clipboard/node_modules/@ag-grid-community/core": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-community/core/-/core-27.3.0.tgz",
"integrity": "sha512-77/bE2KdFlFI/ywEP46aSspXtgBteY/OPQyzU/lWqYrG2wC6cLfPSUB60t9e0FiqElwM/Vdcjz0TAjRwhZOPkw==",
"license": "MIT"
},
"node_modules/@ag-grid-enterprise/column-tool-panel": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-enterprise/column-tool-panel/-/column-tool-panel-27.3.0.tgz",
"integrity": "sha512-BujQza9bfbhJhTFhnhmyQkWQEC3FXPOr6aGOoN0FIV1Tv7DmQwhKVxC3VlE9Lx9QhcCC9hAlEb9C3ueSiIky1A==",
"license": "Commercial",
"dependencies": {
"@ag-grid-community/core": "~27.3.0",
"@ag-grid-enterprise/core": "~27.3.0",
"@ag-grid-enterprise/row-grouping": "~27.3.0",
"@ag-grid-enterprise/side-bar": "~27.3.0"
}
},
"node_modules/@ag-grid-enterprise/column-tool-panel/node_modules/@ag-grid-community/core": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-community/core/-/core-27.3.0.tgz",
"integrity": "sha512-77/bE2KdFlFI/ywEP46aSspXtgBteY/OPQyzU/lWqYrG2wC6cLfPSUB60t9e0FiqElwM/Vdcjz0TAjRwhZOPkw==",
"license": "MIT"
},
"node_modules/@ag-grid-enterprise/core": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-enterprise/core/-/core-27.3.0.tgz",
"integrity": "sha512-v1XwzyoA2S2c8bpOAAMAS6pXp2KMO50oogCXBDeocNlaHODD32be1W+M3HPU9LKqkUe7ld34xhK/xDvjFsLTew==",
"license": "Commercial",
"dependencies": {
"@ag-grid-community/core": "~27.3.0"
}
},
"node_modules/@ag-grid-enterprise/core/node_modules/@ag-grid-community/core": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-community/core/-/core-27.3.0.tgz",
"integrity": "sha512-77/bE2KdFlFI/ywEP46aSspXtgBteY/OPQyzU/lWqYrG2wC6cLfPSUB60t9e0FiqElwM/Vdcjz0TAjRwhZOPkw==",
"license": "MIT"
},
"node_modules/@ag-grid-enterprise/excel-export": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-enterprise/excel-export/-/excel-export-27.3.0.tgz",
"integrity": "sha512-2uCTAbioKcLuRkYZutYcgL1U3fEYeatp2eMa/vjGND6dz7cF8Dtomua02FSCiOU2jM5cUIGk8Pvr3QR6ocazkA==",
"license": "Commercial",
"dependencies": {
"@ag-grid-community/core": "~27.3.0",
"@ag-grid-community/csv-export": "~27.3.0",
"@ag-grid-enterprise/core": "~27.3.0"
}
},
"node_modules/@ag-grid-enterprise/excel-export/node_modules/@ag-grid-community/core": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-community/core/-/core-27.3.0.tgz",
"integrity": "sha512-77/bE2KdFlFI/ywEP46aSspXtgBteY/OPQyzU/lWqYrG2wC6cLfPSUB60t9e0FiqElwM/Vdcjz0TAjRwhZOPkw==",
"license": "MIT"
},
"node_modules/@ag-grid-enterprise/filter-tool-panel": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-enterprise/filter-tool-panel/-/filter-tool-panel-27.3.0.tgz",
"integrity": "sha512-EGZqBz/XFKTeANIqFC4ODgS5yZ8pp4fWIvzNpjg3u8+mYoK/9DGDgk4H1oxWYlPXWR8s0kMGy/Px8+mb46cpPg==",
"license": "Commercial",
"dependencies": {
"@ag-grid-community/core": "~27.3.0",
"@ag-grid-enterprise/core": "~27.3.0",
"@ag-grid-enterprise/side-bar": "~27.3.0"
}
},
"node_modules/@ag-grid-enterprise/filter-tool-panel/node_modules/@ag-grid-community/core": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-community/core/-/core-27.3.0.tgz",
"integrity": "sha512-77/bE2KdFlFI/ywEP46aSspXtgBteY/OPQyzU/lWqYrG2wC6cLfPSUB60t9e0FiqElwM/Vdcjz0TAjRwhZOPkw==",
"license": "MIT"
},
"node_modules/@ag-grid-enterprise/master-detail": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-enterprise/master-detail/-/master-detail-27.3.0.tgz",
"integrity": "sha512-Ft98VBN1FA1yPBLoiQzC+5DBCkaxWwNNHwA3eqbbs6ccfBfAP9PpgKjqYf7EUfkU5vj88s7Fz51fOnVnpGhoEA==",
"license": "Commercial",
"dependencies": {
"@ag-grid-community/core": "~27.3.0",
"@ag-grid-enterprise/core": "~27.3.0"
}
},
"node_modules/@ag-grid-enterprise/master-detail/node_modules/@ag-grid-community/core": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-community/core/-/core-27.3.0.tgz",
"integrity": "sha512-77/bE2KdFlFI/ywEP46aSspXtgBteY/OPQyzU/lWqYrG2wC6cLfPSUB60t9e0FiqElwM/Vdcjz0TAjRwhZOPkw==",
"license": "MIT"
},
"node_modules/@ag-grid-enterprise/menu": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-enterprise/menu/-/menu-27.3.0.tgz",
"integrity": "sha512-Fw5m3auf6cRkK3qk3qmGZ7AYRcmFd9oYGKMy6CsNfNvz7KXH6jnY9Mgl6urA+dD5sc4jqHooPXGFQSCbLWihtg==",
"license": "Commercial",
"dependencies": {
"@ag-grid-community/core": "~27.3.0",
"@ag-grid-enterprise/column-tool-panel": "~27.3.0",
"@ag-grid-enterprise/core": "~27.3.0"
}
},
"node_modules/@ag-grid-enterprise/menu/node_modules/@ag-grid-community/core": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-community/core/-/core-27.3.0.tgz",
"integrity": "sha512-77/bE2KdFlFI/ywEP46aSspXtgBteY/OPQyzU/lWqYrG2wC6cLfPSUB60t9e0FiqElwM/Vdcjz0TAjRwhZOPkw==",
"license": "MIT"
},
"node_modules/@ag-grid-enterprise/multi-filter": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-enterprise/multi-filter/-/multi-filter-27.3.0.tgz",
"integrity": "sha512-YpjMdkwGTbSEy8HBMTF9dAx1tp+YvgpSPumgvW9j+F4fbrjTGJL565F+i2SWDfGxImAnXFXktQ5OUfKWYNDaiQ==",
"license": "Commercial",
"dependencies": {
"@ag-grid-community/core": "~27.3.0",
"@ag-grid-enterprise/core": "~27.3.0"
}
},
"node_modules/@ag-grid-enterprise/multi-filter/node_modules/@ag-grid-community/core": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-community/core/-/core-27.3.0.tgz",
"integrity": "sha512-77/bE2KdFlFI/ywEP46aSspXtgBteY/OPQyzU/lWqYrG2wC6cLfPSUB60t9e0FiqElwM/Vdcjz0TAjRwhZOPkw==",
"license": "MIT"
},
"node_modules/@ag-grid-enterprise/range-selection": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-enterprise/range-selection/-/range-selection-27.3.0.tgz",
"integrity": "sha512-NTkTFGCS2C9+4ec4i7LjinAX4eSElyWpmdyf/85la3yJi8nlmFT7JX+sOvfmJrvyVmkjA0/e5A0ELgheFFq+1Q==",
"license": "Commercial",
"dependencies": {
"@ag-grid-community/core": "~27.3.0",
"@ag-grid-enterprise/core": "~27.3.0"
}
},
"node_modules/@ag-grid-enterprise/range-selection/node_modules/@ag-grid-community/core": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-community/core/-/core-27.3.0.tgz",
"integrity": "sha512-77/bE2KdFlFI/ywEP46aSspXtgBteY/OPQyzU/lWqYrG2wC6cLfPSUB60t9e0FiqElwM/Vdcjz0TAjRwhZOPkw==",
"license": "MIT"
},
"node_modules/@ag-grid-enterprise/rich-select": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-enterprise/rich-select/-/rich-select-27.3.0.tgz",
"integrity": "sha512-kZvmWv5k+NwKKDG0ajejuO7kjOMc6efRnMd+GNA1wzvuv6ebpAL/5Q0bS/NcAKi75jAKuiXRRxuX7/XQzQqtLg==",
"license": "Commercial",
"dependencies": {
"@ag-grid-community/core": "~27.3.0",
"@ag-grid-enterprise/core": "~27.3.0"
}
},
"node_modules/@ag-grid-enterprise/rich-select/node_modules/@ag-grid-community/core": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-community/core/-/core-27.3.0.tgz",
"integrity": "sha512-77/bE2KdFlFI/ywEP46aSspXtgBteY/OPQyzU/lWqYrG2wC6cLfPSUB60t9e0FiqElwM/Vdcjz0TAjRwhZOPkw==",
"license": "MIT"
},
"node_modules/@ag-grid-enterprise/row-grouping": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-enterprise/row-grouping/-/row-grouping-27.3.0.tgz",
"integrity": "sha512-NxeQ5loLVuaVBUUO04bKdfcAbKJae9wT9ShM47KvbOCWEz212BKg75mX6c8JYGzVAh1fEMoiJeN7B9dsHC6XsA==",
"license": "Commercial",
"dependencies": {
"@ag-grid-community/core": "~27.3.0",
"@ag-grid-enterprise/core": "~27.3.0"
}
},
"node_modules/@ag-grid-enterprise/row-grouping/node_modules/@ag-grid-community/core": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-community/core/-/core-27.3.0.tgz",
"integrity": "sha512-77/bE2KdFlFI/ywEP46aSspXtgBteY/OPQyzU/lWqYrG2wC6cLfPSUB60t9e0FiqElwM/Vdcjz0TAjRwhZOPkw==",
"license": "MIT"
},
"node_modules/@ag-grid-enterprise/server-side-row-model": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-enterprise/server-side-row-model/-/server-side-row-model-27.3.0.tgz",
"integrity": "sha512-CAeCMNin2OIpNlzmO+9vZjgJAZ28wpUmSLW8DRfjq5IJyIsYLNoxAiK5f8nudyEVd+WjMxtMOlikC/RwnLbByg==",
"license": "Commercial",
"dependencies": {
"@ag-grid-community/core": "~27.3.0",
"@ag-grid-enterprise/core": "~27.3.0"
}
},
"node_modules/@ag-grid-enterprise/server-side-row-model/node_modules/@ag-grid-community/core": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-community/core/-/core-27.3.0.tgz",
"integrity": "sha512-77/bE2KdFlFI/ywEP46aSspXtgBteY/OPQyzU/lWqYrG2wC6cLfPSUB60t9e0FiqElwM/Vdcjz0TAjRwhZOPkw==",
"license": "MIT"
},
"node_modules/@ag-grid-enterprise/set-filter": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-enterprise/set-filter/-/set-filter-27.3.0.tgz",
"integrity": "sha512-hZRXwM3QcYrJMWmJPI3urAe7aHJOZURJ0nffbrhPvY8TEz2SKVWxz33x4xq9wFW1xKKSCrPafoEIUyO0R+Ymlg==",
"license": "Commercial",
"dependencies": {
"@ag-grid-community/core": "~27.3.0",
"@ag-grid-enterprise/core": "~27.3.0"
}
},
"node_modules/@ag-grid-enterprise/set-filter/node_modules/@ag-grid-community/core": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-community/core/-/core-27.3.0.tgz",
"integrity": "sha512-77/bE2KdFlFI/ywEP46aSspXtgBteY/OPQyzU/lWqYrG2wC6cLfPSUB60t9e0FiqElwM/Vdcjz0TAjRwhZOPkw==",
"license": "MIT"
},
"node_modules/@ag-grid-enterprise/side-bar": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-enterprise/side-bar/-/side-bar-27.3.0.tgz",
"integrity": "sha512-tfxWVeL4WDsY33MImrNqOhQVYe0nXQvQeYWzVUyVrowlrzuPyTss9DzLczEUCnuqq/WmVh2rvnlSm4IQD9WHhA==",
"license": "Commercial",
"dependencies": {
"@ag-grid-community/core": "~27.3.0",
"@ag-grid-enterprise/core": "~27.3.0"
}
},
"node_modules/@ag-grid-enterprise/side-bar/node_modules/@ag-grid-community/core": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-community/core/-/core-27.3.0.tgz",
"integrity": "sha512-77/bE2KdFlFI/ywEP46aSspXtgBteY/OPQyzU/lWqYrG2wC6cLfPSUB60t9e0FiqElwM/Vdcjz0TAjRwhZOPkw==",
"license": "MIT"
},
"node_modules/@ag-grid-enterprise/sparklines": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-enterprise/sparklines/-/sparklines-27.3.0.tgz",
"integrity": "sha512-PF9ZCihRJ6ewrlAA5NXMhdm6ro7pp3h751EnW1PCjTBA7jWIBmh2X1z4kF5LMiXFW2pbTHXtTiafQJl2Bg+ybg==",
"license": "Commercial",
"dependencies": {
"@ag-grid-community/core": "~27.3.0",
"@ag-grid-enterprise/core": "~27.3.0"
}
},
"node_modules/@ag-grid-enterprise/sparklines/node_modules/@ag-grid-community/core": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-community/core/-/core-27.3.0.tgz",
"integrity": "sha512-77/bE2KdFlFI/ywEP46aSspXtgBteY/OPQyzU/lWqYrG2wC6cLfPSUB60t9e0FiqElwM/Vdcjz0TAjRwhZOPkw==",
"license": "MIT"
},
"node_modules/@ag-grid-enterprise/status-bar": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-enterprise/status-bar/-/status-bar-27.3.0.tgz",
"integrity": "sha512-uqhs0n0d5HgPW659Z/iTcAcPvbHaZt4h4HIHnBbd/+0xCJcEgfe20qzUOCYtGQKWPNA4TBd+f8PsC+G3OE4Klg==",
"license": "Commercial",
"dependencies": {
"@ag-grid-community/core": "~27.3.0",
"@ag-grid-enterprise/core": "~27.3.0"
}
},
"node_modules/@ag-grid-enterprise/status-bar/node_modules/@ag-grid-community/core": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-community/core/-/core-27.3.0.tgz",
"integrity": "sha512-77/bE2KdFlFI/ywEP46aSspXtgBteY/OPQyzU/lWqYrG2wC6cLfPSUB60t9e0FiqElwM/Vdcjz0TAjRwhZOPkw==",
"license": "MIT"
},
"node_modules/@ag-grid-enterprise/viewport-row-model": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-enterprise/viewport-row-model/-/viewport-row-model-27.3.0.tgz",
"integrity": "sha512-07bXdEMLG5JsxtaVr4ete4uLEiZZhBCcan34W/O9RAQuZjJZ/JAuO9WQ+qjudY9PXATN3IgTcFhGNDSZtOWgqg==",
"license": "Commercial",
"dependencies": {
"@ag-grid-community/core": "~27.3.0",
"@ag-grid-enterprise/core": "~27.3.0"
}
},
"node_modules/@ag-grid-enterprise/viewport-row-model/node_modules/@ag-grid-community/core": {
"version": "27.3.0",
"resolved": "https://registry.npmjs.org/@ag-grid-community/core/-/core-27.3.0.tgz",
"integrity": "sha512-77/bE2KdFlFI/ywEP46aSspXtgBteY/OPQyzU/lWqYrG2wC6cLfPSUB60t9e0FiqElwM/Vdcjz0TAjRwhZOPkw==",
"license": "MIT"
},
"node_modules/@alloc/quick-lru": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz",
"integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/@cspotcode/source-map-support": {
"version": "0.8.1",
"resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz",
"integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@jridgewell/trace-mapping": "0.3.9"
},
"engines": {
"node": ">=12"
}
},
"node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": {
"version": "0.3.9",
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz",
"integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@jridgewell/resolve-uri": "^3.0.3",
"@jridgewell/sourcemap-codec": "^1.4.10"
}
},
"node_modules/@emnapi/runtime": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.3.1.tgz",
"integrity": "sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==",
"license": "MIT",
"optional": true,
"dependencies": {
"tslib": "^2.4.0"
}
},
"node_modules/@eslint-community/eslint-utils": {
"version": "4.4.1",
"resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz",
"integrity": "sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==",
"dev": true,
"license": "MIT",
"dependencies": {
"eslint-visitor-keys": "^3.4.3"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"url": "https://opencollective.com/eslint"
},
"peerDependencies": {
"eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
}
},
"node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": {
"version": "3.4.3",
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
"integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==",
"dev": true,
"license": "Apache-2.0",
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"url": "https://opencollective.com/eslint"
}
},
"node_modules/@eslint-community/regexpp": {
"version": "4.12.1",
"resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz",
"integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==",
"dev": true,
"license": "MIT",
"engines": {
"node": "^12.0.0 || ^14.0.0 || >=16.0.0"
}
},
"node_modules/@eslint/config-array": {
"version": "0.19.1",
"resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.19.1.tgz",
"integrity": "sha512-fo6Mtm5mWyKjA/Chy1BYTdn5mGJoDNjC7C64ug20ADsRDGrA85bN3uK3MaKbeRkRuuIEAR5N33Jr1pbm411/PA==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@eslint/object-schema": "^2.1.5",
"debug": "^4.3.1",
"minimatch": "^3.1.2"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
}
},
"node_modules/@eslint/core": {
"version": "0.9.1",
"resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.9.1.tgz",
"integrity": "sha512-GuUdqkyyzQI5RMIWkHhvTWLCyLo1jNK3vzkSyaExH5kHPDHcuL2VOpHjmMY+y3+NC69qAKToBqldTBgYeLSr9Q==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@types/json-schema": "^7.0.15"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
}
},
"node_modules/@eslint/eslintrc": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.2.0.tgz",
"integrity": "sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==",
"dev": true,
"license": "MIT",
"dependencies": {
"ajv": "^6.12.4",
"debug": "^4.3.2",
"espree": "^10.0.1",
"globals": "^14.0.0",
"ignore": "^5.2.0",
"import-fresh": "^3.2.1",
"js-yaml": "^4.1.0",
"minimatch": "^3.1.2",
"strip-json-comments": "^3.1.1"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"funding": {
"url": "https://opencollective.com/eslint"
}
},
"node_modules/@eslint/js": {
"version": "9.17.0",
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.17.0.tgz",
"integrity": "sha512-Sxc4hqcs1kTu0iID3kcZDW3JHq2a77HO9P8CP6YEA/FpH3Ll8UXE2r/86Rz9YJLKme39S9vU5OWNjC6Xl0Cr3w==",
"dev": true,
"license": "MIT",
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
}
},
"node_modules/@eslint/object-schema": {
"version": "2.1.5",
"resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.5.tgz",
"integrity": "sha512-o0bhxnL89h5Bae5T318nFoFzGy+YE5i/gGkoPAgkmTVdRKTiv3p8JHevPiPaMwoloKfEiiaHlawCqaZMqRm+XQ==",
"dev": true,
"license": "Apache-2.0",
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
}
},
"node_modules/@eslint/plugin-kit": {
"version": "0.2.4",
"resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.4.tgz",
"integrity": "sha512-zSkKow6H5Kdm0ZUQUB2kV5JIXqoG0+uH5YADhaEHswm664N9Db8dXSi0nMJpacpMf+MyyglF1vnZohpEg5yUtg==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"levn": "^0.4.1"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
}
},
"node_modules/@humanfs/core": {
"version": "0.19.1",
"resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz",
"integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==",
"dev": true,
"license": "Apache-2.0",
"engines": {
"node": ">=18.18.0"
}
},
"node_modules/@humanfs/node": {
"version": "0.16.6",
"resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.6.tgz",
"integrity": "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@humanfs/core": "^0.19.1",
"@humanwhocodes/retry": "^0.3.0"
},
"engines": {
"node": ">=18.18.0"
}
},
"node_modules/@humanfs/node/node_modules/@humanwhocodes/retry": {
"version": "0.3.1",
"resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz",
"integrity": "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==",
"dev": true,
"license": "Apache-2.0",
"engines": {
"node": ">=18.18"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/nzakas"
}
},
"node_modules/@humanwhocodes/module-importer": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
"integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
"dev": true,
"license": "Apache-2.0",
"engines": {
"node": ">=12.22"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/nzakas"
}
},
"node_modules/@humanwhocodes/retry": {
"version": "0.4.1",
"resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.1.tgz",
"integrity": "sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==",
"dev": true,
"license": "Apache-2.0",
"engines": {
"node": ">=18.18"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/nzakas"
}
},
"node_modules/@img/sharp-darwin-arm64": {
"version": "0.33.5",
"resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.33.5.tgz",
"integrity": "sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==",
"cpu": [
"arm64"
],
"license": "Apache-2.0",
"optional": true,
"os": [
"darwin"
],
"engines": {
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
},
"funding": {
"url": "https://opencollective.com/libvips"
},
"optionalDependencies": {
"@img/sharp-libvips-darwin-arm64": "1.0.4"
}
},
"node_modules/@img/sharp-darwin-x64": {
"version": "0.33.5",
"resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.33.5.tgz",
"integrity": "sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==",
"cpu": [
"x64"
],
"license": "Apache-2.0",
"optional": true,
"os": [
"darwin"
],
"engines": {
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
},
"funding": {
"url": "https://opencollective.com/libvips"
},
"optionalDependencies": {
"@img/sharp-libvips-darwin-x64": "1.0.4"
}
},
"node_modules/@img/sharp-libvips-darwin-arm64": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.0.4.tgz",
"integrity": "sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==",
"cpu": [
"arm64"
],
"license": "LGPL-3.0-or-later",
"optional": true,
"os": [
"darwin"
],
"funding": {
"url": "https://opencollective.com/libvips"
}
},
"node_modules/@img/sharp-libvips-darwin-x64": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.0.4.tgz",
"integrity": "sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==",
"cpu": [
"x64"
],
"license": "LGPL-3.0-or-later",
"optional": true,
"os": [
"darwin"
],
"funding": {
"url": "https://opencollective.com/libvips"
}
},
"node_modules/@img/sharp-libvips-linux-arm": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.0.5.tgz",
"integrity": "sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==",
"cpu": [
"arm"
],
"license": "LGPL-3.0-or-later",
"optional": true,
"os": [
"linux"
],
"funding": {
"url": "https://opencollective.com/libvips"
}
},
"node_modules/@img/sharp-libvips-linux-arm64": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.0.4.tgz",
"integrity": "sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==",
"cpu": [
"arm64"
],
"license": "LGPL-3.0-or-later",
"optional": true,
"os": [
"linux"
],
"funding": {
"url": "https://opencollective.com/libvips"
}
},
"node_modules/@img/sharp-libvips-linux-s390x": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.0.4.tgz",
"integrity": "sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==",
"cpu": [
"s390x"
],
"license": "LGPL-3.0-or-later",
"optional": true,
"os": [
"linux"
],
"funding": {
"url": "https://opencollective.com/libvips"
}
},
"node_modules/@img/sharp-libvips-linux-x64": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.0.4.tgz",
"integrity": "sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==",
"cpu": [
"x64"
],
"license": "LGPL-3.0-or-later",
"optional": true,
"os": [
"linux"
],
"funding": {
"url": "https://opencollective.com/libvips"
}
},
"node_modules/@img/sharp-libvips-linuxmusl-arm64": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.0.4.tgz",
"integrity": "sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==",
"cpu": [
"arm64"
],
"license": "LGPL-3.0-or-later",
"optional": true,
"os": [
"linux"
],
"funding": {
"url": "https://opencollective.com/libvips"
}
},
"node_modules/@img/sharp-libvips-linuxmusl-x64": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.0.4.tgz",
"integrity": "sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==",
"cpu": [
"x64"
],
"license": "LGPL-3.0-or-later",
"optional": true,
"os": [
"linux"
],
"funding": {
"url": "https://opencollective.com/libvips"
}
},
"node_modules/@img/sharp-linux-arm": {
"version": "0.33.5",
"resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.33.5.tgz",
"integrity": "sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==",
"cpu": [
"arm"
],
"license": "Apache-2.0",
"optional": true,
"os": [
"linux"
],
"engines": {
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
},
"funding": {
"url": "https://opencollective.com/libvips"
},
"optionalDependencies": {
"@img/sharp-libvips-linux-arm": "1.0.5"
}
},
"node_modules/@img/sharp-linux-arm64": {
"version": "0.33.5",
"resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.33.5.tgz",
"integrity": "sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==",
"cpu": [
"arm64"
],
"license": "Apache-2.0",
"optional": true,
"os": [
"linux"
],
"engines": {
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
},
"funding": {
"url": "https://opencollective.com/libvips"
},
"optionalDependencies": {
"@img/sharp-libvips-linux-arm64": "1.0.4"
}
},
"node_modules/@img/sharp-linux-s390x": {
"version": "0.33.5",
"resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.33.5.tgz",
"integrity": "sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==",
"cpu": [
"s390x"
],
"license": "Apache-2.0",
"optional": true,
"os": [
"linux"
],
"engines": {
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
},
"funding": {
"url": "https://opencollective.com/libvips"
},
"optionalDependencies": {
"@img/sharp-libvips-linux-s390x": "1.0.4"
}
},
"node_modules/@img/sharp-linux-x64": {
"version": "0.33.5",
"resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.33.5.tgz",
"integrity": "sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==",
"cpu": [
"x64"
],
"license": "Apache-2.0",
"optional": true,
"os": [
"linux"
],
"engines": {
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
},
"funding": {
"url": "https://opencollective.com/libvips"
},
"optionalDependencies": {
"@img/sharp-libvips-linux-x64": "1.0.4"
}
},
"node_modules/@img/sharp-linuxmusl-arm64": {
"version": "0.33.5",
"resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.33.5.tgz",
"integrity": "sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==",
"cpu": [
"arm64"
],
"license": "Apache-2.0",
"optional": true,
"os": [
"linux"
],
"engines": {
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"