jamdesk 1.1.71 → 1.1.73
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/__tests__/unit/dev-loading-server.test.js +30 -14
- package/dist/__tests__/unit/dev-loading-server.test.js.map +1 -1
- package/dist/__tests__/unit/vendored-sync.test.js +12 -0
- package/dist/__tests__/unit/vendored-sync.test.js.map +1 -1
- package/dist/lib/deps.d.ts.map +1 -1
- package/dist/lib/deps.js +7 -5
- package/dist/lib/deps.js.map +1 -1
- package/dist/lib/docs-config.d.ts +1 -0
- package/dist/lib/docs-config.d.ts.map +1 -1
- package/dist/lib/docs-config.js +53 -6
- package/dist/lib/docs-config.js.map +1 -1
- package/package.json +2 -2
- package/vendored/app/(jd-system)/jd-inactive/BrandedInactive.tsx +118 -0
- package/vendored/app/(jd-system)/jd-inactive/layout.tsx +12 -0
- package/vendored/app/(jd-system)/jd-inactive/page.tsx +40 -0
- package/vendored/app/globals.css +5 -0
- package/vendored/app/layout.tsx +36 -0
- package/vendored/components/navigation/Header.tsx +4 -2
- package/vendored/lib/build/error-parser.ts +26 -0
- package/vendored/lib/docs-isr.ts +33 -19
- package/vendored/lib/docs-types.ts +1 -1
- package/vendored/lib/email-notifier.ts +1 -1
- package/vendored/lib/isr-build-executor.ts +1 -1
- package/vendored/lib/layout-helpers.tsx +54 -2
- package/vendored/lib/middleware-helpers.ts +46 -8
- package/vendored/lib/preprocess-mdx.ts +20 -15
- package/vendored/lib/redis.ts +86 -0
- package/vendored/lib/revalidation-trigger.ts +29 -15
- package/vendored/lib/validate-config.ts +68 -7
- package/vendored/schema/docs-schema.json +1 -1
- package/vendored/themes/index.ts +6 -4
- package/vendored/workspace-package-lock.json +115 -130
|
@@ -64,6 +64,44 @@ export interface ValidationResult {
|
|
|
64
64
|
|
|
65
65
|
type Schema = Record<string, unknown>;
|
|
66
66
|
|
|
67
|
+
// Migration docs URL — embedded verbatim in every Mintlify-migration error message.
|
|
68
|
+
// error-parser.ts pattern-matches on this string to attach the step-by-step
|
|
69
|
+
// migrate suggestion, so it MUST stay in the user-facing message exactly as below.
|
|
70
|
+
// (Sentinel doubles as the customer-facing link target.)
|
|
71
|
+
export const MIGRATION_DOCS_URL = 'https://jamdesk.com/docs/setup/migration';
|
|
72
|
+
|
|
73
|
+
/** Mintlify themes (Mint pre-2.0 + Themes 2.0). Used as a fallback signal when
|
|
74
|
+
* `$schema` has been stripped during a partial migration attempt. */
|
|
75
|
+
const MINTLIFY_THEMES = [
|
|
76
|
+
'mint', 'maple', 'palm', 'willow', 'quill', 'aspen', 'linden', 'prism',
|
|
77
|
+
'almond', 'sequoia', 'luma',
|
|
78
|
+
];
|
|
79
|
+
|
|
80
|
+
/** Detect Mintlify by $schema URL — the durable signal Mintlify itself controls. */
|
|
81
|
+
function isMintlifyBySchema(config: unknown): boolean {
|
|
82
|
+
if (!config || typeof config !== 'object') return false;
|
|
83
|
+
const schema = (config as Record<string, unknown>).$schema;
|
|
84
|
+
return typeof schema === 'string' && schema.includes('mintlify.com');
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
/** Detect Mintlify by theme name (fallback when $schema is missing). */
|
|
88
|
+
function isMintlifyByThemeName(theme: unknown): boolean {
|
|
89
|
+
return typeof theme === 'string' && MINTLIFY_THEMES.includes(theme.toLowerCase());
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
/** Build the "needs migration" error result. `reason` is interpolated as the
|
|
93
|
+
* leading sentence so each detection branch can explain *which* signal fired. */
|
|
94
|
+
function mintlifyMigrationError(reason: string): ValidationResult {
|
|
95
|
+
return {
|
|
96
|
+
valid: false,
|
|
97
|
+
error:
|
|
98
|
+
`Invalid docs.json: ${reason} This project hasn't been migrated to Jamdesk yet ` +
|
|
99
|
+
'— run `jamdesk migrate` from your project directory to convert your config ' +
|
|
100
|
+
`(and Mintlify-only MDX components) automatically. See ${MIGRATION_DOCS_URL} for details.`,
|
|
101
|
+
errorType: 'config_error',
|
|
102
|
+
};
|
|
103
|
+
}
|
|
104
|
+
|
|
67
105
|
// Cache the schema
|
|
68
106
|
let cachedSchema: Schema | null = null;
|
|
69
107
|
|
|
@@ -267,6 +305,12 @@ export function formatValidationErrors(errors: ErrorObject[] | null | undefined)
|
|
|
267
305
|
export async function validateConfig(configPath: string, docsPath?: string): Promise<ValidationResult> {
|
|
268
306
|
// Check file exists
|
|
269
307
|
if (!fs.existsSync(configPath)) {
|
|
308
|
+
// If `mint.json` sits where docs.json should be, the project is mid-migration
|
|
309
|
+
// (or hasn't started). Give the migrate hint instead of the generic "missing".
|
|
310
|
+
const mintPath = path.join(path.dirname(configPath), 'mint.json');
|
|
311
|
+
if (fs.existsSync(mintPath)) {
|
|
312
|
+
return mintlifyMigrationError('Found `mint.json` but no `docs.json`.');
|
|
313
|
+
}
|
|
270
314
|
const pathHint = docsPath
|
|
271
315
|
? `Missing docs.json at '${docsPath}/docs.json'. Check that your monorepo path is correct.`
|
|
272
316
|
: 'Missing docs.json configuration file. Your repository must have a docs.json file in the root directory.';
|
|
@@ -288,7 +332,15 @@ export async function validateConfig(configPath: string, docsPath?: string): Pro
|
|
|
288
332
|
error: `Failed to parse docs.json: ${error.message}. Ensure your JSON is valid (tip: use JSON5 format to allow comments).`,
|
|
289
333
|
};
|
|
290
334
|
}
|
|
291
|
-
|
|
335
|
+
|
|
336
|
+
// Mintlify-shaped configs trip every structural rule below (their
|
|
337
|
+
// `navigation` is an array, anchors are required keys, etc.). Detect via
|
|
338
|
+
// $schema BEFORE structural validation so customers see "run jamdesk migrate"
|
|
339
|
+
// instead of "Array of groups is not supported".
|
|
340
|
+
if (isMintlifyBySchema(config)) {
|
|
341
|
+
return mintlifyMigrationError('Mintlify `$schema` detected.');
|
|
342
|
+
}
|
|
343
|
+
|
|
292
344
|
// Basic validation (always runs, even without schema)
|
|
293
345
|
if (!config.name) {
|
|
294
346
|
return {
|
|
@@ -327,13 +379,22 @@ export async function validateConfig(configPath: string, docsPath?: string): Pro
|
|
|
327
379
|
};
|
|
328
380
|
}
|
|
329
381
|
|
|
330
|
-
// Validate theme
|
|
382
|
+
// Validate theme (case-insensitive — "MINT" still falls through to the Mintlify branch below).
|
|
331
383
|
const validThemes = ['jam', 'nebula', 'pulsar'];
|
|
332
|
-
if (config.theme
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
384
|
+
if (typeof config.theme === 'string') {
|
|
385
|
+
const themeLower = config.theme.toLowerCase();
|
|
386
|
+
if (!validThemes.includes(themeLower)) {
|
|
387
|
+
if (isMintlifyByThemeName(config.theme)) {
|
|
388
|
+
return mintlifyMigrationError(`Theme "${config.theme}" looks like a Mintlify theme.`);
|
|
389
|
+
}
|
|
390
|
+
return {
|
|
391
|
+
valid: false,
|
|
392
|
+
error: `Invalid docs.json: Theme "${config.theme}" is not supported. Valid themes are: ${validThemes.join(', ')}.`,
|
|
393
|
+
errorType: 'config_error',
|
|
394
|
+
};
|
|
395
|
+
}
|
|
396
|
+
// Normalize so downstream Ajv schema (lowercase enum) accepts it.
|
|
397
|
+
config.theme = themeLower as 'jam' | 'nebula' | 'pulsar';
|
|
337
398
|
}
|
|
338
399
|
|
|
339
400
|
if (legacyAnchors) {
|
|
@@ -1577,7 +1577,7 @@
|
|
|
1577
1577
|
},
|
|
1578
1578
|
"hint": {
|
|
1579
1579
|
"type": "string",
|
|
1580
|
-
"description": "Optional hint shown on the unlock page (e.g., \"Ask
|
|
1580
|
+
"description": "Optional hint shown on the unlock page (e.g., \"Ask #docs-access on Slack\"). Plain text, no HTML.",
|
|
1581
1581
|
"maxLength": 200
|
|
1582
1582
|
},
|
|
1583
1583
|
"public": {
|
package/vendored/themes/index.ts
CHANGED
|
@@ -83,14 +83,16 @@ const themes: Record<ThemeName, ThemeConfig> = {
|
|
|
83
83
|
};
|
|
84
84
|
|
|
85
85
|
/**
|
|
86
|
-
* Get theme configuration by name
|
|
87
|
-
*
|
|
86
|
+
* Get theme configuration by name. Case-insensitive — `validateConfig` accepts
|
|
87
|
+
* any-case theme strings and the on-disk docs.json preserves the original
|
|
88
|
+
* casing, so readers must lowercase to match.
|
|
88
89
|
*/
|
|
89
90
|
export function getTheme(name?: ThemeName | string): ThemeConfig {
|
|
90
|
-
|
|
91
|
+
const key = name?.toLowerCase();
|
|
92
|
+
if (!key || !(key in themes)) {
|
|
91
93
|
return themes.jam;
|
|
92
94
|
}
|
|
93
|
-
return themes[
|
|
95
|
+
return themes[key as ThemeName];
|
|
94
96
|
}
|
|
95
97
|
|
|
96
98
|
/**
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
"@fortawesome/free-solid-svg-icons": "^7.1.0",
|
|
15
15
|
"@fortawesome/react-fontawesome": "^3.1.1",
|
|
16
16
|
"@mdx-js/mdx": "^3.1.0",
|
|
17
|
-
"@next/mdx": "^16.2.
|
|
18
|
-
"@next/third-parties": "^16.2.
|
|
17
|
+
"@next/mdx": "^16.2.5",
|
|
18
|
+
"@next/third-parties": "^16.2.5",
|
|
19
19
|
"@orama/orama": "^3.1.18",
|
|
20
20
|
"@orama/plugin-data-persistence": "^3.1.18",
|
|
21
21
|
"@shikijs/rehype": "^4.0.1",
|
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
"@types/node": "^25.5.2",
|
|
26
26
|
"@types/react": "^19.2.14",
|
|
27
27
|
"@types/react-dom": "^19.0.0",
|
|
28
|
+
"@upstash/redis": "^1.37.0",
|
|
28
29
|
"ajv": "^8.17.1",
|
|
29
30
|
"ajv-formats": "^3.0.1",
|
|
30
31
|
"autoprefixer": "^10.4.24",
|
|
@@ -39,13 +40,13 @@
|
|
|
39
40
|
"katex": "^0.16.45",
|
|
40
41
|
"lucide-react": "^0.562.0",
|
|
41
42
|
"mermaid": "^11.14.0",
|
|
42
|
-
"next": "^16.2.
|
|
43
|
+
"next": "^16.2.5",
|
|
43
44
|
"next-mdx-remote": "^6.0.0",
|
|
44
45
|
"next-themes": "^0.4.6",
|
|
45
46
|
"openapi-types": "^12.1.3",
|
|
46
47
|
"postcss": "^8.5.10",
|
|
47
|
-
"react": "^19.2.
|
|
48
|
-
"react-dom": "^19.2.
|
|
48
|
+
"react": "^19.2.6",
|
|
49
|
+
"react-dom": "^19.2.6",
|
|
49
50
|
"react-markdown": "^10.1.0",
|
|
50
51
|
"rehype-highlight": "^7.0.0",
|
|
51
52
|
"rehype-katex": "^7.0.1",
|
|
@@ -157,9 +158,9 @@
|
|
|
157
158
|
}
|
|
158
159
|
},
|
|
159
160
|
"node_modules/@babel/standalone": {
|
|
160
|
-
"version": "7.29.
|
|
161
|
-
"resolved": "https://registry.npmjs.org/@babel/standalone/-/standalone-7.29.
|
|
162
|
-
"integrity": "sha512-
|
|
161
|
+
"version": "7.29.4",
|
|
162
|
+
"resolved": "https://registry.npmjs.org/@babel/standalone/-/standalone-7.29.4.tgz",
|
|
163
|
+
"integrity": "sha512-QuPlodN3HBcX/HcKRz0fkpr8hmqhY+OKwX89h/vBVKuSat5ohvZw4XGNwfF1LtwScmp5ILBAO7puXwJDcMEtJQ==",
|
|
163
164
|
"license": "MIT",
|
|
164
165
|
"engines": {
|
|
165
166
|
"node": ">=6.9.0"
|
|
@@ -295,14 +296,14 @@
|
|
|
295
296
|
"license": "MIT"
|
|
296
297
|
},
|
|
297
298
|
"node_modules/@iconify/utils": {
|
|
298
|
-
"version": "3.1.
|
|
299
|
-
"resolved": "https://registry.npmjs.org/@iconify/utils/-/utils-3.1.
|
|
300
|
-
"integrity": "sha512-
|
|
299
|
+
"version": "3.1.3",
|
|
300
|
+
"resolved": "https://registry.npmjs.org/@iconify/utils/-/utils-3.1.3.tgz",
|
|
301
|
+
"integrity": "sha512-LPKOXPn/zV+zis1oOfGWogaXVpqUybF3ZS6SCZIsz8vg0ivVp9+fVqyYB7xq0aiST/VhUQYGO1qo6uoYSiEJqw==",
|
|
301
302
|
"license": "MIT",
|
|
302
303
|
"dependencies": {
|
|
303
304
|
"@antfu/install-pkg": "^1.1.0",
|
|
304
305
|
"@iconify/types": "^2.0.0",
|
|
305
|
-
"
|
|
306
|
+
"import-meta-resolve": "^4.2.0"
|
|
306
307
|
}
|
|
307
308
|
},
|
|
308
309
|
"node_modules/@img/colour": {
|
|
@@ -937,15 +938,15 @@
|
|
|
937
938
|
}
|
|
938
939
|
},
|
|
939
940
|
"node_modules/@next/env": {
|
|
940
|
-
"version": "16.2.
|
|
941
|
-
"resolved": "https://registry.npmjs.org/@next/env/-/env-16.2.
|
|
942
|
-
"integrity": "sha512-
|
|
941
|
+
"version": "16.2.5",
|
|
942
|
+
"resolved": "https://registry.npmjs.org/@next/env/-/env-16.2.5.tgz",
|
|
943
|
+
"integrity": "sha512-Lb9ElHD2klcyeVD25vW+siPFqz9QMzDUSgvFZNO+dZEKoMHex4viJhVuzBhrXKqb+UKnih7mVYbt50/7KLsSCA==",
|
|
943
944
|
"license": "MIT"
|
|
944
945
|
},
|
|
945
946
|
"node_modules/@next/mdx": {
|
|
946
|
-
"version": "16.2.
|
|
947
|
-
"resolved": "https://registry.npmjs.org/@next/mdx/-/mdx-16.2.
|
|
948
|
-
"integrity": "sha512-
|
|
947
|
+
"version": "16.2.5",
|
|
948
|
+
"resolved": "https://registry.npmjs.org/@next/mdx/-/mdx-16.2.5.tgz",
|
|
949
|
+
"integrity": "sha512-U1r0I3Ga5/PYKH+loar1OfWCjkZXwG6qFovDzyAFPI2Nxi9gLOWZQ3dLNC5znSGLPToJauRbqgi3kfkKEFqNig==",
|
|
949
950
|
"license": "MIT",
|
|
950
951
|
"dependencies": {
|
|
951
952
|
"source-map": "^0.7.0"
|
|
@@ -964,9 +965,9 @@
|
|
|
964
965
|
}
|
|
965
966
|
},
|
|
966
967
|
"node_modules/@next/swc-darwin-arm64": {
|
|
967
|
-
"version": "16.2.
|
|
968
|
-
"resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-16.2.
|
|
969
|
-
"integrity": "sha512-
|
|
968
|
+
"version": "16.2.5",
|
|
969
|
+
"resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-16.2.5.tgz",
|
|
970
|
+
"integrity": "sha512-BW+8PGVmsruomXHsitD8JG6gny9lEdobctjBwvtPF8AKtxGDR7nR35FOl/oK9UAPXBOBm+vx0k8qtpeHOXQMGQ==",
|
|
970
971
|
"cpu": [
|
|
971
972
|
"arm64"
|
|
972
973
|
],
|
|
@@ -980,9 +981,9 @@
|
|
|
980
981
|
}
|
|
981
982
|
},
|
|
982
983
|
"node_modules/@next/swc-darwin-x64": {
|
|
983
|
-
"version": "16.2.
|
|
984
|
-
"resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-16.2.
|
|
985
|
-
"integrity": "sha512-
|
|
984
|
+
"version": "16.2.5",
|
|
985
|
+
"resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-16.2.5.tgz",
|
|
986
|
+
"integrity": "sha512-ZoCGnCl9LlQJWmqXrZAUlNxvuNmclvE+7zUif+nDydkkehl9FKxHJ+wxSQMj+C37BYFerKiEdX9s9o02ir975Q==",
|
|
986
987
|
"cpu": [
|
|
987
988
|
"x64"
|
|
988
989
|
],
|
|
@@ -996,9 +997,9 @@
|
|
|
996
997
|
}
|
|
997
998
|
},
|
|
998
999
|
"node_modules/@next/swc-linux-arm64-gnu": {
|
|
999
|
-
"version": "16.2.
|
|
1000
|
-
"resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-16.2.
|
|
1001
|
-
"integrity": "sha512-
|
|
1000
|
+
"version": "16.2.5",
|
|
1001
|
+
"resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-16.2.5.tgz",
|
|
1002
|
+
"integrity": "sha512-AwcZzMChaWkOTZt3vu+2ZMIj8g4dYQY+B8VUVhlFSQ2JtvyZpefyYHTe00D6b6L7BysYw7vl3zsvs9jix8tl5Q==",
|
|
1002
1003
|
"cpu": [
|
|
1003
1004
|
"arm64"
|
|
1004
1005
|
],
|
|
@@ -1015,9 +1016,9 @@
|
|
|
1015
1016
|
}
|
|
1016
1017
|
},
|
|
1017
1018
|
"node_modules/@next/swc-linux-arm64-musl": {
|
|
1018
|
-
"version": "16.2.
|
|
1019
|
-
"resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-16.2.
|
|
1020
|
-
"integrity": "sha512-
|
|
1019
|
+
"version": "16.2.5",
|
|
1020
|
+
"resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-16.2.5.tgz",
|
|
1021
|
+
"integrity": "sha512-QqMgqWbCBFsfiQ7BF3dUlW8HJy1LWhpcqbTpoHMWA9IV+TnWwDKozQJA5NdIAHjQ00yX2Q7AUkLr/XK4n77q8A==",
|
|
1021
1022
|
"cpu": [
|
|
1022
1023
|
"arm64"
|
|
1023
1024
|
],
|
|
@@ -1034,9 +1035,9 @@
|
|
|
1034
1035
|
}
|
|
1035
1036
|
},
|
|
1036
1037
|
"node_modules/@next/swc-linux-x64-gnu": {
|
|
1037
|
-
"version": "16.2.
|
|
1038
|
-
"resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-16.2.
|
|
1039
|
-
"integrity": "sha512-
|
|
1038
|
+
"version": "16.2.5",
|
|
1039
|
+
"resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-16.2.5.tgz",
|
|
1040
|
+
"integrity": "sha512-3hzeiFGZtyATVx9pCeuzTshXmh50vHZitqaeZiyJZaUmjQyrfjsVUgS8apOj1vEJCIpKJM/55F45yPAV2kpjsA==",
|
|
1040
1041
|
"cpu": [
|
|
1041
1042
|
"x64"
|
|
1042
1043
|
],
|
|
@@ -1053,9 +1054,9 @@
|
|
|
1053
1054
|
}
|
|
1054
1055
|
},
|
|
1055
1056
|
"node_modules/@next/swc-linux-x64-musl": {
|
|
1056
|
-
"version": "16.2.
|
|
1057
|
-
"resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-16.2.
|
|
1058
|
-
"integrity": "sha512-
|
|
1057
|
+
"version": "16.2.5",
|
|
1058
|
+
"resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-16.2.5.tgz",
|
|
1059
|
+
"integrity": "sha512-0mzZV/mAt7Qj2tYNdTB6AqrS8dwng/AQLSYC5Z1YLpZdi2wxqKDPK7RY2RvjB1fXyJfOfdA3l/yTF5yLi+WfuQ==",
|
|
1059
1060
|
"cpu": [
|
|
1060
1061
|
"x64"
|
|
1061
1062
|
],
|
|
@@ -1072,9 +1073,9 @@
|
|
|
1072
1073
|
}
|
|
1073
1074
|
},
|
|
1074
1075
|
"node_modules/@next/swc-win32-arm64-msvc": {
|
|
1075
|
-
"version": "16.2.
|
|
1076
|
-
"resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-16.2.
|
|
1077
|
-
"integrity": "sha512-
|
|
1076
|
+
"version": "16.2.5",
|
|
1077
|
+
"resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-16.2.5.tgz",
|
|
1078
|
+
"integrity": "sha512-f/H4nZ2zJBvA8/+HpsB9mNonF9zfQoAU6D0WxJrfzhJDvJLfngVN85oqxUyrDVK99DIFfFYhLpGa5K+c5uotSw==",
|
|
1078
1079
|
"cpu": [
|
|
1079
1080
|
"arm64"
|
|
1080
1081
|
],
|
|
@@ -1088,9 +1089,9 @@
|
|
|
1088
1089
|
}
|
|
1089
1090
|
},
|
|
1090
1091
|
"node_modules/@next/swc-win32-x64-msvc": {
|
|
1091
|
-
"version": "16.2.
|
|
1092
|
-
"resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-16.2.
|
|
1093
|
-
"integrity": "sha512-
|
|
1092
|
+
"version": "16.2.5",
|
|
1093
|
+
"resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-16.2.5.tgz",
|
|
1094
|
+
"integrity": "sha512-nuP7DHs4koAojsIxVPkihNgKiRUKtCU65j5X6DAbSy8VBrfT/o90bCLLHPf51JEdOZwZMFzM6e0NiGWfIWjVAg==",
|
|
1094
1095
|
"cpu": [
|
|
1095
1096
|
"x64"
|
|
1096
1097
|
],
|
|
@@ -1104,9 +1105,9 @@
|
|
|
1104
1105
|
}
|
|
1105
1106
|
},
|
|
1106
1107
|
"node_modules/@next/third-parties": {
|
|
1107
|
-
"version": "16.2.
|
|
1108
|
-
"resolved": "https://registry.npmjs.org/@next/third-parties/-/third-parties-16.2.
|
|
1109
|
-
"integrity": "sha512-
|
|
1108
|
+
"version": "16.2.5",
|
|
1109
|
+
"resolved": "https://registry.npmjs.org/@next/third-parties/-/third-parties-16.2.5.tgz",
|
|
1110
|
+
"integrity": "sha512-GgjE9fJiYDr5eMEowSWoThJVV4fOHVA4vJ5oxAzoaa3Agfj56g+0PkPXtj0CjdaH6IlUFBtUPp5r2kfdGABK1w==",
|
|
1110
1111
|
"license": "MIT",
|
|
1111
1112
|
"dependencies": {
|
|
1112
1113
|
"third-party-capital": "1.0.20"
|
|
@@ -1877,9 +1878,9 @@
|
|
|
1877
1878
|
}
|
|
1878
1879
|
},
|
|
1879
1880
|
"node_modules/@types/estree": {
|
|
1880
|
-
"version": "1.0.
|
|
1881
|
-
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.
|
|
1882
|
-
"integrity": "sha512-
|
|
1881
|
+
"version": "1.0.9",
|
|
1882
|
+
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.9.tgz",
|
|
1883
|
+
"integrity": "sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==",
|
|
1883
1884
|
"license": "MIT"
|
|
1884
1885
|
},
|
|
1885
1886
|
"node_modules/@types/estree-jsx": {
|
|
@@ -1989,9 +1990,9 @@
|
|
|
1989
1990
|
"license": "MIT"
|
|
1990
1991
|
},
|
|
1991
1992
|
"node_modules/@ungap/structured-clone": {
|
|
1992
|
-
"version": "1.3.
|
|
1993
|
-
"resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.
|
|
1994
|
-
"integrity": "sha512-
|
|
1993
|
+
"version": "1.3.1",
|
|
1994
|
+
"resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.1.tgz",
|
|
1995
|
+
"integrity": "sha512-mUFwbeTqrVgDQxFveS+df2yfap6iuP20NAKAsBt5jDEoOTDew+zwLAOilHCeQJOVSvmgCX4ogqIrA0mnyr08yQ==",
|
|
1995
1996
|
"license": "ISC"
|
|
1996
1997
|
},
|
|
1997
1998
|
"node_modules/@upsetjs/venn.js": {
|
|
@@ -2004,6 +2005,15 @@
|
|
|
2004
2005
|
"d3-transition": "^3.0.1"
|
|
2005
2006
|
}
|
|
2006
2007
|
},
|
|
2008
|
+
"node_modules/@upstash/redis": {
|
|
2009
|
+
"version": "1.38.0",
|
|
2010
|
+
"resolved": "https://registry.npmjs.org/@upstash/redis/-/redis-1.38.0.tgz",
|
|
2011
|
+
"integrity": "sha512-wu+dZBptlLy0+MCUEoHmzrY/TnmgDey3+c7EbIGwrLqAvkP8yi5MWZHYGIFtAygmL4Bkz2TdFu+eU0vFPncIcg==",
|
|
2012
|
+
"license": "MIT",
|
|
2013
|
+
"dependencies": {
|
|
2014
|
+
"uncrypto": "^0.1.3"
|
|
2015
|
+
}
|
|
2016
|
+
},
|
|
2007
2017
|
"node_modules/acorn": {
|
|
2008
2018
|
"version": "8.16.0",
|
|
2009
2019
|
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.16.0.tgz",
|
|
@@ -2216,9 +2226,9 @@
|
|
|
2216
2226
|
"license": "MIT"
|
|
2217
2227
|
},
|
|
2218
2228
|
"node_modules/caniuse-lite": {
|
|
2219
|
-
"version": "1.0.
|
|
2220
|
-
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.
|
|
2221
|
-
"integrity": "sha512-
|
|
2229
|
+
"version": "1.0.30001792",
|
|
2230
|
+
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001792.tgz",
|
|
2231
|
+
"integrity": "sha512-hVLMUZFgR4JJ6ACt1uEESvQN1/dBVqPAKY0hgrV70eN3391K6juAfTjKZLKvOMsx8PxA7gsY1/tLMMTcfFLLpw==",
|
|
2222
2232
|
"funding": [
|
|
2223
2233
|
{
|
|
2224
2234
|
"type": "opencollective",
|
|
@@ -2348,12 +2358,6 @@
|
|
|
2348
2358
|
"node": ">= 12"
|
|
2349
2359
|
}
|
|
2350
2360
|
},
|
|
2351
|
-
"node_modules/confbox": {
|
|
2352
|
-
"version": "0.1.8",
|
|
2353
|
-
"resolved": "https://registry.npmjs.org/confbox/-/confbox-0.1.8.tgz",
|
|
2354
|
-
"integrity": "sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==",
|
|
2355
|
-
"license": "MIT"
|
|
2356
|
-
},
|
|
2357
2361
|
"node_modules/cose-base": {
|
|
2358
2362
|
"version": "1.0.3",
|
|
2359
2363
|
"resolved": "https://registry.npmjs.org/cose-base/-/cose-base-1.0.3.tgz",
|
|
@@ -2981,9 +2985,9 @@
|
|
|
2981
2985
|
"license": "MIT"
|
|
2982
2986
|
},
|
|
2983
2987
|
"node_modules/electron-to-chromium": {
|
|
2984
|
-
"version": "1.5.
|
|
2985
|
-
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.
|
|
2986
|
-
"integrity": "sha512-
|
|
2988
|
+
"version": "1.5.352",
|
|
2989
|
+
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.352.tgz",
|
|
2990
|
+
"integrity": "sha512-9wHk8x6dyuimoe18EdiDPWKExNdxYqo4fn4FwOVVper6RxT3cmpBwBkWWfSOCYJjQdIco/nPhJhNLmn4Ufg1Yg==",
|
|
2987
2991
|
"license": "ISC"
|
|
2988
2992
|
},
|
|
2989
2993
|
"node_modules/enhanced-resolve": {
|
|
@@ -3193,9 +3197,9 @@
|
|
|
3193
3197
|
"license": "MIT"
|
|
3194
3198
|
},
|
|
3195
3199
|
"node_modules/fast-uri": {
|
|
3196
|
-
"version": "3.1.
|
|
3197
|
-
"resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.
|
|
3198
|
-
"integrity": "sha512-
|
|
3200
|
+
"version": "3.1.2",
|
|
3201
|
+
"resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.2.tgz",
|
|
3202
|
+
"integrity": "sha512-rVjf7ArG3LTk+FS6Yw81V1DLuZl1bRbNrev6Tmd/9RaroeeRRJhAt7jg/6YFxbvAQXUCavSoZhPPj6oOx+5KjQ==",
|
|
3199
3203
|
"funding": [
|
|
3200
3204
|
{
|
|
3201
3205
|
"type": "github",
|
|
@@ -3250,9 +3254,9 @@
|
|
|
3250
3254
|
}
|
|
3251
3255
|
},
|
|
3252
3256
|
"node_modules/fs-extra": {
|
|
3253
|
-
"version": "11.3.
|
|
3254
|
-
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.
|
|
3255
|
-
"integrity": "sha512-
|
|
3257
|
+
"version": "11.3.5",
|
|
3258
|
+
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.5.tgz",
|
|
3259
|
+
"integrity": "sha512-eKpRKAovdpZtR1WopLHxlBWvAgPny3c4gX1G5Jhwmmw4XJj0ifSD5qB5TOo8hmA0wlRKDAOAhEE1yVPgs6Fgcg==",
|
|
3256
3260
|
"license": "MIT",
|
|
3257
3261
|
"dependencies": {
|
|
3258
3262
|
"graceful-fs": "^4.2.0",
|
|
@@ -3634,6 +3638,16 @@
|
|
|
3634
3638
|
"node": ">=0.10.0"
|
|
3635
3639
|
}
|
|
3636
3640
|
},
|
|
3641
|
+
"node_modules/import-meta-resolve": {
|
|
3642
|
+
"version": "4.2.0",
|
|
3643
|
+
"resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-4.2.0.tgz",
|
|
3644
|
+
"integrity": "sha512-Iqv2fzaTQN28s/FwZAoFq0ZSs/7hMAHJVX+w8PZl3cY19Pxk6jFFalxQoIfW2826i/fDLXv8IiEZRIT0lDuWcg==",
|
|
3645
|
+
"license": "MIT",
|
|
3646
|
+
"funding": {
|
|
3647
|
+
"type": "github",
|
|
3648
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
3649
|
+
}
|
|
3650
|
+
},
|
|
3637
3651
|
"node_modules/inline-style-parser": {
|
|
3638
3652
|
"version": "0.2.7",
|
|
3639
3653
|
"resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.2.7.tgz",
|
|
@@ -3715,9 +3729,9 @@
|
|
|
3715
3729
|
}
|
|
3716
3730
|
},
|
|
3717
3731
|
"node_modules/jiti": {
|
|
3718
|
-
"version": "2.
|
|
3719
|
-
"resolved": "https://registry.npmjs.org/jiti/-/jiti-2.
|
|
3720
|
-
"integrity": "sha512-
|
|
3732
|
+
"version": "2.7.0",
|
|
3733
|
+
"resolved": "https://registry.npmjs.org/jiti/-/jiti-2.7.0.tgz",
|
|
3734
|
+
"integrity": "sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==",
|
|
3721
3735
|
"license": "MIT",
|
|
3722
3736
|
"bin": {
|
|
3723
3737
|
"jiti": "lib/jiti-cli.mjs"
|
|
@@ -4118,9 +4132,9 @@
|
|
|
4118
4132
|
}
|
|
4119
4133
|
},
|
|
4120
4134
|
"node_modules/lru-cache": {
|
|
4121
|
-
"version": "11.3.
|
|
4122
|
-
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.3.
|
|
4123
|
-
"integrity": "sha512-
|
|
4135
|
+
"version": "11.3.6",
|
|
4136
|
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.3.6.tgz",
|
|
4137
|
+
"integrity": "sha512-Gf/KoL3C/MlI7Bt0PGI9I+TeTC/I6r/csU58N4BSNc4lppLBeKsOdFYkK+dX0ABDUMJNfCHTyPpzwwO21Awd3A==",
|
|
4124
4138
|
"license": "BlueOak-1.0.0",
|
|
4125
4139
|
"engines": {
|
|
4126
4140
|
"node": "20 || >=22"
|
|
@@ -5273,18 +5287,6 @@
|
|
|
5273
5287
|
"node": ">=16 || 14 >=14.17"
|
|
5274
5288
|
}
|
|
5275
5289
|
},
|
|
5276
|
-
"node_modules/mlly": {
|
|
5277
|
-
"version": "1.8.2",
|
|
5278
|
-
"resolved": "https://registry.npmjs.org/mlly/-/mlly-1.8.2.tgz",
|
|
5279
|
-
"integrity": "sha512-d+ObxMQFmbt10sretNDytwt85VrbkhhUA/JBGm1MPaWJ65Cl4wOgLaB1NYvJSZ0Ef03MMEU/0xpPMXUIQ29UfA==",
|
|
5280
|
-
"license": "MIT",
|
|
5281
|
-
"dependencies": {
|
|
5282
|
-
"acorn": "^8.16.0",
|
|
5283
|
-
"pathe": "^2.0.3",
|
|
5284
|
-
"pkg-types": "^1.3.1",
|
|
5285
|
-
"ufo": "^1.6.3"
|
|
5286
|
-
}
|
|
5287
|
-
},
|
|
5288
5290
|
"node_modules/ms": {
|
|
5289
5291
|
"version": "2.1.3",
|
|
5290
5292
|
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
|
@@ -5310,12 +5312,12 @@
|
|
|
5310
5312
|
}
|
|
5311
5313
|
},
|
|
5312
5314
|
"node_modules/next": {
|
|
5313
|
-
"version": "16.2.
|
|
5314
|
-
"resolved": "https://registry.npmjs.org/next/-/next-16.2.
|
|
5315
|
-
"integrity": "sha512-
|
|
5315
|
+
"version": "16.2.5",
|
|
5316
|
+
"resolved": "https://registry.npmjs.org/next/-/next-16.2.5.tgz",
|
|
5317
|
+
"integrity": "sha512-TkVTm9F2WEulkgGljm4wPwNgvCCWCVw6StUHsZb8WZpHFRjepoUWg3d7L4IMg7IyjcJ4Co9eVhpro8e8O+KarQ==",
|
|
5316
5318
|
"license": "MIT",
|
|
5317
5319
|
"dependencies": {
|
|
5318
|
-
"@next/env": "16.2.
|
|
5320
|
+
"@next/env": "16.2.5",
|
|
5319
5321
|
"@swc/helpers": "0.5.15",
|
|
5320
5322
|
"baseline-browser-mapping": "^2.9.19",
|
|
5321
5323
|
"caniuse-lite": "^1.0.30001579",
|
|
@@ -5329,14 +5331,14 @@
|
|
|
5329
5331
|
"node": ">=20.9.0"
|
|
5330
5332
|
},
|
|
5331
5333
|
"optionalDependencies": {
|
|
5332
|
-
"@next/swc-darwin-arm64": "16.2.
|
|
5333
|
-
"@next/swc-darwin-x64": "16.2.
|
|
5334
|
-
"@next/swc-linux-arm64-gnu": "16.2.
|
|
5335
|
-
"@next/swc-linux-arm64-musl": "16.2.
|
|
5336
|
-
"@next/swc-linux-x64-gnu": "16.2.
|
|
5337
|
-
"@next/swc-linux-x64-musl": "16.2.
|
|
5338
|
-
"@next/swc-win32-arm64-msvc": "16.2.
|
|
5339
|
-
"@next/swc-win32-x64-msvc": "16.2.
|
|
5334
|
+
"@next/swc-darwin-arm64": "16.2.5",
|
|
5335
|
+
"@next/swc-darwin-x64": "16.2.5",
|
|
5336
|
+
"@next/swc-linux-arm64-gnu": "16.2.5",
|
|
5337
|
+
"@next/swc-linux-arm64-musl": "16.2.5",
|
|
5338
|
+
"@next/swc-linux-x64-gnu": "16.2.5",
|
|
5339
|
+
"@next/swc-linux-x64-musl": "16.2.5",
|
|
5340
|
+
"@next/swc-win32-arm64-msvc": "16.2.5",
|
|
5341
|
+
"@next/swc-win32-x64-msvc": "16.2.5",
|
|
5340
5342
|
"sharp": "^0.34.5"
|
|
5341
5343
|
},
|
|
5342
5344
|
"peerDependencies": {
|
|
@@ -5547,29 +5549,12 @@
|
|
|
5547
5549
|
"url": "https://github.com/sponsors/isaacs"
|
|
5548
5550
|
}
|
|
5549
5551
|
},
|
|
5550
|
-
"node_modules/pathe": {
|
|
5551
|
-
"version": "2.0.3",
|
|
5552
|
-
"resolved": "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz",
|
|
5553
|
-
"integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==",
|
|
5554
|
-
"license": "MIT"
|
|
5555
|
-
},
|
|
5556
5552
|
"node_modules/picocolors": {
|
|
5557
5553
|
"version": "1.1.1",
|
|
5558
5554
|
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
|
|
5559
5555
|
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
|
|
5560
5556
|
"license": "ISC"
|
|
5561
5557
|
},
|
|
5562
|
-
"node_modules/pkg-types": {
|
|
5563
|
-
"version": "1.3.1",
|
|
5564
|
-
"resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-1.3.1.tgz",
|
|
5565
|
-
"integrity": "sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==",
|
|
5566
|
-
"license": "MIT",
|
|
5567
|
-
"dependencies": {
|
|
5568
|
-
"confbox": "^0.1.8",
|
|
5569
|
-
"mlly": "^1.7.4",
|
|
5570
|
-
"pathe": "^2.0.1"
|
|
5571
|
-
}
|
|
5572
|
-
},
|
|
5573
5558
|
"node_modules/points-on-curve": {
|
|
5574
5559
|
"version": "0.2.0",
|
|
5575
5560
|
"resolved": "https://registry.npmjs.org/points-on-curve/-/points-on-curve-0.2.0.tgz",
|
|
@@ -5587,9 +5572,9 @@
|
|
|
5587
5572
|
}
|
|
5588
5573
|
},
|
|
5589
5574
|
"node_modules/postcss": {
|
|
5590
|
-
"version": "8.5.
|
|
5591
|
-
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.
|
|
5592
|
-
"integrity": "sha512-
|
|
5575
|
+
"version": "8.5.14",
|
|
5576
|
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.14.tgz",
|
|
5577
|
+
"integrity": "sha512-SoSL4+OSEtR99LHFZQiJLkT59C5B1amGO1NzTwj7TT1qCUgUO6hxOvzkOYxD+vMrXBM3XJIKzokoERdqQq/Zmg==",
|
|
5593
5578
|
"funding": [
|
|
5594
5579
|
{
|
|
5595
5580
|
"type": "opencollective",
|
|
@@ -5644,24 +5629,24 @@
|
|
|
5644
5629
|
}
|
|
5645
5630
|
},
|
|
5646
5631
|
"node_modules/react": {
|
|
5647
|
-
"version": "19.2.
|
|
5648
|
-
"resolved": "https://registry.npmjs.org/react/-/react-19.2.
|
|
5649
|
-
"integrity": "sha512-
|
|
5632
|
+
"version": "19.2.6",
|
|
5633
|
+
"resolved": "https://registry.npmjs.org/react/-/react-19.2.6.tgz",
|
|
5634
|
+
"integrity": "sha512-sfWGGfavi0xr8Pg0sVsyHMAOziVYKgPLNrS7ig+ivMNb3wbCBw3KxtflsGBAwD3gYQlE/AEZsTLgToRrSCjb0Q==",
|
|
5650
5635
|
"license": "MIT",
|
|
5651
5636
|
"engines": {
|
|
5652
5637
|
"node": ">=0.10.0"
|
|
5653
5638
|
}
|
|
5654
5639
|
},
|
|
5655
5640
|
"node_modules/react-dom": {
|
|
5656
|
-
"version": "19.2.
|
|
5657
|
-
"resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.
|
|
5658
|
-
"integrity": "sha512-
|
|
5641
|
+
"version": "19.2.6",
|
|
5642
|
+
"resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.6.tgz",
|
|
5643
|
+
"integrity": "sha512-0prMI+hvBbPjsWnxDLxlCGyM8PN6UuWjEUCYmZhO67xIV9Xasa/r/vDnq+Xyq4Lo27g8QSbO5YzARu0D1Sps3g==",
|
|
5659
5644
|
"license": "MIT",
|
|
5660
5645
|
"dependencies": {
|
|
5661
5646
|
"scheduler": "^0.27.0"
|
|
5662
5647
|
},
|
|
5663
5648
|
"peerDependencies": {
|
|
5664
|
-
"react": "^19.2.
|
|
5649
|
+
"react": "^19.2.6"
|
|
5665
5650
|
}
|
|
5666
5651
|
},
|
|
5667
5652
|
"node_modules/react-markdown": {
|
|
@@ -6352,10 +6337,10 @@
|
|
|
6352
6337
|
"node": ">=14.17"
|
|
6353
6338
|
}
|
|
6354
6339
|
},
|
|
6355
|
-
"node_modules/
|
|
6356
|
-
"version": "1.
|
|
6357
|
-
"resolved": "https://registry.npmjs.org/
|
|
6358
|
-
"integrity": "sha512-
|
|
6340
|
+
"node_modules/uncrypto": {
|
|
6341
|
+
"version": "0.1.3",
|
|
6342
|
+
"resolved": "https://registry.npmjs.org/uncrypto/-/uncrypto-0.1.3.tgz",
|
|
6343
|
+
"integrity": "sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==",
|
|
6359
6344
|
"license": "MIT"
|
|
6360
6345
|
},
|
|
6361
6346
|
"node_modules/undici-types": {
|