jamdesk 1.1.157 → 1.1.159
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commands/deploy/templates.js +2 -2
- package/package.json +1 -1
- package/vendored/components/mdx/Card.tsx +4 -0
- package/vendored/components/theme/ThemeToggle.tsx +24 -14
- package/vendored/lib/auth-resolver.ts +36 -0
- package/vendored/lib/build/r2-upload.ts +2 -0
- package/vendored/lib/child-process.ts +11 -0
- package/vendored/lib/fonts.ts +10 -4
- package/vendored/lib/project-deploy-id.ts +197 -0
- package/vendored/lib/project-deploy-publisher.ts +95 -0
- package/vendored/lib/r2-cleanup.ts +159 -30
- package/vendored/lib/r2-feature-flags.ts +46 -0
- package/vendored/lib/r2-key-builder.ts +28 -0
- package/vendored/lib/r2-manifest.ts +2 -0
- package/vendored/lib/r2-public-fetch.ts +133 -0
- package/vendored/lib/r2-public-storage-guard.ts +113 -0
- package/vendored/lib/r2-upload-lock.ts +277 -0
- package/vendored/lib/revalidation-helpers.ts +7 -0
- package/vendored/lib/revalidation-trigger.ts +112 -0
- package/vendored/shared/status-reporter.ts +1 -0
- package/vendored/themes/base.css +22 -0
- package/vendored/themes/jam/variables.css +5 -5
- package/vendored/themes/pulsar/variables.css +5 -5
- package/vendored/workspace-package-lock.json +201 -117
|
@@ -184,9 +184,9 @@
|
|
|
184
184
|
"license": "Apache-2.0"
|
|
185
185
|
},
|
|
186
186
|
"node_modules/@emnapi/runtime": {
|
|
187
|
-
"version": "1.11.
|
|
188
|
-
"resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.11.
|
|
189
|
-
"integrity": "sha512-
|
|
187
|
+
"version": "1.11.2",
|
|
188
|
+
"resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.11.2.tgz",
|
|
189
|
+
"integrity": "sha512-kyOl3X0DuTiT1h2ft8r2fYO8JYtU9a9Xis/zBSiGArNaagCOWx90N1k2wxp18czFDH+OgcWGb5ZP/XMt3dcyPA==",
|
|
190
190
|
"license": "MIT",
|
|
191
191
|
"optional": true,
|
|
192
192
|
"dependencies": {
|
|
@@ -270,9 +270,9 @@
|
|
|
270
270
|
"license": "MIT"
|
|
271
271
|
},
|
|
272
272
|
"node_modules/@iconify/utils": {
|
|
273
|
-
"version": "3.1.
|
|
274
|
-
"resolved": "https://registry.npmjs.org/@iconify/utils/-/utils-3.1.
|
|
275
|
-
"integrity": "sha512-
|
|
273
|
+
"version": "3.1.4",
|
|
274
|
+
"resolved": "https://registry.npmjs.org/@iconify/utils/-/utils-3.1.4.tgz",
|
|
275
|
+
"integrity": "sha512-b1S7B1k9ohZ+iNTi2ATxbRYG9fTrJmUT0rc46bvVnNxqNRGW7dyo/vRREwyniI5IRN2RSJHDcm+s3BjWrSAjHw==",
|
|
276
276
|
"license": "MIT",
|
|
277
277
|
"dependencies": {
|
|
278
278
|
"@antfu/install-pkg": "^1.1.0",
|
|
@@ -373,6 +373,9 @@
|
|
|
373
373
|
"cpu": [
|
|
374
374
|
"arm"
|
|
375
375
|
],
|
|
376
|
+
"libc": [
|
|
377
|
+
"glibc"
|
|
378
|
+
],
|
|
376
379
|
"license": "LGPL-3.0-or-later",
|
|
377
380
|
"optional": true,
|
|
378
381
|
"os": [
|
|
@@ -389,6 +392,9 @@
|
|
|
389
392
|
"cpu": [
|
|
390
393
|
"arm64"
|
|
391
394
|
],
|
|
395
|
+
"libc": [
|
|
396
|
+
"glibc"
|
|
397
|
+
],
|
|
392
398
|
"license": "LGPL-3.0-or-later",
|
|
393
399
|
"optional": true,
|
|
394
400
|
"os": [
|
|
@@ -405,6 +411,9 @@
|
|
|
405
411
|
"cpu": [
|
|
406
412
|
"ppc64"
|
|
407
413
|
],
|
|
414
|
+
"libc": [
|
|
415
|
+
"glibc"
|
|
416
|
+
],
|
|
408
417
|
"license": "LGPL-3.0-or-later",
|
|
409
418
|
"optional": true,
|
|
410
419
|
"os": [
|
|
@@ -421,6 +430,9 @@
|
|
|
421
430
|
"cpu": [
|
|
422
431
|
"riscv64"
|
|
423
432
|
],
|
|
433
|
+
"libc": [
|
|
434
|
+
"glibc"
|
|
435
|
+
],
|
|
424
436
|
"license": "LGPL-3.0-or-later",
|
|
425
437
|
"optional": true,
|
|
426
438
|
"os": [
|
|
@@ -437,6 +449,9 @@
|
|
|
437
449
|
"cpu": [
|
|
438
450
|
"s390x"
|
|
439
451
|
],
|
|
452
|
+
"libc": [
|
|
453
|
+
"glibc"
|
|
454
|
+
],
|
|
440
455
|
"license": "LGPL-3.0-or-later",
|
|
441
456
|
"optional": true,
|
|
442
457
|
"os": [
|
|
@@ -453,6 +468,9 @@
|
|
|
453
468
|
"cpu": [
|
|
454
469
|
"x64"
|
|
455
470
|
],
|
|
471
|
+
"libc": [
|
|
472
|
+
"glibc"
|
|
473
|
+
],
|
|
456
474
|
"license": "LGPL-3.0-or-later",
|
|
457
475
|
"optional": true,
|
|
458
476
|
"os": [
|
|
@@ -469,6 +487,9 @@
|
|
|
469
487
|
"cpu": [
|
|
470
488
|
"arm64"
|
|
471
489
|
],
|
|
490
|
+
"libc": [
|
|
491
|
+
"musl"
|
|
492
|
+
],
|
|
472
493
|
"license": "LGPL-3.0-or-later",
|
|
473
494
|
"optional": true,
|
|
474
495
|
"os": [
|
|
@@ -485,6 +506,9 @@
|
|
|
485
506
|
"cpu": [
|
|
486
507
|
"x64"
|
|
487
508
|
],
|
|
509
|
+
"libc": [
|
|
510
|
+
"musl"
|
|
511
|
+
],
|
|
488
512
|
"license": "LGPL-3.0-or-later",
|
|
489
513
|
"optional": true,
|
|
490
514
|
"os": [
|
|
@@ -501,6 +525,9 @@
|
|
|
501
525
|
"cpu": [
|
|
502
526
|
"arm"
|
|
503
527
|
],
|
|
528
|
+
"libc": [
|
|
529
|
+
"glibc"
|
|
530
|
+
],
|
|
504
531
|
"license": "Apache-2.0",
|
|
505
532
|
"optional": true,
|
|
506
533
|
"os": [
|
|
@@ -523,6 +550,9 @@
|
|
|
523
550
|
"cpu": [
|
|
524
551
|
"arm64"
|
|
525
552
|
],
|
|
553
|
+
"libc": [
|
|
554
|
+
"glibc"
|
|
555
|
+
],
|
|
526
556
|
"license": "Apache-2.0",
|
|
527
557
|
"optional": true,
|
|
528
558
|
"os": [
|
|
@@ -545,6 +575,9 @@
|
|
|
545
575
|
"cpu": [
|
|
546
576
|
"ppc64"
|
|
547
577
|
],
|
|
578
|
+
"libc": [
|
|
579
|
+
"glibc"
|
|
580
|
+
],
|
|
548
581
|
"license": "Apache-2.0",
|
|
549
582
|
"optional": true,
|
|
550
583
|
"os": [
|
|
@@ -567,6 +600,9 @@
|
|
|
567
600
|
"cpu": [
|
|
568
601
|
"riscv64"
|
|
569
602
|
],
|
|
603
|
+
"libc": [
|
|
604
|
+
"glibc"
|
|
605
|
+
],
|
|
570
606
|
"license": "Apache-2.0",
|
|
571
607
|
"optional": true,
|
|
572
608
|
"os": [
|
|
@@ -589,6 +625,9 @@
|
|
|
589
625
|
"cpu": [
|
|
590
626
|
"s390x"
|
|
591
627
|
],
|
|
628
|
+
"libc": [
|
|
629
|
+
"glibc"
|
|
630
|
+
],
|
|
592
631
|
"license": "Apache-2.0",
|
|
593
632
|
"optional": true,
|
|
594
633
|
"os": [
|
|
@@ -611,6 +650,9 @@
|
|
|
611
650
|
"cpu": [
|
|
612
651
|
"x64"
|
|
613
652
|
],
|
|
653
|
+
"libc": [
|
|
654
|
+
"glibc"
|
|
655
|
+
],
|
|
614
656
|
"license": "Apache-2.0",
|
|
615
657
|
"optional": true,
|
|
616
658
|
"os": [
|
|
@@ -633,6 +675,9 @@
|
|
|
633
675
|
"cpu": [
|
|
634
676
|
"arm64"
|
|
635
677
|
],
|
|
678
|
+
"libc": [
|
|
679
|
+
"musl"
|
|
680
|
+
],
|
|
636
681
|
"license": "Apache-2.0",
|
|
637
682
|
"optional": true,
|
|
638
683
|
"os": [
|
|
@@ -655,6 +700,9 @@
|
|
|
655
700
|
"cpu": [
|
|
656
701
|
"x64"
|
|
657
702
|
],
|
|
703
|
+
"libc": [
|
|
704
|
+
"musl"
|
|
705
|
+
],
|
|
658
706
|
"license": "Apache-2.0",
|
|
659
707
|
"optional": true,
|
|
660
708
|
"os": [
|
|
@@ -864,15 +912,15 @@
|
|
|
864
912
|
}
|
|
865
913
|
},
|
|
866
914
|
"node_modules/@next/env": {
|
|
867
|
-
"version": "16.2.
|
|
868
|
-
"resolved": "https://registry.npmjs.org/@next/env/-/env-16.2.
|
|
869
|
-
"integrity": "sha512-
|
|
915
|
+
"version": "16.2.10",
|
|
916
|
+
"resolved": "https://registry.npmjs.org/@next/env/-/env-16.2.10.tgz",
|
|
917
|
+
"integrity": "sha512-zLPxg9M0MEHmygpj5OuxjQ+vHMiy/K7cSp74G8ecYolmgUWw0RwN02tF56npup/+qaI8JB97hQgS/r2Hb6QwVA==",
|
|
870
918
|
"license": "MIT"
|
|
871
919
|
},
|
|
872
920
|
"node_modules/@next/mdx": {
|
|
873
|
-
"version": "16.2.
|
|
874
|
-
"resolved": "https://registry.npmjs.org/@next/mdx/-/mdx-16.2.
|
|
875
|
-
"integrity": "sha512-
|
|
921
|
+
"version": "16.2.10",
|
|
922
|
+
"resolved": "https://registry.npmjs.org/@next/mdx/-/mdx-16.2.10.tgz",
|
|
923
|
+
"integrity": "sha512-r6T32AyQ0xy6p0vKd1lNbz6RUXuVXdGYSAI0dRrpbnqGnTWQXefADZGui4PlwjqROj0XQBMqVwot9ntPWao9PA==",
|
|
876
924
|
"license": "MIT",
|
|
877
925
|
"dependencies": {
|
|
878
926
|
"source-map": "^0.7.0"
|
|
@@ -891,9 +939,9 @@
|
|
|
891
939
|
}
|
|
892
940
|
},
|
|
893
941
|
"node_modules/@next/swc-darwin-arm64": {
|
|
894
|
-
"version": "16.2.
|
|
895
|
-
"resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-16.2.
|
|
896
|
-
"integrity": "sha512-
|
|
942
|
+
"version": "16.2.10",
|
|
943
|
+
"resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-16.2.10.tgz",
|
|
944
|
+
"integrity": "sha512-v9IdJCa0H0mbo+8z5zwUpOk1Vj7RjkcI5uNYf5Ws1y6szf/p3Mzl9hLaST8SCt6L9h8NGnruZcd2+o0NTNwDhA==",
|
|
897
945
|
"cpu": [
|
|
898
946
|
"arm64"
|
|
899
947
|
],
|
|
@@ -907,9 +955,9 @@
|
|
|
907
955
|
}
|
|
908
956
|
},
|
|
909
957
|
"node_modules/@next/swc-darwin-x64": {
|
|
910
|
-
"version": "16.2.
|
|
911
|
-
"resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-16.2.
|
|
912
|
-
"integrity": "sha512-
|
|
958
|
+
"version": "16.2.10",
|
|
959
|
+
"resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-16.2.10.tgz",
|
|
960
|
+
"integrity": "sha512-17IS0jJRViROGmA9uGdNR8VPJpfbnaVG7E9qhso5jDLkmyd0lSDORWxbcKINzcFqzZqGwGtMSnrFRxBpuUYjLQ==",
|
|
913
961
|
"cpu": [
|
|
914
962
|
"x64"
|
|
915
963
|
],
|
|
@@ -923,12 +971,15 @@
|
|
|
923
971
|
}
|
|
924
972
|
},
|
|
925
973
|
"node_modules/@next/swc-linux-arm64-gnu": {
|
|
926
|
-
"version": "16.2.
|
|
927
|
-
"resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-16.2.
|
|
928
|
-
"integrity": "sha512-
|
|
974
|
+
"version": "16.2.10",
|
|
975
|
+
"resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-16.2.10.tgz",
|
|
976
|
+
"integrity": "sha512-GRQRsRtuciNJvB54AvvuQTiq0oZtFwa1owQqtZD8wwnGpM2L39MV22kpI72YSXLKIyY40LC66EiLFv4PiicXxg==",
|
|
929
977
|
"cpu": [
|
|
930
978
|
"arm64"
|
|
931
979
|
],
|
|
980
|
+
"libc": [
|
|
981
|
+
"glibc"
|
|
982
|
+
],
|
|
932
983
|
"license": "MIT",
|
|
933
984
|
"optional": true,
|
|
934
985
|
"os": [
|
|
@@ -939,12 +990,15 @@
|
|
|
939
990
|
}
|
|
940
991
|
},
|
|
941
992
|
"node_modules/@next/swc-linux-arm64-musl": {
|
|
942
|
-
"version": "16.2.
|
|
943
|
-
"resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-16.2.
|
|
944
|
-
"integrity": "sha512-
|
|
993
|
+
"version": "16.2.10",
|
|
994
|
+
"resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-16.2.10.tgz",
|
|
995
|
+
"integrity": "sha512-zkN9MQYS7UQBro+FnISUq1itaQjXI9xqISzuQ+2bc921NcJ1x4yPCqrn77tVN6/dOOXaaWVX3k6/bR07pPwK+A==",
|
|
945
996
|
"cpu": [
|
|
946
997
|
"arm64"
|
|
947
998
|
],
|
|
999
|
+
"libc": [
|
|
1000
|
+
"musl"
|
|
1001
|
+
],
|
|
948
1002
|
"license": "MIT",
|
|
949
1003
|
"optional": true,
|
|
950
1004
|
"os": [
|
|
@@ -955,12 +1009,15 @@
|
|
|
955
1009
|
}
|
|
956
1010
|
},
|
|
957
1011
|
"node_modules/@next/swc-linux-x64-gnu": {
|
|
958
|
-
"version": "16.2.
|
|
959
|
-
"resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-16.2.
|
|
960
|
-
"integrity": "sha512-
|
|
1012
|
+
"version": "16.2.10",
|
|
1013
|
+
"resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-16.2.10.tgz",
|
|
1014
|
+
"integrity": "sha512-iCVJnwvrPYECvA6WM/7+oo+OiTvedIKLxtCLAZP4xZR3nXa1zmzZyLPbYCmWvpd4CvMYF1EMTafd0ii3DygLvA==",
|
|
961
1015
|
"cpu": [
|
|
962
1016
|
"x64"
|
|
963
1017
|
],
|
|
1018
|
+
"libc": [
|
|
1019
|
+
"glibc"
|
|
1020
|
+
],
|
|
964
1021
|
"license": "MIT",
|
|
965
1022
|
"optional": true,
|
|
966
1023
|
"os": [
|
|
@@ -971,12 +1028,15 @@
|
|
|
971
1028
|
}
|
|
972
1029
|
},
|
|
973
1030
|
"node_modules/@next/swc-linux-x64-musl": {
|
|
974
|
-
"version": "16.2.
|
|
975
|
-
"resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-16.2.
|
|
976
|
-
"integrity": "sha512-
|
|
1031
|
+
"version": "16.2.10",
|
|
1032
|
+
"resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-16.2.10.tgz",
|
|
1033
|
+
"integrity": "sha512-ov2g4H0dHY9bPoOU83m91hWT7Iq5qy13bUnyyshLU3HGR1Ownn0X9QpmDPc5iIUaahTp7f7LeGAhV4DSFtackw==",
|
|
977
1034
|
"cpu": [
|
|
978
1035
|
"x64"
|
|
979
1036
|
],
|
|
1037
|
+
"libc": [
|
|
1038
|
+
"musl"
|
|
1039
|
+
],
|
|
980
1040
|
"license": "MIT",
|
|
981
1041
|
"optional": true,
|
|
982
1042
|
"os": [
|
|
@@ -987,9 +1047,9 @@
|
|
|
987
1047
|
}
|
|
988
1048
|
},
|
|
989
1049
|
"node_modules/@next/swc-win32-arm64-msvc": {
|
|
990
|
-
"version": "16.2.
|
|
991
|
-
"resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-16.2.
|
|
992
|
-
"integrity": "sha512-
|
|
1050
|
+
"version": "16.2.10",
|
|
1051
|
+
"resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-16.2.10.tgz",
|
|
1052
|
+
"integrity": "sha512-DwAnhLX76HQiFFQNgWlcK+JzlnD1rZ+UK/WY0ZMI/deXpvgnesjNYrqcfo1JzBuz4Kf7o3brIBL0glI1junatA==",
|
|
993
1053
|
"cpu": [
|
|
994
1054
|
"arm64"
|
|
995
1055
|
],
|
|
@@ -1003,9 +1063,9 @@
|
|
|
1003
1063
|
}
|
|
1004
1064
|
},
|
|
1005
1065
|
"node_modules/@next/swc-win32-x64-msvc": {
|
|
1006
|
-
"version": "16.2.
|
|
1007
|
-
"resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-16.2.
|
|
1008
|
-
"integrity": "sha512-
|
|
1066
|
+
"version": "16.2.10",
|
|
1067
|
+
"resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-16.2.10.tgz",
|
|
1068
|
+
"integrity": "sha512-0JXq3b85Jk9Jg4ntLUbXSPvoDw3gpZou7twuKdoFG2jOw635v7+IiXfTaa0TxVMyx78pUjnrVYwLgjKfX4e6/A==",
|
|
1009
1069
|
"cpu": [
|
|
1010
1070
|
"x64"
|
|
1011
1071
|
],
|
|
@@ -1019,9 +1079,9 @@
|
|
|
1019
1079
|
}
|
|
1020
1080
|
},
|
|
1021
1081
|
"node_modules/@next/third-parties": {
|
|
1022
|
-
"version": "16.2.
|
|
1023
|
-
"resolved": "https://registry.npmjs.org/@next/third-parties/-/third-parties-16.2.
|
|
1024
|
-
"integrity": "sha512-
|
|
1082
|
+
"version": "16.2.10",
|
|
1083
|
+
"resolved": "https://registry.npmjs.org/@next/third-parties/-/third-parties-16.2.10.tgz",
|
|
1084
|
+
"integrity": "sha512-H3yxCMLziM1JKXnjQv83WBH2cp1fB1vMxpC1/bBTpvvaesBEuRuprpzq5RI32atis0VhUZflgdpJdGNZIGpQaQ==",
|
|
1025
1085
|
"license": "MIT",
|
|
1026
1086
|
"dependencies": {
|
|
1027
1087
|
"third-party-capital": "1.0.20"
|
|
@@ -1053,13 +1113,13 @@
|
|
|
1053
1113
|
}
|
|
1054
1114
|
},
|
|
1055
1115
|
"node_modules/@shikijs/core": {
|
|
1056
|
-
"version": "4.3.
|
|
1057
|
-
"resolved": "https://registry.npmjs.org/@shikijs/core/-/core-4.3.
|
|
1058
|
-
"integrity": "sha512-
|
|
1116
|
+
"version": "4.3.1",
|
|
1117
|
+
"resolved": "https://registry.npmjs.org/@shikijs/core/-/core-4.3.1.tgz",
|
|
1118
|
+
"integrity": "sha512-ANMDxuaPsNMdDC1m4vfvhlDmJweMwkE5XitTwrq2rWHx5jM+dlm4MmHt2PP6t0uejfR77SuhrhJ0zEijIF/uhA==",
|
|
1059
1119
|
"license": "MIT",
|
|
1060
1120
|
"dependencies": {
|
|
1061
|
-
"@shikijs/primitive": "4.3.
|
|
1062
|
-
"@shikijs/types": "4.3.
|
|
1121
|
+
"@shikijs/primitive": "4.3.1",
|
|
1122
|
+
"@shikijs/types": "4.3.1",
|
|
1063
1123
|
"@shikijs/vscode-textmate": "^10.0.2",
|
|
1064
1124
|
"@types/hast": "^3.0.4",
|
|
1065
1125
|
"hast-util-to-html": "^9.0.5"
|
|
@@ -1069,12 +1129,12 @@
|
|
|
1069
1129
|
}
|
|
1070
1130
|
},
|
|
1071
1131
|
"node_modules/@shikijs/engine-javascript": {
|
|
1072
|
-
"version": "4.3.
|
|
1073
|
-
"resolved": "https://registry.npmjs.org/@shikijs/engine-javascript/-/engine-javascript-4.3.
|
|
1074
|
-
"integrity": "sha512-
|
|
1132
|
+
"version": "4.3.1",
|
|
1133
|
+
"resolved": "https://registry.npmjs.org/@shikijs/engine-javascript/-/engine-javascript-4.3.1.tgz",
|
|
1134
|
+
"integrity": "sha512-JBItcnPuYq7jVJdZo/vMj94r+szT7XEjHFX+mvFDGSEIbVAXAGyHAHzhbWzpGOwYidCZrErJLLgn2PVeiokHnQ==",
|
|
1075
1135
|
"license": "MIT",
|
|
1076
1136
|
"dependencies": {
|
|
1077
|
-
"@shikijs/types": "4.3.
|
|
1137
|
+
"@shikijs/types": "4.3.1",
|
|
1078
1138
|
"@shikijs/vscode-textmate": "^10.0.2",
|
|
1079
1139
|
"oniguruma-to-es": "^4.3.6"
|
|
1080
1140
|
},
|
|
@@ -1083,12 +1143,12 @@
|
|
|
1083
1143
|
}
|
|
1084
1144
|
},
|
|
1085
1145
|
"node_modules/@shikijs/engine-oniguruma": {
|
|
1086
|
-
"version": "4.3.
|
|
1087
|
-
"resolved": "https://registry.npmjs.org/@shikijs/engine-oniguruma/-/engine-oniguruma-4.3.
|
|
1088
|
-
"integrity": "sha512-
|
|
1146
|
+
"version": "4.3.1",
|
|
1147
|
+
"resolved": "https://registry.npmjs.org/@shikijs/engine-oniguruma/-/engine-oniguruma-4.3.1.tgz",
|
|
1148
|
+
"integrity": "sha512-OXyNMzg0pews+msMj4cHeqT4xiYKKvbnn6VbdAXxfoFl3SSx4fJTc8FadECuc5/H9p3BzhNAoAUXKwAu9rWYhg==",
|
|
1089
1149
|
"license": "MIT",
|
|
1090
1150
|
"dependencies": {
|
|
1091
|
-
"@shikijs/types": "4.3.
|
|
1151
|
+
"@shikijs/types": "4.3.1",
|
|
1092
1152
|
"@shikijs/vscode-textmate": "^10.0.2"
|
|
1093
1153
|
},
|
|
1094
1154
|
"engines": {
|
|
@@ -1096,24 +1156,24 @@
|
|
|
1096
1156
|
}
|
|
1097
1157
|
},
|
|
1098
1158
|
"node_modules/@shikijs/langs": {
|
|
1099
|
-
"version": "4.3.
|
|
1100
|
-
"resolved": "https://registry.npmjs.org/@shikijs/langs/-/langs-4.3.
|
|
1101
|
-
"integrity": "sha512-
|
|
1159
|
+
"version": "4.3.1",
|
|
1160
|
+
"resolved": "https://registry.npmjs.org/@shikijs/langs/-/langs-4.3.1.tgz",
|
|
1161
|
+
"integrity": "sha512-m0l9nsDqgBHvbZbk7A0/kXz/impK3uB/c6rAn6Gpg/uPtdZRQ+alsN/17MU5thb68XTj/4DxkZAotrM0GGSpDQ==",
|
|
1102
1162
|
"license": "MIT",
|
|
1103
1163
|
"dependencies": {
|
|
1104
|
-
"@shikijs/types": "4.3.
|
|
1164
|
+
"@shikijs/types": "4.3.1"
|
|
1105
1165
|
},
|
|
1106
1166
|
"engines": {
|
|
1107
1167
|
"node": ">=20"
|
|
1108
1168
|
}
|
|
1109
1169
|
},
|
|
1110
1170
|
"node_modules/@shikijs/primitive": {
|
|
1111
|
-
"version": "4.3.
|
|
1112
|
-
"resolved": "https://registry.npmjs.org/@shikijs/primitive/-/primitive-4.3.
|
|
1113
|
-
"integrity": "sha512-
|
|
1171
|
+
"version": "4.3.1",
|
|
1172
|
+
"resolved": "https://registry.npmjs.org/@shikijs/primitive/-/primitive-4.3.1.tgz",
|
|
1173
|
+
"integrity": "sha512-CXQRQOYy1leqQ8ceTeJdmXv/bsUY++6QyLpXJ94LZAAYj5X2SKRdc5ipguv4NPyGVKItB2PPwUpRNe0Sjh5S1A==",
|
|
1114
1174
|
"license": "MIT",
|
|
1115
1175
|
"dependencies": {
|
|
1116
|
-
"@shikijs/types": "4.3.
|
|
1176
|
+
"@shikijs/types": "4.3.1",
|
|
1117
1177
|
"@shikijs/vscode-textmate": "^10.0.2",
|
|
1118
1178
|
"@types/hast": "^3.0.4"
|
|
1119
1179
|
},
|
|
@@ -1122,15 +1182,15 @@
|
|
|
1122
1182
|
}
|
|
1123
1183
|
},
|
|
1124
1184
|
"node_modules/@shikijs/rehype": {
|
|
1125
|
-
"version": "4.3.
|
|
1126
|
-
"resolved": "https://registry.npmjs.org/@shikijs/rehype/-/rehype-4.3.
|
|
1127
|
-
"integrity": "sha512-
|
|
1185
|
+
"version": "4.3.1",
|
|
1186
|
+
"resolved": "https://registry.npmjs.org/@shikijs/rehype/-/rehype-4.3.1.tgz",
|
|
1187
|
+
"integrity": "sha512-oshrlfUF3VPUJfnp5K1lLwsS/SRBKrIxONpdWebSKZXdBE3UsZnxgqpvRUA8UsofS7vmjFOCAHIT71ECbmOxTw==",
|
|
1128
1188
|
"license": "MIT",
|
|
1129
1189
|
"dependencies": {
|
|
1130
|
-
"@shikijs/types": "4.3.
|
|
1190
|
+
"@shikijs/types": "4.3.1",
|
|
1131
1191
|
"@types/hast": "^3.0.4",
|
|
1132
1192
|
"hast-util-to-string": "^3.0.1",
|
|
1133
|
-
"shiki": "4.3.
|
|
1193
|
+
"shiki": "4.3.1",
|
|
1134
1194
|
"unified": "^11.0.5",
|
|
1135
1195
|
"unist-util-visit": "^5.1.0"
|
|
1136
1196
|
},
|
|
@@ -1139,34 +1199,34 @@
|
|
|
1139
1199
|
}
|
|
1140
1200
|
},
|
|
1141
1201
|
"node_modules/@shikijs/themes": {
|
|
1142
|
-
"version": "4.3.
|
|
1143
|
-
"resolved": "https://registry.npmjs.org/@shikijs/themes/-/themes-4.3.
|
|
1144
|
-
"integrity": "sha512-
|
|
1202
|
+
"version": "4.3.1",
|
|
1203
|
+
"resolved": "https://registry.npmjs.org/@shikijs/themes/-/themes-4.3.1.tgz",
|
|
1204
|
+
"integrity": "sha512-dgpoJ4WqNi2yTmizQHBJ5zcX6j2lE6icN/0yt4l1kkf16jrY/pwPLoTb1ETsWMz0OBLf9ZNvwmxft+cH+N9qSA==",
|
|
1145
1205
|
"license": "MIT",
|
|
1146
1206
|
"dependencies": {
|
|
1147
|
-
"@shikijs/types": "4.3.
|
|
1207
|
+
"@shikijs/types": "4.3.1"
|
|
1148
1208
|
},
|
|
1149
1209
|
"engines": {
|
|
1150
1210
|
"node": ">=20"
|
|
1151
1211
|
}
|
|
1152
1212
|
},
|
|
1153
1213
|
"node_modules/@shikijs/transformers": {
|
|
1154
|
-
"version": "4.3.
|
|
1155
|
-
"resolved": "https://registry.npmjs.org/@shikijs/transformers/-/transformers-4.3.
|
|
1156
|
-
"integrity": "sha512-
|
|
1214
|
+
"version": "4.3.1",
|
|
1215
|
+
"resolved": "https://registry.npmjs.org/@shikijs/transformers/-/transformers-4.3.1.tgz",
|
|
1216
|
+
"integrity": "sha512-z6ir0bGDgWcF2FduktEfPgIsdOtIlDiLAjFBgBzE42Q9xHbkkIXZtORHzlLVB71iZP9elEcqKg6keajvOUwE2A==",
|
|
1157
1217
|
"license": "MIT",
|
|
1158
1218
|
"dependencies": {
|
|
1159
|
-
"@shikijs/core": "4.3.
|
|
1160
|
-
"@shikijs/types": "4.3.
|
|
1219
|
+
"@shikijs/core": "4.3.1",
|
|
1220
|
+
"@shikijs/types": "4.3.1"
|
|
1161
1221
|
},
|
|
1162
1222
|
"engines": {
|
|
1163
1223
|
"node": ">=20"
|
|
1164
1224
|
}
|
|
1165
1225
|
},
|
|
1166
1226
|
"node_modules/@shikijs/types": {
|
|
1167
|
-
"version": "4.3.
|
|
1168
|
-
"resolved": "https://registry.npmjs.org/@shikijs/types/-/types-4.3.
|
|
1169
|
-
"integrity": "sha512-
|
|
1227
|
+
"version": "4.3.1",
|
|
1228
|
+
"resolved": "https://registry.npmjs.org/@shikijs/types/-/types-4.3.1.tgz",
|
|
1229
|
+
"integrity": "sha512-CHFxE0jztBIZRHH6gxXE7DXUCFXjReEGxZ/j0rfSLGKZuwp2xBYycEP14875DSa9KLL/6700oxIq6oO6ef9K2g==",
|
|
1170
1230
|
"license": "MIT",
|
|
1171
1231
|
"dependencies": {
|
|
1172
1232
|
"@shikijs/vscode-textmate": "^10.0.2",
|
|
@@ -1316,6 +1376,9 @@
|
|
|
1316
1376
|
"cpu": [
|
|
1317
1377
|
"arm64"
|
|
1318
1378
|
],
|
|
1379
|
+
"libc": [
|
|
1380
|
+
"glibc"
|
|
1381
|
+
],
|
|
1319
1382
|
"license": "MIT",
|
|
1320
1383
|
"optional": true,
|
|
1321
1384
|
"os": [
|
|
@@ -1332,6 +1395,9 @@
|
|
|
1332
1395
|
"cpu": [
|
|
1333
1396
|
"arm64"
|
|
1334
1397
|
],
|
|
1398
|
+
"libc": [
|
|
1399
|
+
"musl"
|
|
1400
|
+
],
|
|
1335
1401
|
"license": "MIT",
|
|
1336
1402
|
"optional": true,
|
|
1337
1403
|
"os": [
|
|
@@ -1348,6 +1414,9 @@
|
|
|
1348
1414
|
"cpu": [
|
|
1349
1415
|
"x64"
|
|
1350
1416
|
],
|
|
1417
|
+
"libc": [
|
|
1418
|
+
"glibc"
|
|
1419
|
+
],
|
|
1351
1420
|
"license": "MIT",
|
|
1352
1421
|
"optional": true,
|
|
1353
1422
|
"os": [
|
|
@@ -1364,6 +1433,9 @@
|
|
|
1364
1433
|
"cpu": [
|
|
1365
1434
|
"x64"
|
|
1366
1435
|
],
|
|
1436
|
+
"libc": [
|
|
1437
|
+
"musl"
|
|
1438
|
+
],
|
|
1367
1439
|
"license": "MIT",
|
|
1368
1440
|
"optional": true,
|
|
1369
1441
|
"os": [
|
|
@@ -1706,9 +1778,9 @@
|
|
|
1706
1778
|
"license": "MIT"
|
|
1707
1779
|
},
|
|
1708
1780
|
"node_modules/@types/d3-random": {
|
|
1709
|
-
"version": "3.0.
|
|
1710
|
-
"resolved": "https://registry.npmjs.org/@types/d3-random/-/d3-random-3.0.
|
|
1711
|
-
"integrity": "sha512-
|
|
1781
|
+
"version": "3.0.4",
|
|
1782
|
+
"resolved": "https://registry.npmjs.org/@types/d3-random/-/d3-random-3.0.4.tgz",
|
|
1783
|
+
"integrity": "sha512-UHYId5WTCx4L4YNel7NU00XUXXgvgpgZOvp10PuvsQENjMDXhh2RyFc0KBjO7B45ne4Ha1yVH7ii0vnzKkuzWA==",
|
|
1712
1784
|
"license": "MIT"
|
|
1713
1785
|
},
|
|
1714
1786
|
"node_modules/@types/d3-scale": {
|
|
@@ -2073,9 +2145,9 @@
|
|
|
2073
2145
|
}
|
|
2074
2146
|
},
|
|
2075
2147
|
"node_modules/baseline-browser-mapping": {
|
|
2076
|
-
"version": "2.10.
|
|
2077
|
-
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.
|
|
2078
|
-
"integrity": "sha512-
|
|
2148
|
+
"version": "2.10.42",
|
|
2149
|
+
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.42.tgz",
|
|
2150
|
+
"integrity": "sha512-c/jurFrDLyui7o1J86yLkRu4LMsTYcBohveus7/I2Hzdn9KIP2bdJPTue/lR1KH46enoPbD77GKeSYNdyPoD3Q==",
|
|
2079
2151
|
"license": "Apache-2.0",
|
|
2080
2152
|
"bin": {
|
|
2081
2153
|
"baseline-browser-mapping": "dist/cli.cjs"
|
|
@@ -2097,9 +2169,9 @@
|
|
|
2097
2169
|
}
|
|
2098
2170
|
},
|
|
2099
2171
|
"node_modules/browserslist": {
|
|
2100
|
-
"version": "4.28.
|
|
2101
|
-
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.
|
|
2102
|
-
"integrity": "sha512-
|
|
2172
|
+
"version": "4.28.5",
|
|
2173
|
+
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.5.tgz",
|
|
2174
|
+
"integrity": "sha512-Cu2E6QejHWzuDMTkuwgpABFgDfZrXLQq5V13YOACZx4mFAG4IwGTbTfHPMr4WtxlHoXSM8FIuRwYYCz5XiabaQ==",
|
|
2103
2175
|
"funding": [
|
|
2104
2176
|
{
|
|
2105
2177
|
"type": "opencollective",
|
|
@@ -2116,10 +2188,10 @@
|
|
|
2116
2188
|
],
|
|
2117
2189
|
"license": "MIT",
|
|
2118
2190
|
"dependencies": {
|
|
2119
|
-
"baseline-browser-mapping": "^2.10.
|
|
2120
|
-
"caniuse-lite": "^1.0.
|
|
2121
|
-
"electron-to-chromium": "^1.5.
|
|
2122
|
-
"node-releases": "^2.0.
|
|
2191
|
+
"baseline-browser-mapping": "^2.10.42",
|
|
2192
|
+
"caniuse-lite": "^1.0.30001800",
|
|
2193
|
+
"electron-to-chromium": "^1.5.387",
|
|
2194
|
+
"node-releases": "^2.0.50",
|
|
2123
2195
|
"update-browserslist-db": "^1.2.3"
|
|
2124
2196
|
},
|
|
2125
2197
|
"bin": {
|
|
@@ -2136,9 +2208,9 @@
|
|
|
2136
2208
|
"license": "MIT"
|
|
2137
2209
|
},
|
|
2138
2210
|
"node_modules/caniuse-lite": {
|
|
2139
|
-
"version": "1.0.
|
|
2140
|
-
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.
|
|
2141
|
-
"integrity": "sha512-
|
|
2211
|
+
"version": "1.0.30001803",
|
|
2212
|
+
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001803.tgz",
|
|
2213
|
+
"integrity": "sha512-g/uHREV2ZpK9qMalCsWaxmA6ol+DX8GYhuf3T40RKoP+oL7vhRJh8LNt73PCjpnR6l14FzfPrB5Yux4PKm2meg==",
|
|
2142
2214
|
"funding": [
|
|
2143
2215
|
{
|
|
2144
2216
|
"type": "opencollective",
|
|
@@ -2867,9 +2939,9 @@
|
|
|
2867
2939
|
"license": "MIT"
|
|
2868
2940
|
},
|
|
2869
2941
|
"node_modules/electron-to-chromium": {
|
|
2870
|
-
"version": "1.5.
|
|
2871
|
-
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.
|
|
2872
|
-
"integrity": "sha512-
|
|
2942
|
+
"version": "1.5.388",
|
|
2943
|
+
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.388.tgz",
|
|
2944
|
+
"integrity": "sha512-Pl/aJaqOOxYxda3vcx1IKSJimwYXHDkEnGn0F+kG2EE68dDtx2uCinaS+Vih8Z91B9t8CSAbiF/HKyWcnXjhzw==",
|
|
2873
2945
|
"license": "ISC"
|
|
2874
2946
|
},
|
|
2875
2947
|
"node_modules/enhanced-resolve": {
|
|
@@ -3865,6 +3937,9 @@
|
|
|
3865
3937
|
"cpu": [
|
|
3866
3938
|
"arm64"
|
|
3867
3939
|
],
|
|
3940
|
+
"libc": [
|
|
3941
|
+
"glibc"
|
|
3942
|
+
],
|
|
3868
3943
|
"license": "MPL-2.0",
|
|
3869
3944
|
"optional": true,
|
|
3870
3945
|
"os": [
|
|
@@ -3885,6 +3960,9 @@
|
|
|
3885
3960
|
"cpu": [
|
|
3886
3961
|
"arm64"
|
|
3887
3962
|
],
|
|
3963
|
+
"libc": [
|
|
3964
|
+
"musl"
|
|
3965
|
+
],
|
|
3888
3966
|
"license": "MPL-2.0",
|
|
3889
3967
|
"optional": true,
|
|
3890
3968
|
"os": [
|
|
@@ -3905,6 +3983,9 @@
|
|
|
3905
3983
|
"cpu": [
|
|
3906
3984
|
"x64"
|
|
3907
3985
|
],
|
|
3986
|
+
"libc": [
|
|
3987
|
+
"glibc"
|
|
3988
|
+
],
|
|
3908
3989
|
"license": "MPL-2.0",
|
|
3909
3990
|
"optional": true,
|
|
3910
3991
|
"os": [
|
|
@@ -3925,6 +4006,9 @@
|
|
|
3925
4006
|
"cpu": [
|
|
3926
4007
|
"x64"
|
|
3927
4008
|
],
|
|
4009
|
+
"libc": [
|
|
4010
|
+
"musl"
|
|
4011
|
+
],
|
|
3928
4012
|
"license": "MPL-2.0",
|
|
3929
4013
|
"optional": true,
|
|
3930
4014
|
"os": [
|
|
@@ -5222,12 +5306,12 @@
|
|
|
5222
5306
|
}
|
|
5223
5307
|
},
|
|
5224
5308
|
"node_modules/next": {
|
|
5225
|
-
"version": "16.2.
|
|
5226
|
-
"resolved": "https://registry.npmjs.org/next/-/next-16.2.
|
|
5227
|
-
"integrity": "sha512-
|
|
5309
|
+
"version": "16.2.10",
|
|
5310
|
+
"resolved": "https://registry.npmjs.org/next/-/next-16.2.10.tgz",
|
|
5311
|
+
"integrity": "sha512-2som5AVXb3kE6Yjine3/mNbBayYF58eguBWIVVUdr1y/L426xyVEgYxgBG+1QC34P2x5E+tcDup6XkuOAX3dCA==",
|
|
5228
5312
|
"license": "MIT",
|
|
5229
5313
|
"dependencies": {
|
|
5230
|
-
"@next/env": "16.2.
|
|
5314
|
+
"@next/env": "16.2.10",
|
|
5231
5315
|
"@swc/helpers": "0.5.15",
|
|
5232
5316
|
"baseline-browser-mapping": "^2.9.19",
|
|
5233
5317
|
"caniuse-lite": "^1.0.30001579",
|
|
@@ -5241,14 +5325,14 @@
|
|
|
5241
5325
|
"node": ">=20.9.0"
|
|
5242
5326
|
},
|
|
5243
5327
|
"optionalDependencies": {
|
|
5244
|
-
"@next/swc-darwin-arm64": "16.2.
|
|
5245
|
-
"@next/swc-darwin-x64": "16.2.
|
|
5246
|
-
"@next/swc-linux-arm64-gnu": "16.2.
|
|
5247
|
-
"@next/swc-linux-arm64-musl": "16.2.
|
|
5248
|
-
"@next/swc-linux-x64-gnu": "16.2.
|
|
5249
|
-
"@next/swc-linux-x64-musl": "16.2.
|
|
5250
|
-
"@next/swc-win32-arm64-msvc": "16.2.
|
|
5251
|
-
"@next/swc-win32-x64-msvc": "16.2.
|
|
5328
|
+
"@next/swc-darwin-arm64": "16.2.10",
|
|
5329
|
+
"@next/swc-darwin-x64": "16.2.10",
|
|
5330
|
+
"@next/swc-linux-arm64-gnu": "16.2.10",
|
|
5331
|
+
"@next/swc-linux-arm64-musl": "16.2.10",
|
|
5332
|
+
"@next/swc-linux-x64-gnu": "16.2.10",
|
|
5333
|
+
"@next/swc-linux-x64-musl": "16.2.10",
|
|
5334
|
+
"@next/swc-win32-arm64-msvc": "16.2.10",
|
|
5335
|
+
"@next/swc-win32-x64-msvc": "16.2.10",
|
|
5252
5336
|
"sharp": "^0.34.5"
|
|
5253
5337
|
},
|
|
5254
5338
|
"peerDependencies": {
|
|
@@ -6062,17 +6146,17 @@
|
|
|
6062
6146
|
}
|
|
6063
6147
|
},
|
|
6064
6148
|
"node_modules/shiki": {
|
|
6065
|
-
"version": "4.3.
|
|
6066
|
-
"resolved": "https://registry.npmjs.org/shiki/-/shiki-4.3.
|
|
6067
|
-
"integrity": "sha512-
|
|
6149
|
+
"version": "4.3.1",
|
|
6150
|
+
"resolved": "https://registry.npmjs.org/shiki/-/shiki-4.3.1.tgz",
|
|
6151
|
+
"integrity": "sha512-oR+qDVi2OjX1tmDpyv+3KviX01KzO6Af+0NNnKnsp9491UEGz2YpxTuJboS/6VhYpTdqzmuJBuiTlrAWWJAssw==",
|
|
6068
6152
|
"license": "MIT",
|
|
6069
6153
|
"dependencies": {
|
|
6070
|
-
"@shikijs/core": "4.3.
|
|
6071
|
-
"@shikijs/engine-javascript": "4.3.
|
|
6072
|
-
"@shikijs/engine-oniguruma": "4.3.
|
|
6073
|
-
"@shikijs/langs": "4.3.
|
|
6074
|
-
"@shikijs/themes": "4.3.
|
|
6075
|
-
"@shikijs/types": "4.3.
|
|
6154
|
+
"@shikijs/core": "4.3.1",
|
|
6155
|
+
"@shikijs/engine-javascript": "4.3.1",
|
|
6156
|
+
"@shikijs/engine-oniguruma": "4.3.1",
|
|
6157
|
+
"@shikijs/langs": "4.3.1",
|
|
6158
|
+
"@shikijs/themes": "4.3.1",
|
|
6159
|
+
"@shikijs/types": "4.3.1",
|
|
6076
6160
|
"@shikijs/vscode-textmate": "^10.0.2",
|
|
6077
6161
|
"@types/hast": "^3.0.4"
|
|
6078
6162
|
},
|