diff --git a/.github/workflows/publish-npm-package.yml b/.github/workflows/publish-npm-package.yml index ee493d379..f5de77129 100644 --- a/.github/workflows/publish-npm-package.yml +++ b/.github/workflows/publish-npm-package.yml @@ -8,13 +8,14 @@ on: workflow_dispatch: inputs: package: - description: "Package to publish (react-ui, react-headless, or lang-react)" + description: "Package to publish (react-ui, react-headless, openui-cli, or lang-react)" required: true type: choice options: - react-ui - react-headless - lang-react + - openui-cli jobs: publish: diff --git a/README.md b/README.md index 58cfc472e..427aaa84b 100644 --- a/README.md +++ b/README.md @@ -31,8 +31,8 @@ At the center of OpenUI is **OpenUI Lang**: a compact, streaming-first language ## Quick Start ```bash -npx create-openui-chat my-chat-app -cd my-chat-app +npx @openuidev/cli@latest create +cd genui-chat-app npm run dev ``` @@ -95,7 +95,7 @@ OpenUI also includes ready-made chat surfaces and integration patterns, but chat If you want a complete starting point with backend wiring, streaming, and a built-in UI, use: ```bash -npx create-openui-chat my-chat-app +npx @openuidev/cli@latest create ``` From there, you can keep the built-in experience or move toward more custom OpenUI Lang-driven interfaces. diff --git a/docs/app/(home)/components/BuildChatSection.tsx b/docs/app/(home)/components/BuildChatSection.tsx index 77646b078..74f2d74dd 100644 --- a/docs/app/(home)/components/BuildChatSection.tsx +++ b/docs/app/(home)/components/BuildChatSection.tsx @@ -50,7 +50,7 @@ function CtaButton() { if (copied) return; try { - await navigator.clipboard.writeText("npx create openui-app chat"); + await navigator.clipboard.writeText("npx @openuidev/cli@latest create"); setCopied(true); resetTimeoutRef.current = setTimeout(() => { setCopied(false); @@ -87,7 +87,7 @@ function CtaButton() { - npx create openui-app chat + npx @openuidev/cli@latest create diff --git a/docs/content/docs/chat/installation.mdx b/docs/content/docs/chat/installation.mdx index fe55ffd73..7f9fe9234 100644 --- a/docs/content/docs/chat/installation.mdx +++ b/docs/content/docs/chat/installation.mdx @@ -8,7 +8,7 @@ This page covers package installation, style imports, and a basic render check f **Starting a new project?** Skip this guide and use our scaffold command instead: - `npx create-openui-chat my-app` + `npx @openuidev/cli@latest create --name my-app` ## Prerequisites diff --git a/docs/content/docs/chat/quick-start.mdx b/docs/content/docs/chat/quick-start.mdx index b7310765a..1552515e5 100644 --- a/docs/content/docs/chat/quick-start.mdx +++ b/docs/content/docs/chat/quick-start.mdx @@ -14,26 +14,26 @@ Run the create command. This scaffolds a Next.js app with OpenUI Chat already wi ```bash - npx create-openui-chat my-chat-app - cd my-chat-app + npx @openuidev/cli@latest create + cd genui-chat-app ``` ```bash - pnpm create openui-chat my-chat-app - cd my-chat-app + pnpm dlx @openuidev/cli@latest create + cd genui-chat-app ``` ```bash - yarn create openui-chat my-chat-app - cd my-chat-app + yarn dlx @openuidev/cli@latest create + cd genui-chat-app ``` ```bash - bun create openui-chat my-chat-app - cd my-chat-app + bunx @openuidev/cli@latest create + cd genui-chat-app ``` diff --git a/examples/openui-chat/README.md b/examples/openui-chat/README.md index 78fd7b43a..03a161d8b 100644 --- a/examples/openui-chat/README.md +++ b/examples/openui-chat/README.md @@ -1,4 +1,4 @@ -This is an [OpenUI](https://openui.com) Agent Chat project bootstrapped with [`create-openui-app`](https://openui.com/docs/chat/quick-start). +This is an [OpenUI](https://openui.com) Agent Chat project bootstrapped with [`openui-cli`](https://openui.com/docs/chat/quick-start). ## Getting Started diff --git a/packages/create-openui-app/src/index.ts b/packages/create-openui-app/src/index.ts deleted file mode 100644 index affffb603..000000000 --- a/packages/create-openui-app/src/index.ts +++ /dev/null @@ -1,20 +0,0 @@ -#!/usr/bin/env node - -import { Command } from "commander"; - -import { runCreateChatApp } from "./commands/create-chat-app"; - -const program = new Command(); - -program.name("create-openui-app").description("CLI for creating OpenUI apps").version("0.0.1"); - -program - .command("chat") - .description("Scaffold a new Next.js app with OpenUI Chat") - .option("-n, --name ", "Project name") - .option("--no-interactive", "Fail with error if required args are missing") - .action(async (options: { name?: string; interactive: boolean }) => { - await runCreateChatApp({ name: options.name, noInteractive: !options.interactive }); - }); - -program.parse(); diff --git a/packages/openui-cli/README.md b/packages/openui-cli/README.md new file mode 100644 index 000000000..d2da4e5fd --- /dev/null +++ b/packages/openui-cli/README.md @@ -0,0 +1,137 @@ +# OpenUI CLI + +The OpenUI CLI helps you get started with OpenUI faster. + +It currently supports two workflows: + +- scaffolding a new OpenUI Chat app +- generating a system prompt or JSON Schema from a `createLibrary()` export + +## Install + +Run the CLI with your package manager of choice: + +```bash +npx @openuidev/cli --help +pnpm dlx @openuidev/cli --help +bunx @openuidev/cli --help +``` + +## Quick Start + +Create a new chat app: + +```bash +npx @openuidev/cli@latest create +``` + +Generate a prompt from a library file: + +```bash +npx @openuidev/cli generate ./src/library.ts +``` + +Generate JSON Schema instead: + +```bash +npx @openuidev/cli generate ./src/library.ts --json-schema +``` + +## Commands + +### `openui create` + +Scaffolds a new Next.js app with OpenUI Chat. + +```bash +openui create [options] +``` + +Options: + +- `-n, --name `: Project name +- `--no-interactive`: Fail instead of prompting for missing required input + +What it does: + +- prompts for the project name if you do not pass `--name` +- copies the bundled `openui-chat` template into a new directory +- rewrites `workspace:*` dependencies in the generated `package.json` to `latest` +- installs dependencies automatically using the detected package manager + +Examples: + +```bash +openui create +openui create +openui create --no-interactive +``` + +### `openui generate` + +Generates a system prompt or JSON Schema from a file that exports a `createLibrary()` result. + +```bash +openui generate [options] [entry] +``` + +Arguments: + +- `entry`: Path to a `.ts`, `.tsx`, `.js`, or `.jsx` file that exports a library + +Options: + +- `-o, --out `: Write output to a file instead of stdout +- `--json-schema`: Output JSON Schema instead of the system prompt +- `--export `: Use a specific export name instead of auto-detecting the library export +- `--no-interactive`: Fail instead of prompting for a missing `entry` + +What it does: + +- prompts for the entry file path if you do not pass one +- bundles the entry with `esbuild` before evaluating it in Node +- supports both TypeScript and JavaScript entry files +- stubs common asset imports such as CSS, SVG, images, and fonts during bundling +- auto-detects the exported library by checking `library`, `default`, and then all exports + +Examples: + +```bash +openui generate ./src/library.ts +openui generate ./src/library.ts --json-schema +openui generate ./src/library.ts --export library +openui generate ./src/library.ts --out ./artifacts/system-prompt.txt +openui generate --no-interactive ./src/library.ts +``` + +## How `generate` resolves exports + +`openui generate` expects the target module to export a library object with both `prompt()` and `toJSONSchema()` methods. + +If `--export` is not provided, it looks for exports in this order: + +1. `library` +2. `default` +3. any other export that matches the expected library shape + +## Local Development + +Build the CLI locally: + +```bash +pnpm run build +``` + +Run the built CLI: + +```bash +node dist/index.js --help +node dist/index.js create --help +node dist/index.js generate --help +``` + +## Notes + +- interactive prompts can be cancelled without creating output +- `create` requires the template files to be present in the built package +- `generate` exits with a non-zero code if the file is missing or no valid library export is found diff --git a/packages/create-openui-app/package.json b/packages/openui-cli/package.json similarity index 68% rename from packages/create-openui-app/package.json rename to packages/openui-cli/package.json index 161ad9af8..be0b5cc19 100644 --- a/packages/create-openui-app/package.json +++ b/packages/openui-cli/package.json @@ -1,16 +1,17 @@ { - "name": "create-openui-app", - "version": "0.0.1", - "description": "CLI for creating OpenUI apps", + "name": "@openuidev/cli", + "version": "0.0.2", + "description": "CLI for OpenUI", "bin": { "openui": "dist/index.js" }, "files": [ - "dist" + "dist", + "README.md" ], "scripts": { "build:cli": "tsc -p .", - "build:templates": "mkdir -p dist/templates && cp -r src/templates/openui-chat dist/templates/openui-chat", + "build:templates": "rm -rf dist/templates/openui-chat && mkdir -p dist/templates && cp -R src/templates/openui-chat dist/templates/openui-chat", "build": "pnpm run build:cli && pnpm run build:templates", "build:exec": "node dist/index.js", "lint:check": "eslint ./src --ignore-pattern 'src/templates/**'", @@ -20,8 +21,7 @@ "ci": "pnpm run lint:check && pnpm run format:check" }, "devDependencies": { - "@types/node": "^22.15.32", - "tsx": "^4.19.2" + "@types/node": "^22.15.32" }, "keywords": [], "author": "engineering@thesys.dev", @@ -29,6 +29,7 @@ "dependencies": { "@inquirer/core": "^11.1.5", "@inquirer/prompts": "^8.3.0", - "commander": "^14.0.3" + "commander": "^14.0.3", + "esbuild": "^0.25.10" } } diff --git a/packages/create-openui-app/src/commands/create-chat-app.ts b/packages/openui-cli/src/commands/create-chat-app.ts similarity index 80% rename from packages/create-openui-app/src/commands/create-chat-app.ts rename to packages/openui-cli/src/commands/create-chat-app.ts index 7389cfd12..f038f396e 100644 --- a/packages/create-openui-app/src/commands/create-chat-app.ts +++ b/packages/openui-cli/src/commands/create-chat-app.ts @@ -10,6 +10,14 @@ export interface CreateChatAppOptions { noInteractive?: boolean; } +function shouldCopyTemplatePath(templateDir: string, src: string): boolean { + const relativePath = path.relative(templateDir, src); + + if (!relativePath) return true; + + return relativePath !== "openui-chat" && !relativePath.startsWith(`openui-chat${path.sep}`); +} + export async function runCreateChatApp(options: CreateChatAppOptions): Promise { const args = await resolveArgs( { @@ -41,7 +49,15 @@ export async function runCreateChatApp(options: CreateChatAppOptions): Promise shouldCopyTemplatePath(templateDir, src), + }); const pkgPath = path.join(targetDir, "package.json"); const pkg = JSON.parse(fs.readFileSync(pkgPath, "utf8")) as { diff --git a/packages/openui-cli/src/commands/generate-worker.ts b/packages/openui-cli/src/commands/generate-worker.ts new file mode 100644 index 000000000..6cee6eaf2 --- /dev/null +++ b/packages/openui-cli/src/commands/generate-worker.ts @@ -0,0 +1,133 @@ +/** + * Worker script that bundles a user's library file and outputs the system + * prompt or JSON schema. Asset imports are stubbed during bundling so React + * component modules can be evaluated without CSS/image/font loaders. + * + * argv: [entryPath, exportName?, "--json-schema"?] + * stdout: the prompt string or JSON schema + */ + +import * as fs from "fs"; +import * as os from "os"; +import * as path from "path"; + +import * as esbuild from "esbuild"; + +// ── Main ── + +interface Library { + prompt(options?: unknown): string; + toJSONSchema(): object; +} + +const ASSET_RE = /\.(css|scss|less|sass|svg|png|jpe?g|gif|webp|ico|woff2?|ttf|eot)(\?.*)?$/i; + +function createAssetStubPlugin(): esbuild.Plugin { + return { + name: "openui-asset-stub", + setup(build) { + build.onResolve({ filter: ASSET_RE }, (args) => { + const assetPath = args.path.split("?")[0]!; + const resolvedPath = path.isAbsolute(assetPath) + ? assetPath + : path.join(args.resolveDir, assetPath); + return { path: resolvedPath, namespace: "openui-asset-stub" }; + }); + + build.onLoad({ filter: /.*/, namespace: "openui-asset-stub" }, (args) => { + const ext = path.extname(args.path).toLowerCase(); + const contents = + ext === ".svg" + ? "export default {}; export const ReactComponent = () => null;" + : "export default {};"; + + return { contents, loader: "js" }; + }); + }, + }; +} + +function isLibrary(value: unknown): value is Library { + if (typeof value !== "object" || value === null) return false; + const obj = value as Record; + return typeof obj["prompt"] === "function" && typeof obj["toJSONSchema"] === "function"; +} + +function findLibrary(mod: Record, exportName?: string): Library | undefined { + if (exportName) { + const val = mod[exportName]; + return isLibrary(val) ? val : undefined; + } + + for (const name of ["library", "default"]) { + if (isLibrary(mod[name])) return mod[name]; + } + + for (const val of Object.values(mod)) { + if (isLibrary(val)) return val; + } + + return undefined; +} + +async function main(): Promise { + const args = process.argv.slice(2); + const entryPath = args[0]; + if (!entryPath) { + console.error("Usage: generate-worker [exportName] [--json-schema]"); + process.exit(1); + } + + const jsonSchema = args.includes("--json-schema"); + const exportName = args.find((a) => a !== entryPath && a !== "--json-schema"); + + const bundleDir = fs.mkdtempSync(path.join(os.tmpdir(), "openui-generate-")); + const bundlePath = path.join(bundleDir, "entry.cjs"); + + let mod: Record | undefined; + let importError: unknown; + try { + await esbuild.build({ + absWorkingDir: process.cwd(), + bundle: true, + entryPoints: [entryPath], + format: "cjs", + outfile: bundlePath, + platform: "node", + plugins: [createAssetStubPlugin()], + sourcemap: "inline", + target: "node18", + write: true, + }); + + mod = require(bundlePath) as Record; + } catch (err) { + importError = err; + } finally { + fs.rmSync(bundleDir, { force: true, recursive: true }); + } + + if (!mod) { + console.error(`Error: Failed to import ${entryPath}`); + console.error(importError instanceof Error ? importError.message : importError); + process.exit(1); + } + + const library = findLibrary(mod, exportName); + + if (!library) { + const exports = Object.keys(mod).join(", "); + console.error( + `Error: No Library export found.\n` + + `Found exports: ${exports || "(none)"}\n` + + `Export a createLibrary() result, or use --export to specify which export to use.`, + ); + process.exit(1); + } + + const output = jsonSchema ? JSON.stringify(library.toJSONSchema(), null, 2) : library.prompt(); + + process.stdout.write(output); +} + +main(); diff --git a/packages/openui-cli/src/commands/generate.ts b/packages/openui-cli/src/commands/generate.ts new file mode 100644 index 000000000..e89260441 --- /dev/null +++ b/packages/openui-cli/src/commands/generate.ts @@ -0,0 +1,45 @@ +import { execFileSync } from "child_process"; +import * as fs from "fs"; +import * as path from "path"; + +export interface GenerateOptions { + out?: string; + jsonSchema?: boolean; + export?: string; +} + +export async function runGenerate(entry: string, options: GenerateOptions): Promise { + const entryPath = path.resolve(process.cwd(), entry); + + if (!fs.existsSync(entryPath)) { + console.error(`Error: File not found: ${entryPath}`); + process.exit(1); + } + + const workerPath = path.join(__dirname, "generate-worker.js"); + + const workerArgs = [workerPath, entryPath]; + if (options.export) workerArgs.push(options.export); + if (options.jsonSchema) workerArgs.push("--json-schema"); + + let output: string; + try { + output = execFileSync(process.execPath, workerArgs, { + encoding: "utf-8", + cwd: process.cwd(), + stdio: ["inherit", "pipe", "inherit"], + }); + } catch (err) { + console.error(err); + process.exit(1); + } + + if (options.out) { + const outPath = path.resolve(process.cwd(), options.out); + fs.mkdirSync(path.dirname(outPath), { recursive: true }); + fs.writeFileSync(outPath, output + "\n"); + console.info(`Written to ${outPath}`); + } else { + process.stdout.write(output + "\n"); + } +} diff --git a/packages/openui-cli/src/index.ts b/packages/openui-cli/src/index.ts new file mode 100644 index 000000000..36129cb1d --- /dev/null +++ b/packages/openui-cli/src/index.ts @@ -0,0 +1,51 @@ +#!/usr/bin/env node + +import { Command } from "commander"; + +import { runCreateChatApp } from "./commands/create-chat-app"; +import { runGenerate } from "./commands/generate"; +import { resolveArgs } from "./lib/resolve-args"; + +const program = new Command(); + +program.name("openui").description("CLI for OpenUI").version("0.0.1"); + +program + .command("create") + .description("Scaffold a new Next.js app with OpenUI Chat") + .option("-n, --name ", "Project name") + .option("--no-interactive", "Fail with error if required args are missing") + .action(async (options: { name?: string; interactive: boolean }) => { + await runCreateChatApp({ name: options.name, noInteractive: !options.interactive }); + }); + +program + .command("generate") + .description("Generate system prompt or JSON schema from a library definition") + .argument("[entry]", "Path to a file that exports a createLibrary() result") + .option("-o, --out ", "Write output to a file instead of stdout") + .option("--json-schema", "Output JSON schema instead of the system prompt") + .option("--export ", "Name of the export to use (auto-detected by default)") + .option("--no-interactive", "Fail with error if required args are missing") + .action( + async ( + entry: string | undefined, + options: { out?: string; jsonSchema?: boolean; export?: string; interactive: boolean }, + ) => { + const args = await resolveArgs( + { + entry: entry + ? { value: entry } + : { + prompt: { type: "input", message: "Entry file path?" }, + required: true, + }, + }, + options.interactive, + ); + + await runGenerate((args as { entry: string }).entry, options); + }, + ); + +program.parse(); diff --git a/packages/create-openui-app/src/lib/detect-package-manager.ts b/packages/openui-cli/src/lib/detect-package-manager.ts similarity index 100% rename from packages/create-openui-app/src/lib/detect-package-manager.ts rename to packages/openui-cli/src/lib/detect-package-manager.ts diff --git a/packages/create-openui-app/src/lib/resolve-args.ts b/packages/openui-cli/src/lib/resolve-args.ts similarity index 100% rename from packages/create-openui-app/src/lib/resolve-args.ts rename to packages/openui-cli/src/lib/resolve-args.ts diff --git a/packages/create-openui-app/src/templates/openui-chat/.gitignore b/packages/openui-cli/src/templates/openui-chat/.gitignore similarity index 100% rename from packages/create-openui-app/src/templates/openui-chat/.gitignore rename to packages/openui-cli/src/templates/openui-chat/.gitignore diff --git a/packages/create-openui-app/src/templates/openui-chat/README.md b/packages/openui-cli/src/templates/openui-chat/README.md similarity index 89% rename from packages/create-openui-app/src/templates/openui-chat/README.md rename to packages/openui-cli/src/templates/openui-chat/README.md index 78fd7b43a..03a161d8b 100644 --- a/packages/create-openui-app/src/templates/openui-chat/README.md +++ b/packages/openui-cli/src/templates/openui-chat/README.md @@ -1,4 +1,4 @@ -This is an [OpenUI](https://openui.com) Agent Chat project bootstrapped with [`create-openui-app`](https://openui.com/docs/chat/quick-start). +This is an [OpenUI](https://openui.com) Agent Chat project bootstrapped with [`openui-cli`](https://openui.com/docs/chat/quick-start). ## Getting Started diff --git a/packages/create-openui-app/src/templates/openui-chat/eslint.config.mjs b/packages/openui-cli/src/templates/openui-chat/eslint.config.mjs similarity index 100% rename from packages/create-openui-app/src/templates/openui-chat/eslint.config.mjs rename to packages/openui-cli/src/templates/openui-chat/eslint.config.mjs diff --git a/packages/create-openui-app/src/templates/openui-chat/next.config.ts b/packages/openui-cli/src/templates/openui-chat/next.config.ts similarity index 100% rename from packages/create-openui-app/src/templates/openui-chat/next.config.ts rename to packages/openui-cli/src/templates/openui-chat/next.config.ts diff --git a/packages/create-openui-app/src/templates/openui-chat/package.json b/packages/openui-cli/src/templates/openui-chat/package.json similarity index 100% rename from packages/create-openui-app/src/templates/openui-chat/package.json rename to packages/openui-cli/src/templates/openui-chat/package.json diff --git a/packages/create-openui-app/src/templates/openui-chat/postcss.config.mjs b/packages/openui-cli/src/templates/openui-chat/postcss.config.mjs similarity index 100% rename from packages/create-openui-app/src/templates/openui-chat/postcss.config.mjs rename to packages/openui-cli/src/templates/openui-chat/postcss.config.mjs diff --git a/packages/create-openui-app/src/templates/openui-chat/src/app/api/chat/route.ts b/packages/openui-cli/src/templates/openui-chat/src/app/api/chat/route.ts similarity index 100% rename from packages/create-openui-app/src/templates/openui-chat/src/app/api/chat/route.ts rename to packages/openui-cli/src/templates/openui-chat/src/app/api/chat/route.ts diff --git a/packages/create-openui-app/src/templates/openui-chat/src/app/globals.css b/packages/openui-cli/src/templates/openui-chat/src/app/globals.css similarity index 100% rename from packages/create-openui-app/src/templates/openui-chat/src/app/globals.css rename to packages/openui-cli/src/templates/openui-chat/src/app/globals.css diff --git a/packages/create-openui-app/src/templates/openui-chat/src/app/layout.tsx b/packages/openui-cli/src/templates/openui-chat/src/app/layout.tsx similarity index 100% rename from packages/create-openui-app/src/templates/openui-chat/src/app/layout.tsx rename to packages/openui-cli/src/templates/openui-chat/src/app/layout.tsx diff --git a/packages/create-openui-app/src/templates/openui-chat/src/app/page.tsx b/packages/openui-cli/src/templates/openui-chat/src/app/page.tsx similarity index 100% rename from packages/create-openui-app/src/templates/openui-chat/src/app/page.tsx rename to packages/openui-cli/src/templates/openui-chat/src/app/page.tsx diff --git a/packages/create-openui-app/src/templates/openui-chat/tsconfig.json b/packages/openui-cli/src/templates/openui-chat/tsconfig.json similarity index 100% rename from packages/create-openui-app/src/templates/openui-chat/tsconfig.json rename to packages/openui-cli/src/templates/openui-chat/tsconfig.json diff --git a/packages/create-openui-app/tsconfig.json b/packages/openui-cli/tsconfig.json similarity index 100% rename from packages/create-openui-app/tsconfig.json rename to packages/openui-cli/tsconfig.json diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 70b0c0d85..eca9039ae 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -176,7 +176,20 @@ importers: specifier: ^5 version: 5.9.3 - packages/create-openui-app: + packages/lang-react: + dependencies: + react: + specifier: '>=19.0.0' + version: 19.2.4 + zod: + specifier: ^4.0.0 + version: 4.3.6 + devDependencies: + '@types/react': + specifier: ^19.0.0 + version: 19.2.14 + + packages/openui-cli: dependencies: '@inquirer/core': specifier: ^11.1.5 @@ -187,26 +200,13 @@ importers: commander: specifier: ^14.0.3 version: 14.0.3 + esbuild: + specifier: ^0.25.10 + version: 0.25.12 devDependencies: '@types/node': specifier: ^22.15.32 version: 22.15.32 - tsx: - specifier: ^4.19.2 - version: 4.20.3 - - packages/lang-react: - dependencies: - react: - specifier: '>=19.0.0' - version: 19.2.4 - zod: - specifier: ^4.0.0 - version: 4.3.6 - devDependencies: - '@types/react': - specifier: ^19.0.0 - version: 19.2.14 packages/react-headless: dependencies: @@ -349,7 +349,7 @@ importers: version: 8.6.14(storybook@8.6.14(prettier@3.5.3)) '@storybook/addon-styling-webpack': specifier: ^1.0.1 - version: 1.0.1(storybook@8.6.14(prettier@3.5.3))(webpack@5.99.9(esbuild@0.25.5)) + version: 1.0.1(storybook@8.6.14(prettier@3.5.3))(webpack@5.99.9(esbuild@0.25.12)) '@storybook/addon-themes': specifier: ^8.5.3 version: 8.6.14(storybook@8.6.14(prettier@3.5.3)) @@ -667,8 +667,8 @@ packages: cpu: [ppc64] os: [aix] - '@esbuild/aix-ppc64@0.25.5': - resolution: {integrity: sha512-9o3TMmpmftaCMepOdA5k/yDw8SfInyzWWTjYTFCX3kPSDJMROQTb8jg+h9Cnwnmm1vOzvxN7gIfB5V2ewpjtGA==} + '@esbuild/aix-ppc64@0.25.12': + resolution: {integrity: sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==} engines: {node: '>=18'} cpu: [ppc64] os: [aix] @@ -685,8 +685,8 @@ packages: cpu: [arm64] os: [android] - '@esbuild/android-arm64@0.25.5': - resolution: {integrity: sha512-VGzGhj4lJO+TVGV1v8ntCZWJktV7SGCs3Pn1GRWI1SBFtRALoomm8k5E9Pmwg3HOAal2VDc2F9+PM/rEY6oIDg==} + '@esbuild/android-arm64@0.25.12': + resolution: {integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==} engines: {node: '>=18'} cpu: [arm64] os: [android] @@ -703,8 +703,8 @@ packages: cpu: [arm] os: [android] - '@esbuild/android-arm@0.25.5': - resolution: {integrity: sha512-AdJKSPeEHgi7/ZhuIPtcQKr5RQdo6OO2IL87JkianiMYMPbCtot9fxPbrMiBADOWWm3T2si9stAiVsGbTQFkbA==} + '@esbuild/android-arm@0.25.12': + resolution: {integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==} engines: {node: '>=18'} cpu: [arm] os: [android] @@ -721,8 +721,8 @@ packages: cpu: [x64] os: [android] - '@esbuild/android-x64@0.25.5': - resolution: {integrity: sha512-D2GyJT1kjvO//drbRT3Hib9XPwQeWd9vZoBJn+bu/lVsOZ13cqNdDeqIF/xQ5/VmWvMduP6AmXvylO/PIc2isw==} + '@esbuild/android-x64@0.25.12': + resolution: {integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==} engines: {node: '>=18'} cpu: [x64] os: [android] @@ -739,8 +739,8 @@ packages: cpu: [arm64] os: [darwin] - '@esbuild/darwin-arm64@0.25.5': - resolution: {integrity: sha512-GtaBgammVvdF7aPIgH2jxMDdivezgFu6iKpmT+48+F8Hhg5J/sfnDieg0aeG/jfSvkYQU2/pceFPDKlqZzwnfQ==} + '@esbuild/darwin-arm64@0.25.12': + resolution: {integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==} engines: {node: '>=18'} cpu: [arm64] os: [darwin] @@ -757,8 +757,8 @@ packages: cpu: [x64] os: [darwin] - '@esbuild/darwin-x64@0.25.5': - resolution: {integrity: sha512-1iT4FVL0dJ76/q1wd7XDsXrSW+oLoquptvh4CLR4kITDtqi2e/xwXwdCVH8hVHU43wgJdsq7Gxuzcs6Iq/7bxQ==} + '@esbuild/darwin-x64@0.25.12': + resolution: {integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==} engines: {node: '>=18'} cpu: [x64] os: [darwin] @@ -775,8 +775,8 @@ packages: cpu: [arm64] os: [freebsd] - '@esbuild/freebsd-arm64@0.25.5': - resolution: {integrity: sha512-nk4tGP3JThz4La38Uy/gzyXtpkPW8zSAmoUhK9xKKXdBCzKODMc2adkB2+8om9BDYugz+uGV7sLmpTYzvmz6Sw==} + '@esbuild/freebsd-arm64@0.25.12': + resolution: {integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==} engines: {node: '>=18'} cpu: [arm64] os: [freebsd] @@ -793,8 +793,8 @@ packages: cpu: [x64] os: [freebsd] - '@esbuild/freebsd-x64@0.25.5': - resolution: {integrity: sha512-PrikaNjiXdR2laW6OIjlbeuCPrPaAl0IwPIaRv+SMV8CiM8i2LqVUHFC1+8eORgWyY7yhQY+2U2fA55mBzReaw==} + '@esbuild/freebsd-x64@0.25.12': + resolution: {integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==} engines: {node: '>=18'} cpu: [x64] os: [freebsd] @@ -811,8 +811,8 @@ packages: cpu: [arm64] os: [linux] - '@esbuild/linux-arm64@0.25.5': - resolution: {integrity: sha512-Z9kfb1v6ZlGbWj8EJk9T6czVEjjq2ntSYLY2cw6pAZl4oKtfgQuS4HOq41M/BcoLPzrUbNd+R4BXFyH//nHxVg==} + '@esbuild/linux-arm64@0.25.12': + resolution: {integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==} engines: {node: '>=18'} cpu: [arm64] os: [linux] @@ -829,8 +829,8 @@ packages: cpu: [arm] os: [linux] - '@esbuild/linux-arm@0.25.5': - resolution: {integrity: sha512-cPzojwW2okgh7ZlRpcBEtsX7WBuqbLrNXqLU89GxWbNt6uIg78ET82qifUy3W6OVww6ZWobWub5oqZOVtwolfw==} + '@esbuild/linux-arm@0.25.12': + resolution: {integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==} engines: {node: '>=18'} cpu: [arm] os: [linux] @@ -847,8 +847,8 @@ packages: cpu: [ia32] os: [linux] - '@esbuild/linux-ia32@0.25.5': - resolution: {integrity: sha512-sQ7l00M8bSv36GLV95BVAdhJ2QsIbCuCjh/uYrWiMQSUuV+LpXwIqhgJDcvMTj+VsQmqAHL2yYaasENvJ7CDKA==} + '@esbuild/linux-ia32@0.25.12': + resolution: {integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==} engines: {node: '>=18'} cpu: [ia32] os: [linux] @@ -865,8 +865,8 @@ packages: cpu: [loong64] os: [linux] - '@esbuild/linux-loong64@0.25.5': - resolution: {integrity: sha512-0ur7ae16hDUC4OL5iEnDb0tZHDxYmuQyhKhsPBV8f99f6Z9KQM02g33f93rNH5A30agMS46u2HP6qTdEt6Q1kg==} + '@esbuild/linux-loong64@0.25.12': + resolution: {integrity: sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==} engines: {node: '>=18'} cpu: [loong64] os: [linux] @@ -883,8 +883,8 @@ packages: cpu: [mips64el] os: [linux] - '@esbuild/linux-mips64el@0.25.5': - resolution: {integrity: sha512-kB/66P1OsHO5zLz0i6X0RxlQ+3cu0mkxS3TKFvkb5lin6uwZ/ttOkP3Z8lfR9mJOBk14ZwZ9182SIIWFGNmqmg==} + '@esbuild/linux-mips64el@0.25.12': + resolution: {integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==} engines: {node: '>=18'} cpu: [mips64el] os: [linux] @@ -901,8 +901,8 @@ packages: cpu: [ppc64] os: [linux] - '@esbuild/linux-ppc64@0.25.5': - resolution: {integrity: sha512-UZCmJ7r9X2fe2D6jBmkLBMQetXPXIsZjQJCjgwpVDz+YMcS6oFR27alkgGv3Oqkv07bxdvw7fyB71/olceJhkQ==} + '@esbuild/linux-ppc64@0.25.12': + resolution: {integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==} engines: {node: '>=18'} cpu: [ppc64] os: [linux] @@ -919,8 +919,8 @@ packages: cpu: [riscv64] os: [linux] - '@esbuild/linux-riscv64@0.25.5': - resolution: {integrity: sha512-kTxwu4mLyeOlsVIFPfQo+fQJAV9mh24xL+y+Bm6ej067sYANjyEw1dNHmvoqxJUCMnkBdKpvOn0Ahql6+4VyeA==} + '@esbuild/linux-riscv64@0.25.12': + resolution: {integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==} engines: {node: '>=18'} cpu: [riscv64] os: [linux] @@ -937,8 +937,8 @@ packages: cpu: [s390x] os: [linux] - '@esbuild/linux-s390x@0.25.5': - resolution: {integrity: sha512-K2dSKTKfmdh78uJ3NcWFiqyRrimfdinS5ErLSn3vluHNeHVnBAFWC8a4X5N+7FgVE1EjXS1QDZbpqZBjfrqMTQ==} + '@esbuild/linux-s390x@0.25.12': + resolution: {integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==} engines: {node: '>=18'} cpu: [s390x] os: [linux] @@ -955,8 +955,8 @@ packages: cpu: [x64] os: [linux] - '@esbuild/linux-x64@0.25.5': - resolution: {integrity: sha512-uhj8N2obKTE6pSZ+aMUbqq+1nXxNjZIIjCjGLfsWvVpy7gKCOL6rsY1MhRh9zLtUtAI7vpgLMK6DxjO8Qm9lJw==} + '@esbuild/linux-x64@0.25.12': + resolution: {integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==} engines: {node: '>=18'} cpu: [x64] os: [linux] @@ -967,8 +967,8 @@ packages: cpu: [x64] os: [linux] - '@esbuild/netbsd-arm64@0.25.5': - resolution: {integrity: sha512-pwHtMP9viAy1oHPvgxtOv+OkduK5ugofNTVDilIzBLpoWAM16r7b/mxBvfpuQDpRQFMfuVr5aLcn4yveGvBZvw==} + '@esbuild/netbsd-arm64@0.25.12': + resolution: {integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==} engines: {node: '>=18'} cpu: [arm64] os: [netbsd] @@ -985,8 +985,8 @@ packages: cpu: [x64] os: [netbsd] - '@esbuild/netbsd-x64@0.25.5': - resolution: {integrity: sha512-WOb5fKrvVTRMfWFNCroYWWklbnXH0Q5rZppjq0vQIdlsQKuw6mdSihwSo4RV/YdQ5UCKKvBy7/0ZZYLBZKIbwQ==} + '@esbuild/netbsd-x64@0.25.12': + resolution: {integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==} engines: {node: '>=18'} cpu: [x64] os: [netbsd] @@ -997,8 +997,8 @@ packages: cpu: [x64] os: [netbsd] - '@esbuild/openbsd-arm64@0.25.5': - resolution: {integrity: sha512-7A208+uQKgTxHd0G0uqZO8UjK2R0DDb4fDmERtARjSHWxqMTye4Erz4zZafx7Di9Cv+lNHYuncAkiGFySoD+Mw==} + '@esbuild/openbsd-arm64@0.25.12': + resolution: {integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==} engines: {node: '>=18'} cpu: [arm64] os: [openbsd] @@ -1015,8 +1015,8 @@ packages: cpu: [x64] os: [openbsd] - '@esbuild/openbsd-x64@0.25.5': - resolution: {integrity: sha512-G4hE405ErTWraiZ8UiSoesH8DaCsMm0Cay4fsFWOOUcz8b8rC6uCvnagr+gnioEjWn0wC+o1/TAHt+It+MpIMg==} + '@esbuild/openbsd-x64@0.25.12': + resolution: {integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==} engines: {node: '>=18'} cpu: [x64] os: [openbsd] @@ -1027,6 +1027,12 @@ packages: cpu: [x64] os: [openbsd] + '@esbuild/openharmony-arm64@0.25.12': + resolution: {integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openharmony] + '@esbuild/openharmony-arm64@0.27.3': resolution: {integrity: sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==} engines: {node: '>=18'} @@ -1039,8 +1045,8 @@ packages: cpu: [x64] os: [sunos] - '@esbuild/sunos-x64@0.25.5': - resolution: {integrity: sha512-l+azKShMy7FxzY0Rj4RCt5VD/q8mG/e+mDivgspo+yL8zW7qEwctQ6YqKX34DTEleFAvCIUviCFX1SDZRSyMQA==} + '@esbuild/sunos-x64@0.25.12': + resolution: {integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==} engines: {node: '>=18'} cpu: [x64] os: [sunos] @@ -1057,8 +1063,8 @@ packages: cpu: [arm64] os: [win32] - '@esbuild/win32-arm64@0.25.5': - resolution: {integrity: sha512-O2S7SNZzdcFG7eFKgvwUEZ2VG9D/sn/eIiz8XRZ1Q/DO5a3s76Xv0mdBzVM5j5R639lXQmPmSo0iRpHqUUrsxw==} + '@esbuild/win32-arm64@0.25.12': + resolution: {integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==} engines: {node: '>=18'} cpu: [arm64] os: [win32] @@ -1075,8 +1081,8 @@ packages: cpu: [ia32] os: [win32] - '@esbuild/win32-ia32@0.25.5': - resolution: {integrity: sha512-onOJ02pqs9h1iMJ1PQphR+VZv8qBMQ77Klcsqv9CNW2w6yLqoURLcgERAIurY6QE63bbLuqgP9ATqajFLK5AMQ==} + '@esbuild/win32-ia32@0.25.12': + resolution: {integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==} engines: {node: '>=18'} cpu: [ia32] os: [win32] @@ -1093,8 +1099,8 @@ packages: cpu: [x64] os: [win32] - '@esbuild/win32-x64@0.25.5': - resolution: {integrity: sha512-TXv6YnJ8ZMVdX+SXWVBo/0p8LTcrUYngpWjvm91TMjjBQii7Oz11Lw5lbDV5Y0TzuhSJHwiH4hEtC1I42mMS0g==} + '@esbuild/win32-x64@0.25.12': + resolution: {integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==} engines: {node: '>=18'} cpu: [x64] os: [win32] @@ -4020,8 +4026,8 @@ packages: engines: {node: '>=12'} hasBin: true - esbuild@0.25.5: - resolution: {integrity: sha512-P8OtKZRv/5J5hhz0cUAdu/cLuPIKXpQl1R9pZtvmHWQvrAUVd0UNIPT4IB4W3rNOqVO0rlqHmCIbSwxh/c9yUQ==} + esbuild@0.25.12: + resolution: {integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==} engines: {node: '>=18'} hasBin: true @@ -7106,7 +7112,7 @@ snapshots: '@esbuild/aix-ppc64@0.21.5': optional: true - '@esbuild/aix-ppc64@0.25.5': + '@esbuild/aix-ppc64@0.25.12': optional: true '@esbuild/aix-ppc64@0.27.3': @@ -7115,7 +7121,7 @@ snapshots: '@esbuild/android-arm64@0.21.5': optional: true - '@esbuild/android-arm64@0.25.5': + '@esbuild/android-arm64@0.25.12': optional: true '@esbuild/android-arm64@0.27.3': @@ -7124,7 +7130,7 @@ snapshots: '@esbuild/android-arm@0.21.5': optional: true - '@esbuild/android-arm@0.25.5': + '@esbuild/android-arm@0.25.12': optional: true '@esbuild/android-arm@0.27.3': @@ -7133,7 +7139,7 @@ snapshots: '@esbuild/android-x64@0.21.5': optional: true - '@esbuild/android-x64@0.25.5': + '@esbuild/android-x64@0.25.12': optional: true '@esbuild/android-x64@0.27.3': @@ -7142,7 +7148,7 @@ snapshots: '@esbuild/darwin-arm64@0.21.5': optional: true - '@esbuild/darwin-arm64@0.25.5': + '@esbuild/darwin-arm64@0.25.12': optional: true '@esbuild/darwin-arm64@0.27.3': @@ -7151,7 +7157,7 @@ snapshots: '@esbuild/darwin-x64@0.21.5': optional: true - '@esbuild/darwin-x64@0.25.5': + '@esbuild/darwin-x64@0.25.12': optional: true '@esbuild/darwin-x64@0.27.3': @@ -7160,7 +7166,7 @@ snapshots: '@esbuild/freebsd-arm64@0.21.5': optional: true - '@esbuild/freebsd-arm64@0.25.5': + '@esbuild/freebsd-arm64@0.25.12': optional: true '@esbuild/freebsd-arm64@0.27.3': @@ -7169,7 +7175,7 @@ snapshots: '@esbuild/freebsd-x64@0.21.5': optional: true - '@esbuild/freebsd-x64@0.25.5': + '@esbuild/freebsd-x64@0.25.12': optional: true '@esbuild/freebsd-x64@0.27.3': @@ -7178,7 +7184,7 @@ snapshots: '@esbuild/linux-arm64@0.21.5': optional: true - '@esbuild/linux-arm64@0.25.5': + '@esbuild/linux-arm64@0.25.12': optional: true '@esbuild/linux-arm64@0.27.3': @@ -7187,7 +7193,7 @@ snapshots: '@esbuild/linux-arm@0.21.5': optional: true - '@esbuild/linux-arm@0.25.5': + '@esbuild/linux-arm@0.25.12': optional: true '@esbuild/linux-arm@0.27.3': @@ -7196,7 +7202,7 @@ snapshots: '@esbuild/linux-ia32@0.21.5': optional: true - '@esbuild/linux-ia32@0.25.5': + '@esbuild/linux-ia32@0.25.12': optional: true '@esbuild/linux-ia32@0.27.3': @@ -7205,7 +7211,7 @@ snapshots: '@esbuild/linux-loong64@0.21.5': optional: true - '@esbuild/linux-loong64@0.25.5': + '@esbuild/linux-loong64@0.25.12': optional: true '@esbuild/linux-loong64@0.27.3': @@ -7214,7 +7220,7 @@ snapshots: '@esbuild/linux-mips64el@0.21.5': optional: true - '@esbuild/linux-mips64el@0.25.5': + '@esbuild/linux-mips64el@0.25.12': optional: true '@esbuild/linux-mips64el@0.27.3': @@ -7223,7 +7229,7 @@ snapshots: '@esbuild/linux-ppc64@0.21.5': optional: true - '@esbuild/linux-ppc64@0.25.5': + '@esbuild/linux-ppc64@0.25.12': optional: true '@esbuild/linux-ppc64@0.27.3': @@ -7232,7 +7238,7 @@ snapshots: '@esbuild/linux-riscv64@0.21.5': optional: true - '@esbuild/linux-riscv64@0.25.5': + '@esbuild/linux-riscv64@0.25.12': optional: true '@esbuild/linux-riscv64@0.27.3': @@ -7241,7 +7247,7 @@ snapshots: '@esbuild/linux-s390x@0.21.5': optional: true - '@esbuild/linux-s390x@0.25.5': + '@esbuild/linux-s390x@0.25.12': optional: true '@esbuild/linux-s390x@0.27.3': @@ -7250,13 +7256,13 @@ snapshots: '@esbuild/linux-x64@0.21.5': optional: true - '@esbuild/linux-x64@0.25.5': + '@esbuild/linux-x64@0.25.12': optional: true '@esbuild/linux-x64@0.27.3': optional: true - '@esbuild/netbsd-arm64@0.25.5': + '@esbuild/netbsd-arm64@0.25.12': optional: true '@esbuild/netbsd-arm64@0.27.3': @@ -7265,13 +7271,13 @@ snapshots: '@esbuild/netbsd-x64@0.21.5': optional: true - '@esbuild/netbsd-x64@0.25.5': + '@esbuild/netbsd-x64@0.25.12': optional: true '@esbuild/netbsd-x64@0.27.3': optional: true - '@esbuild/openbsd-arm64@0.25.5': + '@esbuild/openbsd-arm64@0.25.12': optional: true '@esbuild/openbsd-arm64@0.27.3': @@ -7280,19 +7286,22 @@ snapshots: '@esbuild/openbsd-x64@0.21.5': optional: true - '@esbuild/openbsd-x64@0.25.5': + '@esbuild/openbsd-x64@0.25.12': optional: true '@esbuild/openbsd-x64@0.27.3': optional: true + '@esbuild/openharmony-arm64@0.25.12': + optional: true + '@esbuild/openharmony-arm64@0.27.3': optional: true '@esbuild/sunos-x64@0.21.5': optional: true - '@esbuild/sunos-x64@0.25.5': + '@esbuild/sunos-x64@0.25.12': optional: true '@esbuild/sunos-x64@0.27.3': @@ -7301,7 +7310,7 @@ snapshots: '@esbuild/win32-arm64@0.21.5': optional: true - '@esbuild/win32-arm64@0.25.5': + '@esbuild/win32-arm64@0.25.12': optional: true '@esbuild/win32-arm64@0.27.3': @@ -7310,7 +7319,7 @@ snapshots: '@esbuild/win32-ia32@0.21.5': optional: true - '@esbuild/win32-ia32@0.25.5': + '@esbuild/win32-ia32@0.25.12': optional: true '@esbuild/win32-ia32@0.27.3': @@ -7319,7 +7328,7 @@ snapshots: '@esbuild/win32-x64@0.21.5': optional: true - '@esbuild/win32-x64@0.25.5': + '@esbuild/win32-x64@0.25.12': optional: true '@esbuild/win32-x64@0.27.3': @@ -8870,10 +8879,10 @@ snapshots: storybook: 8.6.14(prettier@3.5.3) ts-dedent: 2.2.0 - '@storybook/addon-styling-webpack@1.0.1(storybook@8.6.14(prettier@3.5.3))(webpack@5.99.9(esbuild@0.25.5))': + '@storybook/addon-styling-webpack@1.0.1(storybook@8.6.14(prettier@3.5.3))(webpack@5.99.9(esbuild@0.25.12))': dependencies: '@storybook/node-logger': 8.6.14(storybook@8.6.14(prettier@3.5.3)) - webpack: 5.99.9(esbuild@0.25.5) + webpack: 5.99.9(esbuild@0.25.12) transitivePeerDependencies: - storybook @@ -8921,8 +8930,8 @@ snapshots: '@storybook/theming': 8.6.14(storybook@8.6.14(prettier@3.5.3)) better-opn: 3.0.2 browser-assert: 1.2.1 - esbuild: 0.25.5 - esbuild-register: 3.6.0(esbuild@0.25.5) + esbuild: 0.25.12 + esbuild-register: 3.6.0(esbuild@0.25.12) jsdoc-type-pratt-parser: 4.1.0 process: 0.11.10 recast: 0.23.11 @@ -10360,10 +10369,10 @@ snapshots: esast-util-from-estree: 2.0.0 vfile-message: 4.0.2 - esbuild-register@3.6.0(esbuild@0.25.5): + esbuild-register@3.6.0(esbuild@0.25.12): dependencies: debug: 4.4.3 - esbuild: 0.25.5 + esbuild: 0.25.12 transitivePeerDependencies: - supports-color @@ -10393,33 +10402,34 @@ snapshots: '@esbuild/win32-ia32': 0.21.5 '@esbuild/win32-x64': 0.21.5 - esbuild@0.25.5: - optionalDependencies: - '@esbuild/aix-ppc64': 0.25.5 - '@esbuild/android-arm': 0.25.5 - '@esbuild/android-arm64': 0.25.5 - '@esbuild/android-x64': 0.25.5 - '@esbuild/darwin-arm64': 0.25.5 - '@esbuild/darwin-x64': 0.25.5 - '@esbuild/freebsd-arm64': 0.25.5 - '@esbuild/freebsd-x64': 0.25.5 - '@esbuild/linux-arm': 0.25.5 - '@esbuild/linux-arm64': 0.25.5 - '@esbuild/linux-ia32': 0.25.5 - '@esbuild/linux-loong64': 0.25.5 - '@esbuild/linux-mips64el': 0.25.5 - '@esbuild/linux-ppc64': 0.25.5 - '@esbuild/linux-riscv64': 0.25.5 - '@esbuild/linux-s390x': 0.25.5 - '@esbuild/linux-x64': 0.25.5 - '@esbuild/netbsd-arm64': 0.25.5 - '@esbuild/netbsd-x64': 0.25.5 - '@esbuild/openbsd-arm64': 0.25.5 - '@esbuild/openbsd-x64': 0.25.5 - '@esbuild/sunos-x64': 0.25.5 - '@esbuild/win32-arm64': 0.25.5 - '@esbuild/win32-ia32': 0.25.5 - '@esbuild/win32-x64': 0.25.5 + esbuild@0.25.12: + optionalDependencies: + '@esbuild/aix-ppc64': 0.25.12 + '@esbuild/android-arm': 0.25.12 + '@esbuild/android-arm64': 0.25.12 + '@esbuild/android-x64': 0.25.12 + '@esbuild/darwin-arm64': 0.25.12 + '@esbuild/darwin-x64': 0.25.12 + '@esbuild/freebsd-arm64': 0.25.12 + '@esbuild/freebsd-x64': 0.25.12 + '@esbuild/linux-arm': 0.25.12 + '@esbuild/linux-arm64': 0.25.12 + '@esbuild/linux-ia32': 0.25.12 + '@esbuild/linux-loong64': 0.25.12 + '@esbuild/linux-mips64el': 0.25.12 + '@esbuild/linux-ppc64': 0.25.12 + '@esbuild/linux-riscv64': 0.25.12 + '@esbuild/linux-s390x': 0.25.12 + '@esbuild/linux-x64': 0.25.12 + '@esbuild/netbsd-arm64': 0.25.12 + '@esbuild/netbsd-x64': 0.25.12 + '@esbuild/openbsd-arm64': 0.25.12 + '@esbuild/openbsd-x64': 0.25.12 + '@esbuild/openharmony-arm64': 0.25.12 + '@esbuild/sunos-x64': 0.25.12 + '@esbuild/win32-arm64': 0.25.12 + '@esbuild/win32-ia32': 0.25.12 + '@esbuild/win32-x64': 0.25.12 esbuild@0.27.3: optionalDependencies: @@ -13554,16 +13564,16 @@ snapshots: tapable@2.3.0: {} - terser-webpack-plugin@5.3.14(esbuild@0.25.5)(webpack@5.99.9(esbuild@0.25.5)): + terser-webpack-plugin@5.3.14(esbuild@0.25.12)(webpack@5.99.9(esbuild@0.25.12)): dependencies: '@jridgewell/trace-mapping': 0.3.31 jest-worker: 27.5.1 schema-utils: 4.3.2 serialize-javascript: 6.0.2 terser: 5.43.0 - webpack: 5.99.9(esbuild@0.25.5) + webpack: 5.99.9(esbuild@0.25.12) optionalDependencies: - esbuild: 0.25.5 + esbuild: 0.25.12 terser@5.43.0: dependencies: @@ -13650,7 +13660,7 @@ snapshots: tsx@4.20.3: dependencies: - esbuild: 0.25.5 + esbuild: 0.25.12 get-tsconfig: 4.10.1 optionalDependencies: fsevents: 2.3.3 @@ -13981,7 +13991,7 @@ snapshots: webpack-virtual-modules@0.6.2: {} - webpack@5.99.9(esbuild@0.25.5): + webpack@5.99.9(esbuild@0.25.12): dependencies: '@types/eslint-scope': 3.7.7 '@types/estree': 1.0.8 @@ -14004,7 +14014,7 @@ snapshots: neo-async: 2.6.2 schema-utils: 4.3.2 tapable: 2.3.0 - terser-webpack-plugin: 5.3.14(esbuild@0.25.5)(webpack@5.99.9(esbuild@0.25.5)) + terser-webpack-plugin: 5.3.14(esbuild@0.25.12)(webpack@5.99.9(esbuild@0.25.12)) watchpack: 2.4.4 webpack-sources: 3.3.2 transitivePeerDependencies: