jamdesk 1.1.158 → 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.
@@ -9,7 +9,7 @@ export function generateWorkerCode(config) {
9
9
  return `/**
10
10
  * Jamdesk Documentation Proxy Worker
11
11
  *
12
- * Generated by: jamdesk deploy cloudflare
12
+ * Generated by: jamdesk deploy-proxy cloudflare
13
13
  * Proxies ${pathPrefix}/* requests AND their assets to ${jamdeskHost}
14
14
  *
15
15
  * Assets under /_jd/* (images, fonts, branding, analytics) must also be proxied
@@ -83,7 +83,7 @@ export function generateWranglerConfig(config) {
83
83
  const { domain, zoneName } = config;
84
84
  const workerName = `docs-proxy-${domain.replace(/\./g, '-')}`;
85
85
  return `# Jamdesk Documentation Proxy Worker
86
- # Generated by: jamdesk deploy cloudflare
86
+ # Generated by: jamdesk deploy-proxy cloudflare
87
87
  #
88
88
  # Deploy: npx wrangler deploy
89
89
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jamdesk",
3
- "version": "1.1.158",
3
+ "version": "1.1.159",
4
4
  "description": "CLI for Jamdesk — build, preview, and deploy documentation sites from MDX. Dev server with hot reload, 50+ components, OpenAPI support, AI search, and Mintlify migration",
5
5
  "keywords": [
6
6
  "jamdesk",
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Thin re-export of node's `spawn` so tests can mock the spawn seam.
3
+ *
4
+ * Why this exists: vitest's builtin-module mocks (`vi.mock('node:child_process')`)
5
+ * only apply to the test file's OWN imports — they do NOT propagate to other
6
+ * modules, including ones loaded via `await import(...)`. server.ts is loaded
7
+ * that way in its tests (`server-gc-deploys.test.ts`), so its `/gc-deploys`
8
+ * endpoint imports `spawn` from here; a relative-module mock DOES reach it,
9
+ * keeping the endpoint unit-testable without running the real GC child.
10
+ */
11
+ export { spawn } from 'node:child_process';
@@ -30,12 +30,18 @@ function fontNameToGoogleFontsName(fontName: string): string {
30
30
  /**
31
31
  * Generate Google Fonts CSS @import URL for a font
32
32
  * @param fontName - Google Font name (e.g., "Roboto", "Open Sans")
33
- * @param weights - Font weights to include (default: 400,500,600,700)
33
+ * @param weights - Font weights to include (default: 300,400,500,600,700)
34
34
  * @returns CSS @import URL string
35
35
  */
36
36
  export function generateGoogleFontsUrl(
37
37
  fontName: string,
38
- weights: number[] = [400, 500, 600, 700]
38
+ // 300 is included because the theme renders body text at font-weight: 300
39
+ // (--prose-body-weight). Without a 300 face, browsers substitute the next
40
+ // available weight (400), so custom fonts render a full step heavier than
41
+ // Inter (loaded as a variable font, which has a real 300). css2 silently
42
+ // drops weights a family lacks as long as ≥1 requested weight exists — and
43
+ // 400 always does — so requesting 300 never breaks fonts without it.
44
+ weights: number[] = [300, 400, 500, 600, 700]
39
45
  ): string {
40
46
  const googleFontsName = fontNameToGoogleFontsName(fontName);
41
47
  const weightsStr = weights.join(';');
@@ -146,7 +152,7 @@ export function generateFontImports(fonts: FontConfig | undefined): string | nul
146
152
  if (fonts.family && validateFontName(fonts.family)) {
147
153
  // If source is provided, it's a custom font file - don't use Google Fonts
148
154
  if (!fonts.source && !isPreloadedFont(fonts.family)) {
149
- const weights = fonts.weight ? [fonts.weight] : [400, 500, 600, 700];
155
+ const weights = fonts.weight ? [fonts.weight] : [300, 400, 500, 600, 700];
150
156
  imports.push(generateGoogleFontsUrl(fonts.family, weights));
151
157
  }
152
158
  }
@@ -161,7 +167,7 @@ export function generateFontImports(fonts: FontConfig | undefined): string | nul
161
167
 
162
168
  if (fonts.body?.family && validateFontName(fonts.body.family)) {
163
169
  if (!fonts.body.source && !isPreloadedFont(fonts.body.family)) {
164
- const weights = fonts.body.weight ? [fonts.body.weight] : [400, 500, 600];
170
+ const weights = fonts.body.weight ? [fonts.body.weight] : [300, 400, 500, 600];
165
171
  const bodyUrl = generateGoogleFontsUrl(fonts.body.family, weights);
166
172
  if (!imports.includes(bodyUrl)) {
167
173
  imports.push(bodyUrl);
@@ -184,9 +184,9 @@
184
184
  "license": "Apache-2.0"
185
185
  },
186
186
  "node_modules/@emnapi/runtime": {
187
- "version": "1.11.1",
188
- "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.11.1.tgz",
189
- "integrity": "sha512-vgj7R3y3Wgx24IQaGPA/R6YFXLHVMOZ0uVEyIQPaWs+rd1AzfEMXlAC22FYwO1XkKR6NPsq7mUandH8oIRdZFw==",
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.3",
274
- "resolved": "https://registry.npmjs.org/@iconify/utils/-/utils-3.1.3.tgz",
275
- "integrity": "sha512-LPKOXPn/zV+zis1oOfGWogaXVpqUybF3ZS6SCZIsz8vg0ivVp9+fVqyYB7xq0aiST/VhUQYGO1qo6uoYSiEJqw==",
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": [
@@ -929,6 +977,9 @@
929
977
  "cpu": [
930
978
  "arm64"
931
979
  ],
980
+ "libc": [
981
+ "glibc"
982
+ ],
932
983
  "license": "MIT",
933
984
  "optional": true,
934
985
  "os": [
@@ -945,6 +996,9 @@
945
996
  "cpu": [
946
997
  "arm64"
947
998
  ],
999
+ "libc": [
1000
+ "musl"
1001
+ ],
948
1002
  "license": "MIT",
949
1003
  "optional": true,
950
1004
  "os": [
@@ -961,6 +1015,9 @@
961
1015
  "cpu": [
962
1016
  "x64"
963
1017
  ],
1018
+ "libc": [
1019
+ "glibc"
1020
+ ],
964
1021
  "license": "MIT",
965
1022
  "optional": true,
966
1023
  "os": [
@@ -977,6 +1034,9 @@
977
1034
  "cpu": [
978
1035
  "x64"
979
1036
  ],
1037
+ "libc": [
1038
+ "musl"
1039
+ ],
980
1040
  "license": "MIT",
981
1041
  "optional": true,
982
1042
  "os": [
@@ -1053,13 +1113,13 @@
1053
1113
  }
1054
1114
  },
1055
1115
  "node_modules/@shikijs/core": {
1056
- "version": "4.3.0",
1057
- "resolved": "https://registry.npmjs.org/@shikijs/core/-/core-4.3.0.tgz",
1058
- "integrity": "sha512-EooU3i9F6IAE8kEu+AnGf9DFZWkQBZ+hJn3tLVbsH+61mtQiva5biai66fAA6nvFPXkLgvrh7BrR7YcJU83xQQ==",
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.0",
1062
- "@shikijs/types": "4.3.0",
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.0",
1073
- "resolved": "https://registry.npmjs.org/@shikijs/engine-javascript/-/engine-javascript-4.3.0.tgz",
1074
- "integrity": "sha512-hTv/KiFf2tpiqlACPiztGGurEARWIutB8YUhcrA1pUC7VzzwKO+g5crUocrLztrZ5ro5Z4hbXg7bYclETn3gSQ==",
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.0",
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.0",
1087
- "resolved": "https://registry.npmjs.org/@shikijs/engine-oniguruma/-/engine-oniguruma-4.3.0.tgz",
1088
- "integrity": "sha512-1vMdN3gHfnKfLYwecUI2ITJI4RhHt96xEaJumVn7Heb0IlJ8WQMIH0Voak+2j22BpSNKdnOfB/pCTPnPm2gq7A==",
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.0",
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.0",
1100
- "resolved": "https://registry.npmjs.org/@shikijs/langs/-/langs-4.3.0.tgz",
1101
- "integrity": "sha512-rnlqFbBRSys9bT4gl/5rw9RnS0W/I84ZldXPkO7cvlEMoV85TyF/aU01N7/NbSR776RNLjrJKjfFUXJR6wN1Cg==",
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.0"
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.0",
1112
- "resolved": "https://registry.npmjs.org/@shikijs/primitive/-/primitive-4.3.0.tgz",
1113
- "integrity": "sha512-CPkz64PTa5diRW1ggzMZH9VM/du4RNChYgVtgqrFcgruvIybmCvySv8GkiHSczUHXYuuR8TdKEwFx+UnZMpgdg==",
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.0",
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.0",
1126
- "resolved": "https://registry.npmjs.org/@shikijs/rehype/-/rehype-4.3.0.tgz",
1127
- "integrity": "sha512-1kk1N9scCNHeAtJICq0Me5rUxawKN+aGIlm8PZZ68zr4unYPnD3goHZ+HyPwSwbsRkT/OXkcY1JifKBH/FG88g==",
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.0",
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.0",
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.0",
1143
- "resolved": "https://registry.npmjs.org/@shikijs/themes/-/themes-4.3.0.tgz",
1144
- "integrity": "sha512-Avgt05YiT+Y3prjIc9lmQxhJzHBcCfR6cjiFW4OyaMBbt2A6trX5rfjUzx+Vj/mE9qpArYjatnqo9XPjQNW/AQ==",
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.0"
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.0",
1155
- "resolved": "https://registry.npmjs.org/@shikijs/transformers/-/transformers-4.3.0.tgz",
1156
- "integrity": "sha512-5/elhJEcUrxdyQ95SSx0HzrnbzVPuipk6TYiXZL67tHhw8J+4N5shzmrTYyCaudiSnpuuwPdpaVtciwRFwSA7A==",
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.0",
1160
- "@shikijs/types": "4.3.0"
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.0",
1168
- "resolved": "https://registry.npmjs.org/@shikijs/types/-/types-4.3.0.tgz",
1169
- "integrity": "sha512-oc8b9U2SYvofKZk8e/737nIX0qwf6eV2vHFATeObAu7r+mUVpLs8Re0BmVkIjAWAYgkmG/CzLNo7rzuBzRu/wQ==",
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.3",
1710
- "resolved": "https://registry.npmjs.org/@types/d3-random/-/d3-random-3.0.3.tgz",
1711
- "integrity": "sha512-Imagg1vJ3y76Y2ea0871wpabqp613+8/r0mCLEBfdtqC7xMSfj9idOnmBYyMoULfHePJyxMAw3nWhJxzc+LFwQ==",
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.40",
2077
- "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.40.tgz",
2078
- "integrity": "sha512-BSSLZ9/Cjjv7Gtj5B68ZzXcXUg8iOf3fme+FCuh8rC/Go+Kmh8cox7M3A8dolou16s64QjLPOSdngh7GxXvkSw==",
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.4",
2101
- "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.4.tgz",
2102
- "integrity": "sha512-MTc8i/x9jBQd1iMw2CFGS+rwMa07eYjLR0CCTLDACl9xhxy+nIs3KeML/biicXtk9JrZ6dnnTatmc7ErPXIxqw==",
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.38",
2120
- "caniuse-lite": "^1.0.30001799",
2121
- "electron-to-chromium": "^1.5.376",
2122
- "node-releases": "^2.0.48",
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.30001800",
2140
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001800.tgz",
2141
- "integrity": "sha512-MMHtuAz9Ys840zAY5F4k6fV5GaivZ9sPk+nz0mY+GYVzRBnYkN0mpqkSR92oWRQ19yQWo4HvBV/FnC16AJX8MA==",
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.384",
2871
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.384.tgz",
2872
- "integrity": "sha512-g6KAKY1vkYsADvSPWvdJsuYT0ixdcu6lUtD9P/wJKGBEDlZVXh2AX42j1mPqqaQPDluWjara9ziQ7xqAeXCt5A==",
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": [
@@ -6062,17 +6146,17 @@
6062
6146
  }
6063
6147
  },
6064
6148
  "node_modules/shiki": {
6065
- "version": "4.3.0",
6066
- "resolved": "https://registry.npmjs.org/shiki/-/shiki-4.3.0.tgz",
6067
- "integrity": "sha512-NKKjWzR6LIGL3sXBrWDw9sDS9cxx42/DkysaNqJEeOWE8Kix5gpak0bc00OfDVEO4oyXSyz8+aRaqKoBD1yo7A==",
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.0",
6071
- "@shikijs/engine-javascript": "4.3.0",
6072
- "@shikijs/engine-oniguruma": "4.3.0",
6073
- "@shikijs/langs": "4.3.0",
6074
- "@shikijs/themes": "4.3.0",
6075
- "@shikijs/types": "4.3.0",
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
  },