('');
useEffect(() => {
+ if (setupHtml !== undefined) return;
fetch('/api/mcp')
.then((r) => (r.ok ? r.json() : null))
.then((data) => {
if (data?.setupHtml) setHtml(data.setupHtml);
})
.catch(() => {});
- }, []);
+ }, [setupHtml]);
+ const html = setupHtml ?? loadedHtml;
if (!html) {
return (
diff --git a/packages/docs-ui/lib/use-project-watch.ts b/packages/docs-ui/lib/use-project-watch.ts
index 4242bca..f5983ef 100644
--- a/packages/docs-ui/lib/use-project-watch.ts
+++ b/packages/docs-ui/lib/use-project-watch.ts
@@ -35,7 +35,7 @@ function disconnect() {
export function useProjectWatch(onChange: () => void) {
useEffect(() => {
- if (process.env.NEXT_PUBLIC_CORTEX_CLOUDFLARE === '1') return;
+ if (process.env.NODE_ENV === 'production') return;
listeners.add(onChange);
refCount++;
diff --git a/packages/docs-ui/next.config.js b/packages/docs-ui/next.config.js
index 49bc5c1..16f00cd 100644
--- a/packages/docs-ui/next.config.js
+++ b/packages/docs-ui/next.config.js
@@ -1,16 +1,18 @@
const path = require('node:path');
const docsUiRoot = process.env.CORTEX_DOCS_UI_ROOT || __dirname;
const staticExport = process.env.CORTEX_STATIC_EXPORT === '1';
+const cloudflareBuild = process.env.CORTEX_CLOUDFLARE === '1';
const productionBuild = process.env.CORTEX_DIST_DIR === '.next-build';
/** @type {import('next').NextConfig} */
module.exports = {
reactStrictMode: true,
- typescript: staticExport
- ? { tsconfigPath: 'tsconfig.cloudflare.json' }
- : productionBuild
- ? { tsconfigPath: 'tsconfig.build.json' }
- : undefined,
+ typescript:
+ staticExport && cloudflareBuild
+ ? { tsconfigPath: 'tsconfig.cloudflare.json' }
+ : productionBuild
+ ? { tsconfigPath: 'tsconfig.build.json' }
+ : undefined,
transpilePackages: ['@cortex-docs/docs-ui'],
webpack(config) {
config.resolve.alias['@'] = __dirname;
@@ -39,11 +41,7 @@ module.exports = {
'@cortex-docs/codegen',
'@apidevtools/swagger-parser',
],
- output: staticExport
- ? 'export'
- : process.env.CORTEX_STANDALONE_BUILD === '1'
- ? 'standalone'
- : undefined,
+ output: staticExport ? 'export' : undefined,
distDir: process.env.CORTEX_DIST_DIR || '.next',
outputFileTracingRoot: path.resolve(docsUiRoot, '../..'),
outputFileTracingIncludes: {
diff --git a/packages/docs-ui/scripts/cloudflare.mjs b/packages/docs-ui/scripts/cloudflare.mjs
index 252ab20..88cef0a 100644
--- a/packages/docs-ui/scripts/cloudflare.mjs
+++ b/packages/docs-ui/scripts/cloudflare.mjs
@@ -45,7 +45,6 @@ const env = {
...process.env,
CORTEX_STATIC_EXPORT: '1',
CORTEX_CLOUDFLARE: '1',
- NEXT_PUBLIC_CORTEX_CLOUDFLARE: '1',
NEXT_PUBLIC_CORTEX_BUILT_WITH_LOGO_URL: builtWithCortexLogoUrl,
CORTEX_DIST_DIR: '.next-cloudflare',
CORTEX_DOCS_UI_ROOT: docsUiDir,
diff --git a/scripts/publish-cli.mjs b/scripts/publish-cli.mjs
index ec078cc..eda234c 100644
--- a/scripts/publish-cli.mjs
+++ b/scripts/publish-cli.mjs
@@ -104,6 +104,8 @@ try {
stagedManifest.version = expectedVersion;
stagedManifest.bundleDependencies = bundledPackages;
addBundledRuntimeDependencies(stagedManifest, bundledManifests);
+ // Resolve only the dependencies needed by the published CLI, not workspace test tools.
+ delete stagedManifest.devDependencies;
writeFileSync(stagedManifestPath, `${JSON.stringify(stagedManifest, null, 2)}\n`);
execFileSync(
diff --git a/scripts/smoke-cli-package.mjs b/scripts/smoke-cli-package.mjs
index 98b9d5a..7ec9a7b 100644
--- a/scripts/smoke-cli-package.mjs
+++ b/scripts/smoke-cli-package.mjs
@@ -1,7 +1,7 @@
#!/usr/bin/env node
import { execFileSync, spawn } from 'node:child_process';
-import { existsSync, mkdirSync, mkdtempSync, rmSync, writeFileSync } from 'node:fs';
+import { existsSync, mkdirSync, mkdtempSync, readFileSync, rmSync, writeFileSync } from 'node:fs';
import { createServer as createHttpServer } from 'node:http';
import { createRequire } from 'node:module';
import { createServer as createNetServer } from 'node:net';
@@ -227,8 +227,7 @@ try {
[['publish'], 'Build and publish generated SDKs'],
[['docs'], 'API documentation commands'],
[['docs', 'serve'], 'Start a local API docs server'],
- [['docs', 'build'], 'Build production API documentation'],
- [['docs', 'start'], 'Start a production Cortex Docs build'],
+ [['docs', 'build'], 'Build static HTML API documentation'],
[['mcp'], 'MCP server commands'],
[['mcp', 'generate'], 'Generate an MCP server'],
[['generators'], 'Custom generator template commands'],
@@ -236,6 +235,9 @@ try {
]) {
assertHelp(cli, args, expectedText);
}
+ if (/\bstart\b/.test(run(cli, ['docs', '--help'], smokeRoot, true))) {
+ throw new Error('cortex docs still exposes the removed start command.');
+ }
run(cli, ['init', 'registry-smoke'], projectDir);
run(cli, ['validate'], projectDir);
@@ -295,30 +297,35 @@ try {
run(cli, ['docs', 'build', '--output', docsOutput], projectDir);
- if (!existsSync(join(docsOutput, '.cortex-docs-build.json'))) {
- throw new Error('cortex docs build did not create its production manifest.');
+ for (const file of ['index.html', '404.html', 'docs/quickstart.html', '_next/static']) {
+ if (!existsSync(join(docsOutput, file))) {
+ throw new Error(`The static documentation build is missing ${file}.`);
+ }
}
-
- const port = await reservePort();
- const docsStart = spawnCli(
- cli,
- ['docs', 'start', '--output', docsOutput, '--port', String(port)],
- projectDir,
- );
- try {
- await waitForPage(
- `http://127.0.0.1:${port}/docs/quickstart`,
- docsStart.child,
- docsStart.output,
- 'Getting Started',
- 'cortex docs start',
- );
- } finally {
- await stopProcessGroup(docsStart.child);
+ for (const file of ['server.js', 'node_modules', '.next', '.cortex-docs-build.json']) {
+ if (existsSync(join(docsOutput, file))) {
+ throw new Error(`The static documentation build contains a server artifact: ${file}.`);
+ }
+ }
+ const quickstart = readFileSync(join(docsOutput, 'docs', 'quickstart.html'), 'utf8');
+ if (!quickstart.includes('Getting Started')) {
+ throw new Error('The static documentation build is missing the quickstart page content.');
+ }
+ for (const match of quickstart.matchAll(/(?:src|href)="(\/_next\/[^"?]+)(?:\?[^"\s]*)?"/g)) {
+ if (!existsSync(join(docsOutput, decodeURIComponent(match[1])))) {
+ throw new Error(`The static documentation page references a missing asset: ${match[1]}.`);
+ }
+ }
+ for (const endpoint of ['config', 'docs', 'mcp', 'sdks', 'sdk-snippets', 'sdk-readme']) {
+ JSON.parse(readFileSync(join(docsOutput, 'api', endpoint), 'utf8'));
+ }
+ const exportedConfig = JSON.parse(readFileSync(join(docsOutput, 'api', 'config'), 'utf8'));
+ if (exportedConfig.project !== 'registry-smoke') {
+ throw new Error('The static documentation build does not contain the project configuration.');
}
console.log(
- `E2E-tested ${expectedVersion}: every CLI command, generated SDK and MCP, publish planning, and docs runtimes.`,
+ `E2E-tested ${expectedVersion}: every CLI command, generated SDK and MCP, publish planning, docs preview, and static HTML export.`,
);
} finally {
rmSync(smokeRoot, { recursive: true, force: true });
From 978dc72cb4b8dba640baa9a56658188b048dfee0 Mon Sep 17 00:00:00 2001
From: Nick Chisiu <8492343+nickchisiu@users.noreply.github.com>
Date: Sat, 12 Sep 2026 12:04:01 +0300
Subject: [PATCH 2/2] fix(ci): update vulnerable URI and Cloudflare
dependencies
---
package-lock.json | 671 +++++-----------------------------------------
1 file changed, 68 insertions(+), 603 deletions(-)
diff --git a/package-lock.json b/package-lock.json
index 967d3f2..cf85a54 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1755,9 +1755,9 @@
}
},
"node_modules/@cloudflare/workerd-darwin-64": {
- "version": "1.20260826.1",
- "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-64/-/workerd-darwin-64-1.20260826.1.tgz",
- "integrity": "sha512-8UsGGY8ZUiYHOWdsxBlNsGmaHBGArVwJ3CM4nWpfBhthjjYe4M/OqrTpqKF7NNWb63qQiv1d8Z+Z6/hmUqNKIQ==",
+ "version": "1.20260911.1",
+ "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-64/-/workerd-darwin-64-1.20260911.1.tgz",
+ "integrity": "sha512-785eaY1bkR1cm4Z/PCUeteZYmTMe6lre2zz63/GdGGimsoMsKxgl4brFPRukim8iv28EyD1XoCB/VPYF20BERA==",
"cpu": [
"x64"
],
@@ -1772,9 +1772,9 @@
}
},
"node_modules/@cloudflare/workerd-darwin-arm64": {
- "version": "1.20260826.1",
- "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-arm64/-/workerd-darwin-arm64-1.20260826.1.tgz",
- "integrity": "sha512-0bLqVQYsQ3v3FdYGmzh23vi9fJeYTBx19o4LUySIsRcgBggGSlR39ml162vTXvZzUISOjVW2qfL7Y+SMrrfXmQ==",
+ "version": "1.20260911.1",
+ "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-arm64/-/workerd-darwin-arm64-1.20260911.1.tgz",
+ "integrity": "sha512-WU4bFqEN0H7ndGWxoedegv95DmNVBtv0ncXcHG9nYFTUI78sxEb0qoT3U6Ga4hyBkzsJFBX/zvVBIGX3qKldGA==",
"cpu": [
"arm64"
],
@@ -1789,9 +1789,9 @@
}
},
"node_modules/@cloudflare/workerd-linux-64": {
- "version": "1.20260826.1",
- "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-64/-/workerd-linux-64-1.20260826.1.tgz",
- "integrity": "sha512-DTC0yWzybX4gUH5Q1pJo3UwEQjp0Gmz0Q71I+39xT9SXBesX5QndOIQv45yHQ86Z84EzK2WwaENdlpmDSvJKmw==",
+ "version": "1.20260911.1",
+ "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-64/-/workerd-linux-64-1.20260911.1.tgz",
+ "integrity": "sha512-0Y2gy62oxQxWa38qinSPE6zNL5+JmumJtDY9AWW1HB8KHuATxN71o5MGzmVFfB8PwZsiHfUd2Sv7O22krCOrhw==",
"cpu": [
"x64"
],
@@ -1806,9 +1806,9 @@
}
},
"node_modules/@cloudflare/workerd-linux-arm64": {
- "version": "1.20260826.1",
- "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-arm64/-/workerd-linux-arm64-1.20260826.1.tgz",
- "integrity": "sha512-PFerWi+DP2Ckc6eATAS4dhotBt8IeXJjTzIgy18H+uqsswlXc7A8HsnAunHL9v/7/BjCgq46iMo2g4iUAsEpDw==",
+ "version": "1.20260911.1",
+ "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-arm64/-/workerd-linux-arm64-1.20260911.1.tgz",
+ "integrity": "sha512-kttNPnx1r2lCqFUoMH62z7CqGV+j4QBbw5fdtaz4pzOrzBv0AWkNATt7onFUe+SwP8zhcepMtbm2F4kKzTf6VA==",
"cpu": [
"arm64"
],
@@ -1823,9 +1823,9 @@
}
},
"node_modules/@cloudflare/workerd-windows-64": {
- "version": "1.20260826.1",
- "resolved": "https://registry.npmjs.org/@cloudflare/workerd-windows-64/-/workerd-windows-64-1.20260826.1.tgz",
- "integrity": "sha512-X26hulrG2MSSfpRmjZbCq98LNaZnrRqbmGcgo7g1U/U0nJ5npYruPm3fAyZ2y6VDr5CmQo9BLCahxP8VB/QR6A==",
+ "version": "1.20260911.1",
+ "resolved": "https://registry.npmjs.org/@cloudflare/workerd-windows-64/-/workerd-windows-64-1.20260911.1.tgz",
+ "integrity": "sha512-5iO/YfoBDOgO3CrHdkiiVP8SL3O2jC+c6Ux3d378TSPKLhU5+CgHjtE/ZSodWQrzr4FzFRqdW8S7n5nbyD1MHQ==",
"cpu": [
"x64"
],
@@ -1840,9 +1840,9 @@
}
},
"node_modules/@cloudflare/workers-types": {
- "version": "5.20260828.1",
- "resolved": "https://registry.npmjs.org/@cloudflare/workers-types/-/workers-types-5.20260828.1.tgz",
- "integrity": "sha512-Ce0QfghuAK9v821gER8rFPR3rMeC+5puTgTzCu4UrG1Zg967Z5Aa+2uZVciIyfCAdGssyh+sLEC6rMjN/YBQwA==",
+ "version": "5.20260911.1",
+ "resolved": "https://registry.npmjs.org/@cloudflare/workers-types/-/workers-types-5.20260911.1.tgz",
+ "integrity": "sha512-yiAvknjulcU85B3yB4aKOn9+l+garWP+AbHgsdCFckeRYDdhZ1rPULi64BDf52R3VTaKqxi47kF+o9ZbjsCt5g==",
"dev": true,
"license": "MIT OR Apache-2.0"
},
@@ -2128,6 +2128,7 @@
"version": "1.11.3",
"resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.11.3.tgz",
"integrity": "sha512-Xz4Tpyki7XyrpbUK1jR1AhdAdaXyhhY4lZ3neLodmhpuWfy2PAQN5B46sAiU4liOXGLkHypn/qU+jvfWSCYYLA==",
+ "dev": true,
"license": "MIT",
"optional": true,
"dependencies": {
@@ -3018,6 +3019,7 @@
"cpu": [
"arm64"
],
+ "dev": true,
"license": "Apache-2.0",
"optional": true,
"os": [
@@ -3040,6 +3042,7 @@
"cpu": [
"x64"
],
+ "dev": true,
"license": "Apache-2.0",
"optional": true,
"os": [
@@ -3059,6 +3062,7 @@
"version": "0.35.4",
"resolved": "https://registry.npmjs.org/@img/sharp-freebsd-wasm32/-/sharp-freebsd-wasm32-0.35.4.tgz",
"integrity": "sha512-lIsKw/BU+kjB4eZjxrYrZmwOJYi3Ajrv66iAlBmUPyKc3HpnloevB1g3wxGD9P/5BbQ1brBGl65VRRrCvQDEqA==",
+ "dev": true,
"license": "Apache-2.0",
"optional": true,
"os": [
@@ -3081,6 +3085,7 @@
"cpu": [
"arm64"
],
+ "dev": true,
"license": "LGPL-3.0-or-later",
"optional": true,
"os": [
@@ -3097,6 +3102,7 @@
"cpu": [
"x64"
],
+ "dev": true,
"license": "LGPL-3.0-or-later",
"optional": true,
"os": [
@@ -3113,6 +3119,7 @@
"cpu": [
"arm"
],
+ "dev": true,
"license": "LGPL-3.0-or-later",
"optional": true,
"os": [
@@ -3129,6 +3136,7 @@
"cpu": [
"arm64"
],
+ "dev": true,
"license": "LGPL-3.0-or-later",
"optional": true,
"os": [
@@ -3145,6 +3153,7 @@
"cpu": [
"ppc64"
],
+ "dev": true,
"license": "LGPL-3.0-or-later",
"optional": true,
"os": [
@@ -3161,6 +3170,7 @@
"cpu": [
"riscv64"
],
+ "dev": true,
"license": "LGPL-3.0-or-later",
"optional": true,
"os": [
@@ -3177,6 +3187,7 @@
"cpu": [
"s390x"
],
+ "dev": true,
"license": "LGPL-3.0-or-later",
"optional": true,
"os": [
@@ -3193,6 +3204,7 @@
"cpu": [
"x64"
],
+ "dev": true,
"license": "LGPL-3.0-or-later",
"optional": true,
"os": [
@@ -3209,6 +3221,7 @@
"cpu": [
"arm64"
],
+ "dev": true,
"license": "LGPL-3.0-or-later",
"optional": true,
"os": [
@@ -3225,6 +3238,7 @@
"cpu": [
"x64"
],
+ "dev": true,
"license": "LGPL-3.0-or-later",
"optional": true,
"os": [
@@ -3241,6 +3255,7 @@
"cpu": [
"arm"
],
+ "dev": true,
"license": "Apache-2.0",
"optional": true,
"os": [
@@ -3263,6 +3278,7 @@
"cpu": [
"arm64"
],
+ "dev": true,
"license": "Apache-2.0",
"optional": true,
"os": [
@@ -3285,6 +3301,7 @@
"cpu": [
"ppc64"
],
+ "dev": true,
"license": "Apache-2.0",
"optional": true,
"os": [
@@ -3307,6 +3324,7 @@
"cpu": [
"riscv64"
],
+ "dev": true,
"license": "Apache-2.0",
"optional": true,
"os": [
@@ -3329,6 +3347,7 @@
"cpu": [
"s390x"
],
+ "dev": true,
"license": "Apache-2.0",
"optional": true,
"os": [
@@ -3351,6 +3370,7 @@
"cpu": [
"x64"
],
+ "dev": true,
"license": "Apache-2.0",
"optional": true,
"os": [
@@ -3373,6 +3393,7 @@
"cpu": [
"arm64"
],
+ "dev": true,
"license": "Apache-2.0",
"optional": true,
"os": [
@@ -3395,6 +3416,7 @@
"cpu": [
"x64"
],
+ "dev": true,
"license": "Apache-2.0",
"optional": true,
"os": [
@@ -3414,6 +3436,7 @@
"version": "0.35.4",
"resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.35.4.tgz",
"integrity": "sha512-zQnl4Kwp7Q6NHsENtU2T/00Zi+w3AQNwz3+UaTyVBy2FpXrzXzGjndpK61onhZjRtRpQXxCTeqw19bVyXOh7jA==",
+ "dev": true,
"license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT",
"optional": true,
"dependencies": {
@@ -3433,6 +3456,7 @@
"cpu": [
"wasm32"
],
+ "dev": true,
"license": "Apache-2.0",
"optional": true,
"dependencies": {
@@ -3452,6 +3476,7 @@
"cpu": [
"arm64"
],
+ "dev": true,
"license": "Apache-2.0 AND LGPL-3.0-or-later",
"optional": true,
"os": [
@@ -3471,6 +3496,7 @@
"cpu": [
"ia32"
],
+ "dev": true,
"license": "Apache-2.0 AND LGPL-3.0-or-later",
"optional": true,
"os": [
@@ -3490,6 +3516,7 @@
"cpu": [
"x64"
],
+ "dev": true,
"license": "Apache-2.0 AND LGPL-3.0-or-later",
"optional": true,
"os": [
@@ -11046,9 +11073,9 @@
"license": "MIT"
},
"node_modules/fast-uri": {
- "version": "3.1.5",
- "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.5.tgz",
- "integrity": "sha512-gHwA1O9LDIcKunMKhObS/HimwtehO1nPUECKAu5TpKgaO19fcWEl4bliWe1jWxVFvIXztJjjQ4L8XQ1EU9f7Jw==",
+ "version": "3.1.7",
+ "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.7.tgz",
+ "integrity": "sha512-dOvZVzjdZdz7phd9v6jCbwxrBW3fK6n8Rc0CtdmM4bumzMnxywBYhuph6J819RRw/ku+rLbelwfMunktuzVVHg==",
"funding": [
{
"type": "github",
@@ -14075,16 +14102,16 @@
}
},
"node_modules/miniflare": {
- "version": "5.20260826.0-alpha",
- "resolved": "https://registry.npmjs.org/miniflare/-/miniflare-5.20260826.0-alpha.tgz",
- "integrity": "sha512-ZXR3Bieg+B5MK0T/zYIWaZiCGCb9Z3en4+/TleYKhIGPLx/e0cRcG/ZvvTviUapVBBK2zODB+aiypdIojU3x6Q==",
+ "version": "5.20260911.0-alpha",
+ "resolved": "https://registry.npmjs.org/miniflare/-/miniflare-5.20260911.0-alpha.tgz",
+ "integrity": "sha512-CRieJmvHx+7rNqnA5SKdsYsER6rfkUIE/jruIUw+fLhsQ4sORfuMtr3+FQzsQ9/y8lhk061V4Fl1DFdHiyBB6g==",
"dev": true,
"license": "MIT",
"dependencies": {
"@cspotcode/source-map-support": "0.8.1",
- "sharp": "0.35.2",
+ "sharp": "0.35.4",
"undici": "7.29.0",
- "workerd": "1.20260826.1",
+ "workerd": "1.20260911.1",
"ws": "8.21.0",
"youch": "4.1.0-beta.10"
},
@@ -14092,568 +14119,6 @@
"node": ">=22.0.0"
}
},
- "node_modules/miniflare/node_modules/@img/sharp-darwin-arm64": {
- "version": "0.35.2",
- "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.35.2.tgz",
- "integrity": "sha512-eEieHsMksAW4IiO5NzauESRl2D2qz3J/kwUxUrSfV06A93eEaRfMpHXyUb1mAqrR7i8U9A0GRqE9pjn6u1Jjpg==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "Apache-2.0",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": ">=20.9.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
- },
- "optionalDependencies": {
- "@img/sharp-libvips-darwin-arm64": "1.3.1"
- }
- },
- "node_modules/miniflare/node_modules/@img/sharp-darwin-x64": {
- "version": "0.35.2",
- "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.35.2.tgz",
- "integrity": "sha512-BaktuGPCeHJMARpodR8jK4uKiZrPAy9WrfQW0sdI37clracq8Bp01AYS3SZgi5FS/y5twa9t4+LIuuxQjqRrWw==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "Apache-2.0",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": ">=20.9.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
- },
- "optionalDependencies": {
- "@img/sharp-libvips-darwin-x64": "1.3.1"
- }
- },
- "node_modules/miniflare/node_modules/@img/sharp-freebsd-wasm32": {
- "version": "0.35.2",
- "resolved": "https://registry.npmjs.org/@img/sharp-freebsd-wasm32/-/sharp-freebsd-wasm32-0.35.2.tgz",
- "integrity": "sha512-YoAxdnd8hPUkvLHd3bWY+YA8nw3xM/RyRopYucNsWHVSan8NLVM3X2volsfoRDcXdUJPg6tXahSd7HXPK7lRnw==",
- "dev": true,
- "license": "Apache-2.0",
- "optional": true,
- "os": [
- "freebsd"
- ],
- "dependencies": {
- "@img/sharp-wasm32": "0.35.2"
- },
- "engines": {
- "node": ">=20.9.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
- }
- },
- "node_modules/miniflare/node_modules/@img/sharp-libvips-darwin-arm64": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.3.1.tgz",
- "integrity": "sha512-4V/M3roRMTYjiwZY9IOVQOE8OyeCxFAkYmyZDrZl51uOKjibm3oeEJ4WAmLxutAfzFbC9jqUiPs2gbnGflH+7g==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "LGPL-3.0-or-later",
- "optional": true,
- "os": [
- "darwin"
- ],
- "funding": {
- "url": "https://opencollective.com/libvips"
- }
- },
- "node_modules/miniflare/node_modules/@img/sharp-libvips-darwin-x64": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.3.1.tgz",
- "integrity": "sha512-c0/DxItpJv2+dGhgycJBBgotdqruGYDvA79drdh0MD1dFpy7JzJ/PlXwi1H4rFf0eTy8tgbI91aHDnZIceY3jQ==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "LGPL-3.0-or-later",
- "optional": true,
- "os": [
- "darwin"
- ],
- "funding": {
- "url": "https://opencollective.com/libvips"
- }
- },
- "node_modules/miniflare/node_modules/@img/sharp-libvips-linux-arm": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.3.1.tgz",
- "integrity": "sha512-aGGy9aWzXgHBG7HNyQPWorZthlp7+x6fDRoPAQbGO3ThcttuTyKIx3NuSHb6zb4gBNq6/yNn9f1cy9nFKS/Vmg==",
- "cpu": [
- "arm"
- ],
- "dev": true,
- "license": "LGPL-3.0-or-later",
- "optional": true,
- "os": [
- "linux"
- ],
- "funding": {
- "url": "https://opencollective.com/libvips"
- }
- },
- "node_modules/miniflare/node_modules/@img/sharp-libvips-linux-arm64": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.3.1.tgz",
- "integrity": "sha512-JznefmcK9j1JKPz8AkQDh89kjojubyfOasWBPKfzMIhPwsgDy9evpE/naJTXXXmghS1iFwR8u/kTwh/I2/+GCw==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "LGPL-3.0-or-later",
- "optional": true,
- "os": [
- "linux"
- ],
- "funding": {
- "url": "https://opencollective.com/libvips"
- }
- },
- "node_modules/miniflare/node_modules/@img/sharp-libvips-linux-ppc64": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.3.1.tgz",
- "integrity": "sha512-1EkwGNCZk6iWNCMWqrvdJ+r1j0PT1zIz60CNPhYnJlK/zyeWqlsPZIe+ocBVqPF8k/Ssee/NCk+tE9Ryrko6ng==",
- "cpu": [
- "ppc64"
- ],
- "dev": true,
- "license": "LGPL-3.0-or-later",
- "optional": true,
- "os": [
- "linux"
- ],
- "funding": {
- "url": "https://opencollective.com/libvips"
- }
- },
- "node_modules/miniflare/node_modules/@img/sharp-libvips-linux-riscv64": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-riscv64/-/sharp-libvips-linux-riscv64-1.3.1.tgz",
- "integrity": "sha512-Ilays+w2bXdnxzxtQdmXR62u8o8GYa3eL4+Gr+1KiE4xperMZUslRaVPJwwPkzlHEjGfXAfRVAa/7CYCtSqsBw==",
- "cpu": [
- "riscv64"
- ],
- "dev": true,
- "license": "LGPL-3.0-or-later",
- "optional": true,
- "os": [
- "linux"
- ],
- "funding": {
- "url": "https://opencollective.com/libvips"
- }
- },
- "node_modules/miniflare/node_modules/@img/sharp-libvips-linux-s390x": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.3.1.tgz",
- "integrity": "sha512-VfBwVHQTbRoj4XlpA/KLZ7ltgMpz+4WSejFzQ+GnoImjo1PtEJ59QB2qR1xQEeRPYIkNrPIm2L4cICMvz4C2ew==",
- "cpu": [
- "s390x"
- ],
- "dev": true,
- "license": "LGPL-3.0-or-later",
- "optional": true,
- "os": [
- "linux"
- ],
- "funding": {
- "url": "https://opencollective.com/libvips"
- }
- },
- "node_modules/miniflare/node_modules/@img/sharp-libvips-linux-x64": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.3.1.tgz",
- "integrity": "sha512-+c8ukgwU62DS54nCAjw7keOfHUkmr0B5QHEdcOqRnodF/MNXJbVI8Eopoj4B/0H8Asr65I+A4Amrn7a85/md6A==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "LGPL-3.0-or-later",
- "optional": true,
- "os": [
- "linux"
- ],
- "funding": {
- "url": "https://opencollective.com/libvips"
- }
- },
- "node_modules/miniflare/node_modules/@img/sharp-libvips-linuxmusl-arm64": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.3.1.tgz",
- "integrity": "sha512-qlKb/pwbkAi1WMsJrYHk7CuDrd12s27U2QnRhFYUoJNrRCmkosMTttuRFat/DDB3IlDm5qE1TJgZ4JDnHX8Ldw==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "LGPL-3.0-or-later",
- "optional": true,
- "os": [
- "linux"
- ],
- "funding": {
- "url": "https://opencollective.com/libvips"
- }
- },
- "node_modules/miniflare/node_modules/@img/sharp-libvips-linuxmusl-x64": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.3.1.tgz",
- "integrity": "sha512-yO21HwoUVLN8Qa+/SBjQLMYwBWAVJjeGPNe+hc0OUeMeifEtJqu5a1c4HayE1nNpDih9y3/KkoltfkDodmKAlg==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "LGPL-3.0-or-later",
- "optional": true,
- "os": [
- "linux"
- ],
- "funding": {
- "url": "https://opencollective.com/libvips"
- }
- },
- "node_modules/miniflare/node_modules/@img/sharp-linux-arm": {
- "version": "0.35.2",
- "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.35.2.tgz",
- "integrity": "sha512-SE4kzF2mepn6z+6E7L6lsV8FzuLL6IPQdyX8ZiwROAG/G8td+hP/m7FsFPwidtrF19gvajuC9l6TxAVcsA4S7A==",
- "cpu": [
- "arm"
- ],
- "dev": true,
- "license": "Apache-2.0",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=20.9.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
- },
- "optionalDependencies": {
- "@img/sharp-libvips-linux-arm": "1.3.1"
- }
- },
- "node_modules/miniflare/node_modules/@img/sharp-linux-arm64": {
- "version": "0.35.2",
- "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.35.2.tgz",
- "integrity": "sha512-af12Pnd0ZGu2HfP8NayB0kk6eC/lrfbQE6HlR4jD+34wdJ1Vw9TF6TMn6ZvffT+WgqVsl0hRbmNvz2u/23VmwA==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "Apache-2.0",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=20.9.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
- },
- "optionalDependencies": {
- "@img/sharp-libvips-linux-arm64": "1.3.1"
- }
- },
- "node_modules/miniflare/node_modules/@img/sharp-linux-ppc64": {
- "version": "0.35.2",
- "resolved": "https://registry.npmjs.org/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.35.2.tgz",
- "integrity": "sha512-hYSBm7zcNtDCozCxQHYZJiu63b/bXsgRZuOxCIBZsStMM9Vap47iFHdbX4kCvQsblPB/k+clhELpdQJHQLSHvg==",
- "cpu": [
- "ppc64"
- ],
- "dev": true,
- "license": "Apache-2.0",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=20.9.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
- },
- "optionalDependencies": {
- "@img/sharp-libvips-linux-ppc64": "1.3.1"
- }
- },
- "node_modules/miniflare/node_modules/@img/sharp-linux-riscv64": {
- "version": "0.35.2",
- "resolved": "https://registry.npmjs.org/@img/sharp-linux-riscv64/-/sharp-linux-riscv64-0.35.2.tgz",
- "integrity": "sha512-qQt0Kc13+Hoan/Awq/qMSQw3L+RI1NCRPgD5cUJ/1WSSmIoysLOc72jlRM3E0OHN9Yr313jgeQ2T+zW+F03QFA==",
- "cpu": [
- "riscv64"
- ],
- "dev": true,
- "license": "Apache-2.0",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=20.9.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
- },
- "optionalDependencies": {
- "@img/sharp-libvips-linux-riscv64": "1.3.1"
- }
- },
- "node_modules/miniflare/node_modules/@img/sharp-linux-s390x": {
- "version": "0.35.2",
- "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.35.2.tgz",
- "integrity": "sha512-E4fLLfRPzDLlEeDaTzI98OFLcv++WL5ChLLMwPoVd0CIoZQqupBSNbOisPL5am9XsbQ9T84+iiMpUvbFtkunbA==",
- "cpu": [
- "s390x"
- ],
- "dev": true,
- "license": "Apache-2.0",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=20.9.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
- },
- "optionalDependencies": {
- "@img/sharp-libvips-linux-s390x": "1.3.1"
- }
- },
- "node_modules/miniflare/node_modules/@img/sharp-linux-x64": {
- "version": "0.35.2",
- "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.35.2.tgz",
- "integrity": "sha512-gi0zFJJRLswfCZmHtJdikXPOc5u7qamSOS3NHedLqLd4W8Q0NqjdBr6TTRIgsfFjqfTsHFgdfvJ9LwqSgcHiAA==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "Apache-2.0",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=20.9.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
- },
- "optionalDependencies": {
- "@img/sharp-libvips-linux-x64": "1.3.1"
- }
- },
- "node_modules/miniflare/node_modules/@img/sharp-linuxmusl-arm64": {
- "version": "0.35.2",
- "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.35.2.tgz",
- "integrity": "sha512-siWbOW1u6HFnFLrp0waKyW7VEf7jYvcDWdrXEFa8AkdAQgEvuu5Fz8/Y70w9EeqAdwDtfU012BhEHHaDqvQNzg==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "Apache-2.0",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=20.9.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
- },
- "optionalDependencies": {
- "@img/sharp-libvips-linuxmusl-arm64": "1.3.1"
- }
- },
- "node_modules/miniflare/node_modules/@img/sharp-linuxmusl-x64": {
- "version": "0.35.2",
- "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.35.2.tgz",
- "integrity": "sha512-YBqMMcjDi4QGYiSn4vNOYBhmlC4z5AXqkOUUqI2e0AFA4urNv4ESgOgwNl3K+4etQhha0twXlzeF20bbULm9Yg==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "Apache-2.0",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=20.9.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
- },
- "optionalDependencies": {
- "@img/sharp-libvips-linuxmusl-x64": "1.3.1"
- }
- },
- "node_modules/miniflare/node_modules/@img/sharp-wasm32": {
- "version": "0.35.2",
- "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.35.2.tgz",
- "integrity": "sha512-Mrv4JQNYVQ94xH+jzZ9r+gowleN8mv2FTgKT+PI6bx5C0G8TdNYndu161pg2i7uoBwxy2ImPMHrJOM2LZef7Bw==",
- "dev": true,
- "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT",
- "optional": true,
- "dependencies": {
- "@emnapi/runtime": "^1.11.1"
- },
- "engines": {
- "node": ">=20.9.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
- }
- },
- "node_modules/miniflare/node_modules/@img/sharp-webcontainers-wasm32": {
- "version": "0.35.2",
- "resolved": "https://registry.npmjs.org/@img/sharp-webcontainers-wasm32/-/sharp-webcontainers-wasm32-0.35.2.tgz",
- "integrity": "sha512-QNV27pxs9wpApEiCfvHM1RDoP1w1+2KrUWWDPEhEwg+latvOrfuhWrHWZKwdSFwU6jh3myjw/yOCRsUIuOft3g==",
- "cpu": [
- "wasm32"
- ],
- "dev": true,
- "license": "Apache-2.0",
- "optional": true,
- "dependencies": {
- "@img/sharp-wasm32": "0.35.2"
- },
- "engines": {
- "node": ">=20.9.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
- }
- },
- "node_modules/miniflare/node_modules/@img/sharp-win32-arm64": {
- "version": "0.35.2",
- "resolved": "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.35.2.tgz",
- "integrity": "sha512-BiVRYc/t6/Vl3e1hBx0hugG4oN9Pydf4fgMSpxTQJmwGUg/YoXTWHiFeRymHfCZzifxu4F4rpk/I67D0LQ20wQ==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "Apache-2.0 AND LGPL-3.0-or-later",
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">=20.9.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
- }
- },
- "node_modules/miniflare/node_modules/@img/sharp-win32-ia32": {
- "version": "0.35.2",
- "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.35.2.tgz",
- "integrity": "sha512-YYEhx9PImCC7T0tI8JDMi4DB9LwLCXCU5OWNYEXAxh5Q1ShKkyC6byxzoBJ3gEFDnH2lQckWuDe70G7mB2XJog==",
- "cpu": [
- "ia32"
- ],
- "dev": true,
- "license": "Apache-2.0 AND LGPL-3.0-or-later",
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": "^20.9.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
- }
- },
- "node_modules/miniflare/node_modules/@img/sharp-win32-x64": {
- "version": "0.35.2",
- "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.35.2.tgz",
- "integrity": "sha512-imoOyBcoM/iiUr4J6VPpCNjPnjvP/Gks95898yB8YqoGGYmHYbOyCuNv9FMhFgtaiHFGbHW8bxKqRV6VjtXThQ==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "Apache-2.0 AND LGPL-3.0-or-later",
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">=20.9.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
- }
- },
- "node_modules/miniflare/node_modules/sharp": {
- "version": "0.35.2",
- "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.35.2.tgz",
- "integrity": "sha512-FVtFjtBCMiJS6yb5CX7Sop45WFMpeGw6oRKuJnXYgf/f1ms/D7LE/ZUSNxnW7rZ/dbslQWYkoqFHGPaDBtaK4w==",
- "dev": true,
- "license": "Apache-2.0",
- "dependencies": {
- "@img/colour": "^1.1.0",
- "detect-libc": "^2.1.2",
- "semver": "^7.8.4"
- },
- "engines": {
- "node": ">=20.9.0"
- },
- "funding": {
- "url": "https://opencollective.com/libvips"
- },
- "optionalDependencies": {
- "@img/sharp-darwin-arm64": "0.35.2",
- "@img/sharp-darwin-x64": "0.35.2",
- "@img/sharp-freebsd-wasm32": "0.35.2",
- "@img/sharp-libvips-darwin-arm64": "1.3.1",
- "@img/sharp-libvips-darwin-x64": "1.3.1",
- "@img/sharp-libvips-linux-arm": "1.3.1",
- "@img/sharp-libvips-linux-arm64": "1.3.1",
- "@img/sharp-libvips-linux-ppc64": "1.3.1",
- "@img/sharp-libvips-linux-riscv64": "1.3.1",
- "@img/sharp-libvips-linux-s390x": "1.3.1",
- "@img/sharp-libvips-linux-x64": "1.3.1",
- "@img/sharp-libvips-linuxmusl-arm64": "1.3.1",
- "@img/sharp-libvips-linuxmusl-x64": "1.3.1",
- "@img/sharp-linux-arm": "0.35.2",
- "@img/sharp-linux-arm64": "0.35.2",
- "@img/sharp-linux-ppc64": "0.35.2",
- "@img/sharp-linux-riscv64": "0.35.2",
- "@img/sharp-linux-s390x": "0.35.2",
- "@img/sharp-linux-x64": "0.35.2",
- "@img/sharp-linuxmusl-arm64": "0.35.2",
- "@img/sharp-linuxmusl-x64": "0.35.2",
- "@img/sharp-webcontainers-wasm32": "0.35.2",
- "@img/sharp-win32-arm64": "0.35.2",
- "@img/sharp-win32-ia32": "0.35.2",
- "@img/sharp-win32-x64": "0.35.2"
- }
- },
"node_modules/miniflare/node_modules/ws": {
"version": "8.21.0",
"resolved": "https://registry.npmjs.org/ws/-/ws-8.21.0.tgz",
@@ -16685,8 +16150,8 @@
"version": "0.35.4",
"resolved": "https://registry.npmjs.org/sharp/-/sharp-0.35.4.tgz",
"integrity": "sha512-n++8XWcj+jCOr2IOl7h8LbKnGBDY4aPbmprMONBNFdn0ImXqpGVv5zliDs0V9HbmbCQLpbuo2ej9rAoOQTvMDA==",
+ "devOptional": true,
"license": "Apache-2.0",
- "optional": true,
"dependencies": {
"@img/colour": "^1.1.0",
"detect-libc": "^2.1.2",
@@ -18645,9 +18110,9 @@
}
},
"node_modules/workerd": {
- "version": "1.20260826.1",
- "resolved": "https://registry.npmjs.org/workerd/-/workerd-1.20260826.1.tgz",
- "integrity": "sha512-oTG9ot5zxO9OjjKCskt86+nVrBL0kiUqExHnYaTg4OCkHf/K4zr+9hYvgwmG8DdCWG0TQGErHzD+1h50TM5b+w==",
+ "version": "1.20260911.1",
+ "resolved": "https://registry.npmjs.org/workerd/-/workerd-1.20260911.1.tgz",
+ "integrity": "sha512-vRr8QdBxueQOZJO1hRCI73EZlix87IAyBAcSyI3rA1VB+6oxjw3oaqzYnIV8C4IOPtUgihbdMAgzkb5GM4V7DQ==",
"dev": true,
"hasInstallScript": true,
"license": "Apache-2.0",
@@ -18658,17 +18123,17 @@
"node": ">=16"
},
"optionalDependencies": {
- "@cloudflare/workerd-darwin-64": "1.20260826.1",
- "@cloudflare/workerd-darwin-arm64": "1.20260826.1",
- "@cloudflare/workerd-linux-64": "1.20260826.1",
- "@cloudflare/workerd-linux-arm64": "1.20260826.1",
- "@cloudflare/workerd-windows-64": "1.20260826.1"
+ "@cloudflare/workerd-darwin-64": "1.20260911.1",
+ "@cloudflare/workerd-darwin-arm64": "1.20260911.1",
+ "@cloudflare/workerd-linux-64": "1.20260911.1",
+ "@cloudflare/workerd-linux-arm64": "1.20260911.1",
+ "@cloudflare/workerd-windows-64": "1.20260911.1"
}
},
"node_modules/wrangler": {
- "version": "4.127.0",
- "resolved": "https://registry.npmjs.org/wrangler/-/wrangler-4.127.0.tgz",
- "integrity": "sha512-4dPqcBEMJfGeZeNnjHT7ThNJs+EiNYxUTg4ywqIdQubcXHBhFeVMQyHV4A9AOhZRFr83cckqdds034KGcr/dtw==",
+ "version": "4.131.1",
+ "resolved": "https://registry.npmjs.org/wrangler/-/wrangler-4.131.1.tgz",
+ "integrity": "sha512-1u5FMdJAn6UOcL02cVsIITcnHrk6mC7N+RF10EkVhPL18R/o9g5BZb4PCjByL+3AsRP5wQpppCIPHhYPRmIJwg==",
"dev": true,
"license": "MIT OR Apache-2.0",
"dependencies": {
@@ -18676,10 +18141,10 @@
"@cloudflare/unenv-preset": "2.16.1",
"blake3-wasm": "2.1.5",
"esbuild": "0.28.1",
- "miniflare": "5.20260826.0-alpha",
+ "miniflare": "5.20260911.0-alpha",
"path-to-regexp": "6.3.0",
"unenv": "2.0.0-rc.24",
- "workerd": "1.20260826.1"
+ "workerd": "1.20260911.1"
},
"bin": {
"cf-wrangler": "bin/cf-wrangler.js",
@@ -18693,7 +18158,7 @@
"fsevents": "2.3.3"
},
"peerDependencies": {
- "@cloudflare/workers-types": "^5.20260826.1"
+ "@cloudflare/workers-types": "^5.20260911.1"
},
"peerDependenciesMeta": {
"@cloudflare/workers-types": {