From 26700cef92e13c96362b15813efb399855ef7f59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20K=C3=B6lnberger?= <159939812+ProfRandom92@users.noreply.github.com> Date: Wed, 13 May 2026 12:02:38 +0200 Subject: [PATCH] Build enterprise infrastructure showcase --- showcase/app/README.md | 23 +- showcase/app/index.html | 16 + showcase/app/netlify.toml | 11 + showcase/app/package-lock.json | 1830 ++++++++++++++++++++++ showcase/app/package.json | 21 +- showcase/app/public/index.html | 251 --- showcase/app/public/styles.css | 265 ---- showcase/app/scripts/build.mjs | 10 - showcase/app/scripts/validate-static.mjs | 43 +- showcase/app/src/main.tsx | 392 +++++ showcase/app/src/styles.css | 171 ++ showcase/app/tsconfig.json | 20 + showcase/app/tsconfig.node.json | 11 + showcase/app/vercel.json | 3 +- showcase/app/vite.config.ts | 10 + 15 files changed, 2522 insertions(+), 555 deletions(-) create mode 100644 showcase/app/index.html create mode 100644 showcase/app/netlify.toml create mode 100644 showcase/app/package-lock.json delete mode 100644 showcase/app/public/index.html delete mode 100644 showcase/app/public/styles.css delete mode 100644 showcase/app/scripts/build.mjs create mode 100644 showcase/app/src/main.tsx create mode 100644 showcase/app/src/styles.css create mode 100644 showcase/app/tsconfig.json create mode 100644 showcase/app/tsconfig.node.json create mode 100644 showcase/app/vite.config.ts diff --git a/showcase/app/README.md b/showcase/app/README.md index 23a37b4..2adcff0 100644 --- a/showcase/app/README.md +++ b/showcase/app/README.md @@ -1,33 +1,34 @@ -# Comptextv7 Vercel Showcase App +# Comptextv7 Enterprise Infrastructure Showcase -This is the dedicated SHOWCASE-02 frontend for Comptextv7. It is intentionally separate from the operational dashboard and Daimler-style experiment surfaces. +This is the dedicated enterprise-grade infrastructure showcase for Comptextv7. It presents deterministic token compression, replay verification, artifact lineage, CI-backed validation, operational telemetry, and reviewer walkthroughs as a restrained internal platform surface. ## Deployment posture -- Static-first HTML/CSS application. -- Vercel-compatible through `vercel.json`. -- No backend, API server, database, or local execution dependency. -- No Chilli/Hatch assets and no core processing logic changes. -- No fake metrics or fake validation claims; the page points reviewers to repository documents and CI artifacts. +- React + TypeScript + Vite single-page application. +- Netlify-compatible preview and production deployment through `netlify.toml`. +- Vercel compatibility is retained for existing showcase deployments through `vercel.json`. +- Static artifact output only; no backend, API server, database, secrets, or production customer data. +- Operational semantics are represented with stable IDs: `RUN-2026-05-13-8842`, `ART-CTX7-2F91A`, `REP-CONSISTENCY-441`, and `GH-ACT-551882`. ## Local checks ```bash npm run validate +npm run typecheck npm run build ``` -`npm run build` copies `public/` into `dist/`, which is the configured Vercel output directory. +`npm run build` emits the deployable static application into `dist/`. -## Vercel setup +## Netlify setup -Use `showcase/app` as the Vercel project root. The configured build command is: +Use `showcase/app` as the Netlify base directory. The configured build command is: ```bash npm run build ``` -The configured output directory is: +The configured publish directory is: ```bash dist diff --git a/showcase/app/index.html b/showcase/app/index.html new file mode 100644 index 0000000..5a3133e --- /dev/null +++ b/showcase/app/index.html @@ -0,0 +1,16 @@ + + + + + + + Comptextv7 Enterprise Infrastructure Showcase + + +
+ + + diff --git a/showcase/app/netlify.toml b/showcase/app/netlify.toml new file mode 100644 index 0000000..f6c3f02 --- /dev/null +++ b/showcase/app/netlify.toml @@ -0,0 +1,11 @@ +[build] + command = "npm run build" + publish = "dist" + +[build.environment] + NODE_VERSION = "22" + +[[redirects]] + from = "/*" + to = "/index.html" + status = 200 diff --git a/showcase/app/package-lock.json b/showcase/app/package-lock.json new file mode 100644 index 0000000..4b49397 --- /dev/null +++ b/showcase/app/package-lock.json @@ -0,0 +1,1830 @@ +{ + "name": "comptextv7-enterprise-showcase", + "version": "0.2.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "comptextv7-enterprise-showcase", + "version": "0.2.0", + "dependencies": { + "lucide-react": "^0.555.0", + "react": "^19.2.0", + "react-dom": "^19.2.0" + }, + "devDependencies": { + "@types/react": "^19.2.6", + "@types/react-dom": "^19.2.3", + "@vitejs/plugin-react": "^5.1.1", + "typescript": "^5.9.3", + "vite": "^7.2.4" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.0.tgz", + "integrity": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.28.5", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.29.3", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.3.tgz", + "integrity": "sha512-LIVqM46zQWZhj17qA8wb4nW/ixr2y1Nw+r1etiAWgRM6U1IqP+LNhL1yg440jYZR72jCWcWbLWzIosH+uP1fqg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.0.tgz", + "integrity": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.29.0", + "@babel/generator": "^7.29.0", + "@babel/helper-compilation-targets": "^7.28.6", + "@babel/helper-module-transforms": "^7.28.6", + "@babel/helpers": "^7.28.6", + "@babel/parser": "^7.29.0", + "@babel/template": "^7.28.6", + "@babel/traverse": "^7.29.0", + "@babel/types": "^7.29.0", + "@jridgewell/remapping": "^2.3.5", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/generator": { + "version": "7.29.1", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.1.tgz", + "integrity": "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.29.0", + "@babel/types": "^7.29.0", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.28.6.tgz", + "integrity": "sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.28.6", + "@babel/helper-validator-option": "^7.27.1", + "browserslist": "^4.24.0", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-globals": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", + "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.28.6.tgz", + "integrity": "sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.28.6", + "@babel/types": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.6.tgz", + "integrity": "sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.28.6", + "@babel/helper-validator-identifier": "^7.28.5", + "@babel/traverse": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.28.6.tgz", + "integrity": "sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", + "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.29.2", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.29.2.tgz", + "integrity": "sha512-HoGuUs4sCZNezVEKdVcwqmZN8GoHirLUcLaYVNBK2J0DadGtdcqgr3BCbvH8+XUo4NGjNl3VOtSjEKNzqfFgKw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/template": "^7.28.6", + "@babel/types": "^7.29.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.29.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.3.tgz", + "integrity": "sha512-b3ctpQwp+PROvU/cttc4OYl4MzfJUWy6FZg+PMXfzmt/+39iHVF0sDfqay8TQM3JA2EUOyKcFZt75jWriQijsA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.29.0" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-self": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz", + "integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-source": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz", + "integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/template": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.28.6.tgz", + "integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.28.6", + "@babel/parser": "^7.28.6", + "@babel/types": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.0.tgz", + "integrity": "sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.29.0", + "@babel/generator": "^7.29.0", + "@babel/helper-globals": "^7.28.0", + "@babel/parser": "^7.29.0", + "@babel/template": "^7.28.6", + "@babel/types": "^7.29.0", + "debug": "^4.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz", + "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.7.tgz", + "integrity": "sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.7.tgz", + "integrity": "sha512-jbPXvB4Yj2yBV7HUfE2KHe4GJX51QplCN1pGbYjvsyCZbQmies29EoJbkEc+vYuU5o45AfQn37vZlyXy4YJ8RQ==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.7.tgz", + "integrity": "sha512-62dPZHpIXzvChfvfLJow3q5dDtiNMkwiRzPylSCfriLvZeq0a1bWChrGx/BbUbPwOrsWKMn8idSllklzBy+dgQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.7.tgz", + "integrity": "sha512-x5VpMODneVDb70PYV2VQOmIUUiBtY3D3mPBG8NxVk5CogneYhkR7MmM3yR/uMdITLrC1ml/NV1rj4bMJuy9MCg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.7.tgz", + "integrity": "sha512-5lckdqeuBPlKUwvoCXIgI2D9/ABmPq3Rdp7IfL70393YgaASt7tbju3Ac+ePVi3KDH6N2RqePfHnXkaDtY9fkw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.7.tgz", + "integrity": "sha512-rYnXrKcXuT7Z+WL5K980jVFdvVKhCHhUwid+dDYQpH+qu+TefcomiMAJpIiC2EM3Rjtq0sO3StMV/+3w3MyyqQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.7.tgz", + "integrity": "sha512-B48PqeCsEgOtzME2GbNM2roU29AMTuOIN91dsMO30t+Ydis3z/3Ngoj5hhnsOSSwNzS+6JppqWsuhTp6E82l2w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.7.tgz", + "integrity": "sha512-jOBDK5XEjA4m5IJK3bpAQF9/Lelu/Z9ZcdhTRLf4cajlB+8VEhFFRjWgfy3M1O4rO2GQ/b2dLwCUGpiF/eATNQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.7.tgz", + "integrity": "sha512-RkT/YXYBTSULo3+af8Ib0ykH8u2MBh57o7q/DAs3lTJlyVQkgQvlrPTnjIzzRPQyavxtPtfg0EopvDyIt0j1rA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.7.tgz", + "integrity": "sha512-RZPHBoxXuNnPQO9rvjh5jdkRmVizktkT7TCDkDmQ0W2SwHInKCAV95GRuvdSvA7w4VMwfCjUiPwDi0ZO6Nfe9A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.7.tgz", + "integrity": "sha512-GA48aKNkyQDbd3KtkplYWT102C5sn/EZTY4XROkxONgruHPU72l+gW+FfF8tf2cFjeHaRbWpOYa/uRBz/Xq1Pg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.7.tgz", + "integrity": "sha512-a4POruNM2oWsD4WKvBSEKGIiWQF8fZOAsycHOt6JBpZ+JN2n2JH9WAv56SOyu9X5IqAjqSIPTaJkqN8F7XOQ5Q==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.7.tgz", + "integrity": "sha512-KabT5I6StirGfIz0FMgl1I+R1H73Gp0ofL9A3nG3i/cYFJzKHhouBV5VWK1CSgKvVaG4q1RNpCTR2LuTVB3fIw==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.7.tgz", + "integrity": "sha512-gRsL4x6wsGHGRqhtI+ifpN/vpOFTQtnbsupUF5R5YTAg+y/lKelYR1hXbnBdzDjGbMYjVJLJTd2OFmMewAgwlQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.7.tgz", + "integrity": "sha512-hL25LbxO1QOngGzu2U5xeXtxXcW+/GvMN3ejANqXkxZ/opySAZMrc+9LY/WyjAan41unrR3YrmtTsUpwT66InQ==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.7.tgz", + "integrity": "sha512-2k8go8Ycu1Kb46vEelhu1vqEP+UeRVj2zY1pSuPdgvbd5ykAw82Lrro28vXUrRmzEsUV0NzCf54yARIK8r0fdw==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.7.tgz", + "integrity": "sha512-hzznmADPt+OmsYzw1EE33ccA+HPdIqiCRq7cQeL1Jlq2gb1+OyWBkMCrYGBJ+sxVzve2ZJEVeePbLM2iEIZSxA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.7.tgz", + "integrity": "sha512-b6pqtrQdigZBwZxAn1UpazEisvwaIDvdbMbmrly7cDTMFnw/+3lVxxCTGOrkPVnsYIosJJXAsILG9XcQS+Yu6w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.7.tgz", + "integrity": "sha512-OfatkLojr6U+WN5EDYuoQhtM+1xco+/6FSzJJnuWiUw5eVcicbyK3dq5EeV/QHT1uy6GoDhGbFpprUiHUYggrw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.7.tgz", + "integrity": "sha512-AFuojMQTxAz75Fo8idVcqoQWEHIXFRbOc1TrVcFSgCZtQfSdc1RXgB3tjOn/krRHENUB4j00bfGjyl2mJrU37A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.7.tgz", + "integrity": "sha512-+A1NJmfM8WNDv5CLVQYJ5PshuRm/4cI6WMZRg1by1GwPIQPCTs1GLEUHwiiQGT5zDdyLiRM/l1G0Pv54gvtKIg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openharmony-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.7.tgz", + "integrity": "sha512-+KrvYb/C8zA9CU/g0sR6w2RBw7IGc5J2BPnc3dYc5VJxHCSF1yNMxTV5LQ7GuKteQXZtspjFbiuW5/dOj7H4Yw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.7.tgz", + "integrity": "sha512-ikktIhFBzQNt/QDyOL580ti9+5mL/YZeUPKU2ivGtGjdTYoqz6jObj6nOMfhASpS4GU4Q/Clh1QtxWAvcYKamA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.7.tgz", + "integrity": "sha512-7yRhbHvPqSpRUV7Q20VuDwbjW5kIMwTHpptuUzV+AA46kiPze5Z7qgt6CLCK3pWFrHeNfDd1VKgyP4O+ng17CA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.7.tgz", + "integrity": "sha512-SmwKXe6VHIyZYbBLJrhOoCJRB/Z1tckzmgTLfFYOfpMAx63BJEaL9ExI8x7v0oAO3Zh6D/Oi1gVxEYr5oUCFhw==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.7.tgz", + "integrity": "sha512-56hiAJPhwQ1R4i+21FVF7V8kSD5zZTdHcVuRFMW0hn753vVfQN8xlx4uOPT4xoGH0Z/oVATuR82AiqSTDIpaHg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.13", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/remapping": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", + "dev": true, + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.31", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@rolldown/pluginutils": { + "version": "1.0.0-rc.3", + "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.3.tgz", + "integrity": "sha512-eybk3TjzzzV97Dlj5c+XrBFW57eTNhzod66y9HrBlzJ6NsCrWCp/2kaPS3K9wJmurBC0Tdw4yPjXKZqlznim3Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.60.3.tgz", + "integrity": "sha512-x35CNW/ANXG3hE/EZpRU8MXX1JDN86hBb2wMGAtltkz7pc6cxgjpy1OMMfDosOQ+2hWqIkag/fGok1Yady9nGw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.60.3.tgz", + "integrity": "sha512-xw3xtkDApIOGayehp2+Rz4zimfkaX65r4t47iy+ymQB2G4iJCBBfj0ogVg5jpvjpn8UWn/+q9tprxleYeNp3Hw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.60.3.tgz", + "integrity": "sha512-vo6Y5Qfpx7/5EaamIwi0WqW2+zfiusVihKatLvtN1VFVy3D13uERk/6gZLU1UiHRL6fDXqj/ELIeVRGnvcTE1g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.60.3.tgz", + "integrity": "sha512-D+0QGcZhBzTN82weOnsSlY7V7+RMmPuF1CkbxyMAGE8+ZHeUjyb76ZiWmBlCu//AQQONvxcqRbwZTajZKqjuOw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.60.3.tgz", + "integrity": "sha512-6HnvHCT7fDyj6R0Ph7A6x8dQS/S38MClRWeDLqc0MdfWkxjiu1HSDYrdPhqSILzjTIC/pnXbbJbo+ft+gy/9hQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.60.3.tgz", + "integrity": "sha512-KHLgC3WKlUYW3ShFKnnosZDOJ0xjg9zp7au3sIm2bs/tGBeC2ipmvRh/N7JKi0t9Ue20C0dpEshi8WUubg+cnA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.60.3.tgz", + "integrity": "sha512-DV6fJoxEYWJOvaZIsok7KrYl0tPvga5OZ2yvKHNNYyk/2roMLqQAbGhr78EQ5YhHpnhLKJD3S1WFusAkmUuV5g==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.60.3.tgz", + "integrity": "sha512-mQKoJAzvuOs6F+TZybQO4GOTSMUu7v0WdxEk24krQ/uUxXoPTtHjuaUuPmFhtBcM4K0ons8nrE3JyhTuCFtT/w==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.60.3.tgz", + "integrity": "sha512-Whjj2qoiJ6+OOJMGptTYazaJvjOJm+iKHpXQM1P3LzGjt7Ff++Tp7nH4N8J/BUA7R9IHfDyx4DJIflifwnbmIA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.60.3.tgz", + "integrity": "sha512-4YTNHKqGng5+yiZt3mg77nmyuCfmNfX4fPmyUapBcIk+BdwSwmCWGXOUxhXbBEkFHtoN5boLj/5NON+u5QC9tg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-gnu": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.60.3.tgz", + "integrity": "sha512-SU3kNlhkpI4UqlUc2VXPGK9o886ZsSeGfMAX2ba2b8DKmMXq4AL7KUrkSWVbb7koVqx41Yczx6dx5PNargIrEA==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-musl": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.60.3.tgz", + "integrity": "sha512-6lDLl5h4TXpB1mTf2rQWnAk/LcXrx9vBfu/DT5TIPhvMhRWaZ5MxkIc8u4lJAmBo6klTe1ywXIUHFjylW505sg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-gnu": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.60.3.tgz", + "integrity": "sha512-BMo8bOw8evlup/8G+cj5xWtPyp93xPdyoSN16Zy90Q2QZ0ZYRhCt6ZJSwbrRzG9HApFabjwj2p25TUPDWrhzqQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-musl": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.60.3.tgz", + "integrity": "sha512-E0L8X1dZN1/Rph+5VPF6Xj2G7JJvMACVXtamTJIDrVI44Y3K+G8gQaMEAavbqCGTa16InptiVrX6eM6pmJ+7qA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.60.3.tgz", + "integrity": "sha512-oZJ/WHaVfHUiRAtmTAeo3DcevNsVvH8mbvodjZy7D5QKvCefO371SiKRpxoDcCxB3PTRTLayWBkvmDQKTcX/sw==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-musl": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.60.3.tgz", + "integrity": "sha512-Dhbyh7j9FybM3YaTgaHmVALwA8AkUwTPccyCQ79TG9AJUsMQqgN1DDEZNr4+QUfwiWvLDumW5vdwzoeUF+TNxQ==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.60.3.tgz", + "integrity": "sha512-cJd1X5XhHHlltkaypz1UcWLA8AcoIi1aWhsvaWDskD1oz2eKCypnqvTQ8ykMNI0RSmm7NkTdSqSSD7zM0xa6Ig==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.60.3.tgz", + "integrity": "sha512-DAZDBHQfG2oQuhY7mc6I3/qB4LU2fQCjRvxbDwd/Jdvb9fypP4IJ4qmtu6lNjes6B531AI8cg1aKC2di97bUxA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.60.3.tgz", + "integrity": "sha512-cRxsE8c13mZOh3vP+wLDxpQBRrOHDIGOWyDL93Sy0Ga8y515fBcC2pjUfFwUe5T7tqvTvWbCpg1URM/AXdWIXA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-openbsd-x64": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.60.3.tgz", + "integrity": "sha512-QaWcIgRxqEdQdhJqW4DJctsH6HCmo5vHxY0krHSX4jMtOqfzC+dqDGuHM87bu4H8JBeibWx7jFz+h6/4C8wA5Q==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ] + }, + "node_modules/@rollup/rollup-openharmony-arm64": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.60.3.tgz", + "integrity": "sha512-AaXwSvUi3QIPtroAUw1t5yHGIyqKEXwH54WUocFolZhpGDruJcs8c+xPNDRn4XiQsS7MEwnYsHW2l0MBLDMkWg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.60.3.tgz", + "integrity": "sha512-65LAKM/bAWDqKNEelHlcHvm2V+Vfb8C6INFxQXRHCvaVN1rJfwr4NvdP4FyzUaLqWfaCGaadf6UbTm8xJeYfEg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.60.3.tgz", + "integrity": "sha512-EEM2gyhBF5MFnI6vMKdX1LAosE627RGBzIoGMdLloPZkXrUN0Ckqgr2Qi8+J3zip/8NVVro3/FjB+tjhZUgUHA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-gnu": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.60.3.tgz", + "integrity": "sha512-E5Eb5H/DpxaoXH++Qkv28RcUJboMopmdDUALBczvHMf7hNIxaDZqwY5lK12UK1BHacSmvupoEWGu+n993Z0y1A==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.60.3.tgz", + "integrity": "sha512-hPt/bgL5cE+Qp+/TPHBqptcAgPzgj46mPcg/16zNUmbQk0j+mOEQV/+Lqu8QRtDV3Ek95Q6FeFITpuhl6OTsAA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@types/babel__core": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.27.0", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz", + "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz", + "integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.28.2" + } + }, + "node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/react": { + "version": "19.2.14", + "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.14.tgz", + "integrity": "sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==", + "dev": true, + "license": "MIT", + "dependencies": { + "csstype": "^3.2.2" + } + }, + "node_modules/@types/react-dom": { + "version": "19.2.3", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz", + "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "@types/react": "^19.2.0" + } + }, + "node_modules/@vitejs/plugin-react": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-5.2.0.tgz", + "integrity": "sha512-YmKkfhOAi3wsB1PhJq5Scj3GXMn3WvtQ/JC0xoopuHoXSdmtdStOpFrYaT1kie2YgFBcIe64ROzMYRjCrYOdYw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.29.0", + "@babel/plugin-transform-react-jsx-self": "^7.27.1", + "@babel/plugin-transform-react-jsx-source": "^7.27.1", + "@rolldown/pluginutils": "1.0.0-rc.3", + "@types/babel__core": "^7.20.5", + "react-refresh": "^0.18.0" + }, + "engines": { + "node": "^20.19.0 || >=22.12.0" + }, + "peerDependencies": { + "vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/baseline-browser-mapping": { + "version": "2.10.29", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.29.tgz", + "integrity": "sha512-Asa2krT+XTPZINCS+2QcyS8WTkObE77RwkydwF7h6DmnKqbvlalz93m/dnphUyCa6SWSP51VgtEUf2FN+gelFQ==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "baseline-browser-mapping": "dist/cli.cjs" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/browserslist": { + "version": "4.28.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.2.tgz", + "integrity": "sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "baseline-browser-mapping": "^2.10.12", + "caniuse-lite": "^1.0.30001782", + "electron-to-chromium": "^1.5.328", + "node-releases": "^2.0.36", + "update-browserslist-db": "^1.2.3" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001792", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001792.tgz", + "integrity": "sha512-hVLMUZFgR4JJ6ACt1uEESvQN1/dBVqPAKY0hgrV70eN3391K6juAfTjKZLKvOMsx8PxA7gsY1/tLMMTcfFLLpw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true, + "license": "MIT" + }, + "node_modules/csstype": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz", + "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/electron-to-chromium": { + "version": "1.5.354", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.354.tgz", + "integrity": "sha512-JaBHwWcfIdmSAfWM5l3uwjGd431j8YEMikZ+K/2nXVuBqJKyZ0f+2h4n4JY5AyNiZmnY9qQr2RU3v9DxDmHMNg==", + "dev": true, + "license": "ISC" + }, + "node_modules/esbuild": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.7.tgz", + "integrity": "sha512-IxpibTjyVnmrIQo5aqNpCgoACA/dTKLTlhMHihVHhdkxKyPO1uBBthumT0rdHmcsk9uMonIWS0m4FljWzILh3w==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.27.7", + "@esbuild/android-arm": "0.27.7", + "@esbuild/android-arm64": "0.27.7", + "@esbuild/android-x64": "0.27.7", + "@esbuild/darwin-arm64": "0.27.7", + "@esbuild/darwin-x64": "0.27.7", + "@esbuild/freebsd-arm64": "0.27.7", + "@esbuild/freebsd-x64": "0.27.7", + "@esbuild/linux-arm": "0.27.7", + "@esbuild/linux-arm64": "0.27.7", + "@esbuild/linux-ia32": "0.27.7", + "@esbuild/linux-loong64": "0.27.7", + "@esbuild/linux-mips64el": "0.27.7", + "@esbuild/linux-ppc64": "0.27.7", + "@esbuild/linux-riscv64": "0.27.7", + "@esbuild/linux-s390x": "0.27.7", + "@esbuild/linux-x64": "0.27.7", + "@esbuild/netbsd-arm64": "0.27.7", + "@esbuild/netbsd-x64": "0.27.7", + "@esbuild/openbsd-arm64": "0.27.7", + "@esbuild/openbsd-x64": "0.27.7", + "@esbuild/openharmony-arm64": "0.27.7", + "@esbuild/sunos-x64": "0.27.7", + "@esbuild/win32-arm64": "0.27.7", + "@esbuild/win32-ia32": "0.27.7", + "@esbuild/win32-x64": "0.27.7" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/fdir": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "dev": true, + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/lucide-react": { + "version": "0.555.0", + "resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-0.555.0.tgz", + "integrity": "sha512-D8FvHUGbxWBRQM90NZeIyhAvkFfsh3u9ekrMvJ30Z6gnpBHS6HC6ldLg7tL45hwiIz/u66eKDtdA23gwwGsAHA==", + "license": "ISC", + "peerDependencies": { + "react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/nanoid": { + "version": "3.3.12", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.12.tgz", + "integrity": "sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/node-releases": { + "version": "2.0.44", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.44.tgz", + "integrity": "sha512-5WUyunoPMsvvEhS8AxHtRzP+oA8UCkJ7YRxatWKjngndhDGLiqEVAQKWjFAiAiuL8zMRGzGSJxFnLetoa43qGQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "dev": true, + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz", + "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/postcss": { + "version": "8.5.14", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.14.tgz", + "integrity": "sha512-SoSL4+OSEtR99LHFZQiJLkT59C5B1amGO1NzTwj7TT1qCUgUO6hxOvzkOYxD+vMrXBM3XJIKzokoERdqQq/Zmg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/react": { + "version": "19.2.6", + "resolved": "https://registry.npmjs.org/react/-/react-19.2.6.tgz", + "integrity": "sha512-sfWGGfavi0xr8Pg0sVsyHMAOziVYKgPLNrS7ig+ivMNb3wbCBw3KxtflsGBAwD3gYQlE/AEZsTLgToRrSCjb0Q==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dom": { + "version": "19.2.6", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.6.tgz", + "integrity": "sha512-0prMI+hvBbPjsWnxDLxlCGyM8PN6UuWjEUCYmZhO67xIV9Xasa/r/vDnq+Xyq4Lo27g8QSbO5YzARu0D1Sps3g==", + "license": "MIT", + "dependencies": { + "scheduler": "^0.27.0" + }, + "peerDependencies": { + "react": "^19.2.6" + } + }, + "node_modules/react-refresh": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.18.0.tgz", + "integrity": "sha512-QgT5//D3jfjJb6Gsjxv0Slpj23ip+HtOpnNgnb2S5zU3CB26G/IDPGoy4RJB42wzFE46DRsstbW6tKHoKbhAxw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/rollup": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.60.3.tgz", + "integrity": "sha512-pAQK9HalE84QSm4Po3EmWIZPd3FnjkShVkiMlz1iligWYkWQ7wHYd1PF/T7QZ5TVSD6uSTon5gBVMSM4JfBV+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.8" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.60.3", + "@rollup/rollup-android-arm64": "4.60.3", + "@rollup/rollup-darwin-arm64": "4.60.3", + "@rollup/rollup-darwin-x64": "4.60.3", + "@rollup/rollup-freebsd-arm64": "4.60.3", + "@rollup/rollup-freebsd-x64": "4.60.3", + "@rollup/rollup-linux-arm-gnueabihf": "4.60.3", + "@rollup/rollup-linux-arm-musleabihf": "4.60.3", + "@rollup/rollup-linux-arm64-gnu": "4.60.3", + "@rollup/rollup-linux-arm64-musl": "4.60.3", + "@rollup/rollup-linux-loong64-gnu": "4.60.3", + "@rollup/rollup-linux-loong64-musl": "4.60.3", + "@rollup/rollup-linux-ppc64-gnu": "4.60.3", + "@rollup/rollup-linux-ppc64-musl": "4.60.3", + "@rollup/rollup-linux-riscv64-gnu": "4.60.3", + "@rollup/rollup-linux-riscv64-musl": "4.60.3", + "@rollup/rollup-linux-s390x-gnu": "4.60.3", + "@rollup/rollup-linux-x64-gnu": "4.60.3", + "@rollup/rollup-linux-x64-musl": "4.60.3", + "@rollup/rollup-openbsd-x64": "4.60.3", + "@rollup/rollup-openharmony-arm64": "4.60.3", + "@rollup/rollup-win32-arm64-msvc": "4.60.3", + "@rollup/rollup-win32-ia32-msvc": "4.60.3", + "@rollup/rollup-win32-x64-gnu": "4.60.3", + "@rollup/rollup-win32-x64-msvc": "4.60.3", + "fsevents": "~2.3.2" + } + }, + "node_modules/scheduler": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz", + "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==", + "license": "MIT" + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/tinyglobby": { + "version": "0.2.16", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.16.tgz", + "integrity": "sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==", + "dev": true, + "license": "MIT", + "dependencies": { + "fdir": "^6.5.0", + "picomatch": "^4.0.4" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" + } + }, + "node_modules/typescript": { + "version": "5.9.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", + "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz", + "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/vite": { + "version": "7.3.3", + "resolved": "https://registry.npmjs.org/vite/-/vite-7.3.3.tgz", + "integrity": "sha512-/4XH147Ui7OGTjg3HbdWe5arnZQSbfuRzdr9Ec7TQi5I7R+ir0Rlc9GIvD4v0XZurELqA035KVXJXpR61xhiTA==", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "^0.27.0", + "fdir": "^6.5.0", + "picomatch": "^4.0.3", + "postcss": "^8.5.6", + "rollup": "^4.43.0", + "tinyglobby": "^0.2.15" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^20.19.0 || >=22.12.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^20.19.0 || >=22.12.0", + "jiti": ">=1.21.0", + "less": "^4.0.0", + "lightningcss": "^1.21.0", + "sass": "^1.70.0", + "sass-embedded": "^1.70.0", + "stylus": ">=0.54.8", + "sugarss": "^5.0.0", + "terser": "^5.16.0", + "tsx": "^4.8.1", + "yaml": "^2.4.2" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "jiti": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + }, + "tsx": { + "optional": true + }, + "yaml": { + "optional": true + } + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true, + "license": "ISC" + } + } +} diff --git a/showcase/app/package.json b/showcase/app/package.json index b1494ec..5da9cde 100644 --- a/showcase/app/package.json +++ b/showcase/app/package.json @@ -1,10 +1,25 @@ { - "name": "comptextv7-showcase", + "name": "comptextv7-enterprise-showcase", "private": true, - "version": "0.1.0", + "version": "0.2.0", "type": "module", "scripts": { - "build": "node scripts/build.mjs", + "dev": "vite --host 127.0.0.1 --port 5174", + "build": "tsc --noEmit && vite build", + "preview": "vite preview --host 127.0.0.1 --port 4174", + "typecheck": "tsc --noEmit", "validate": "node scripts/validate-static.mjs" + }, + "dependencies": { + "react": "^19.2.0", + "react-dom": "^19.2.0", + "lucide-react": "^0.555.0" + }, + "devDependencies": { + "@types/react": "^19.2.6", + "@types/react-dom": "^19.2.3", + "@vitejs/plugin-react": "^5.1.1", + "typescript": "^5.9.3", + "vite": "^7.2.4" } } diff --git a/showcase/app/public/index.html b/showcase/app/public/index.html deleted file mode 100644 index 72696e8..0000000 --- a/showcase/app/public/index.html +++ /dev/null @@ -1,251 +0,0 @@ - - - - - - - Comptextv7 | Cloud Showcase - - - - - -
-
-
-

Static-first · Vercel-compatible · Cloud review surface

-

Comptextv7 showcase for auditable diagnostic token reduction.

-

- A premium, dark enterprise landing experience for reviewers who need to understand how Comptextv7 reduces - repetitive synthetic diagnostic logs into deterministic KVTC-V7 transport frames without introducing backend - complexity or local execution assumptions. -

- -
- - -
- -
-
- 01 -

Token reduction

-

- Comptextv7 groups repeated diagnostic families, counts, signatures, field slots, and temporal windows so the - review payload can focus on retained anchors instead of replaying every redundant raw line. -

-
-
- 02 -

Validation pipeline

-

- The showcase points to repository validation surfaces such as replay, token telemetry, forensic checks, - contract reports, dashboard health, and GitHub Actions outcomes rather than claiming local proof. -

-
-
- 03 -

Cloud-first execution model

-

- Reviewers inspect committed documents and CI artifacts in the cloud. This app does not require a backend, - mutable local state, or a laptop-specific execution path. -

-
-
- -
-
-

Architecture section

-

A separated showcase surface, not another experiment console.

-

- This app is intentionally static and presentation-focused. It explains the Comptextv7 review model while - leaving core processing logic, Chilli/Hatch assets, and operational dashboard assumptions untouched. -

-
-
-
- Input - Synthetic XENTRY, OBD, and workshop-style fixtures -

No proprietary production payloads, secrets, customer data, or real fleet logs are embedded.

-
-
- Core - Deterministic KVTC-V7 frame -

Header inventory, family layer, temporal windows, and compact payload representation.

-
-
- Evidence - Validation reports and CI artifacts -

Reviewers follow cloud results, committed reports, and CFI contracts for evidence boundaries.

-
-
- Delivery - Static Vercel deployment -

No backend required, no API dependency, and no hidden local execution requirement.

-
-
-
- -
-
-

Artifact cards

-

CI artifacts and documents to inspect before trusting a reduction.

-

- These links are evidence entry points, not substitute validation claims. Review the exact commit, workflow - status, run timestamps, and artifact availability for the change under consideration. -

-
- -
- -
-
-

Benchmark explanation section

-

Token reduction is a review aid, not a correctness claim.

-

- The benchmark story is deliberately conservative: no fake metrics, no invented validation pass rates, and no - unverified production claims. Comptextv7 reduces repeated structure by transporting diagnostic anchors and - compact counts, but reviewers must still verify retained evidence and CI status. -

-
-
-
-

What the compact frame preserves

-
    -
  • Run-level inventory and provenance fingerprints.
  • -
  • Severity, ECU/module, DTC/SPN/FMI, and dominant family context.
  • -
  • Temporal burst shape through windowed family counts.
  • -
  • Payload metadata suitable for downstream assistant or audit handoff.
  • -
-
-
-

What this app does not claim

-
    -
  • No lossless reconstruction guarantee.
  • -
  • No Daimler certification, endorsement, or production approval.
  • -
  • No validation on real fleet, workshop, customer, or proprietary data.
  • -
  • No benchmark superiority beyond inspected synthetic/static evidence.
  • -
-
-
-
- -
-
-

CFI-01/02/03 flow

-

CFI artifacts connect contracts, cloud validation, and reviewer consumption.

-
-
-
- CFI-01 -

Cloud CI result contract

-

Defines the bounded result shape reviewers should expect when reading cloud validation outcomes.

-
-
- CFI-02 -

Validation runner workflow

-

Shows how validation evidence is produced in CI rather than inferred from a local showcase session.

-
-
- CFI-03 -

Artifact consumption

-

Guides display-only review of compact and human-readable artifacts without mutating local state.

-
-
-
- -
-
-

Reviewer walkthrough section

-

A no-local-execution path for enterprise reviewers.

-
-
-
1

Read the posture

Start with showcase readiness and benchmark explanation to understand scope, limits, and data posture.

-
2

Open Actions

Inspect the relevant GitHub Actions run for commit binding, status, timestamps, and generated artifacts.

-
3

Trace CFI flow

Follow CFI-01/02/03 from contract shape to workflow execution and artifact consumption guidance.

-
4

Record decisions

Capture what was validated, what remains unclaimed, and which follow-up evidence is needed for a pilot.

-
-
- -
-
-

Enterprise readiness section

-

Ready for review conversations, not production certification.

-

- The showcase supports governance, auditability, repeatability, and data-minimization conversations. It does - not replace safety review, cybersecurity assessment, legal review, OEM validation, or pilot-data evaluation. -

-
-
-
Deterministic framing

Stable transformations are easier to review than opaque free-form summaries.

-
Bounded evidence

Validation status belongs to reports, contracts, and CI artifacts, not marketing copy.

-
Static-first deployability

Vercel can serve the app from built static files without a backend service.

-
No backend complexity

The page is HTML and CSS only, with build tooling limited to copying static assets.

-
-
-
- - - - diff --git a/showcase/app/public/styles.css b/showcase/app/public/styles.css deleted file mode 100644 index ab43f83..0000000 --- a/showcase/app/public/styles.css +++ /dev/null @@ -1,265 +0,0 @@ -:root { - color-scheme: dark; - --bg: #050812; - --panel: rgba(13, 22, 38, 0.78); - --panel-strong: rgba(18, 31, 52, 0.94); - --line: rgba(148, 163, 184, 0.18); - --line-strong: rgba(103, 232, 249, 0.34); - --text: #f8fafc; - --muted: #a8b3c7; - --subtle: #70819d; - --cyan: #67e8f9; - --blue: #60a5fa; - --violet: #a78bfa; - --amber: #fbbf24; - --radius-lg: 28px; - --radius-md: 18px; - --shadow: 0 24px 80px rgba(0, 0, 0, 0.38); - --max: 1180px; - font-family: - Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; -} - -* { box-sizing: border-box; } -html { scroll-behavior: smooth; } -body { - margin: 0; - min-width: 320px; - color: var(--text); - background: - radial-gradient(circle at 12% 0%, rgba(103, 232, 249, 0.20), transparent 32rem), - radial-gradient(circle at 92% 14%, rgba(167, 139, 250, 0.18), transparent 28rem), - linear-gradient(180deg, #050812 0%, #08111f 48%, #050812 100%); -} -body::before { - position: fixed; - inset: 0; - z-index: -1; - content: ""; - background-image: - linear-gradient(rgba(148, 163, 184, 0.055) 1px, transparent 1px), - linear-gradient(90deg, rgba(148, 163, 184, 0.055) 1px, transparent 1px); - background-size: 64px 64px; - mask-image: linear-gradient(to bottom, black, transparent 86%); -} - -a { color: inherit; text-decoration: none; } -p { color: var(--muted); line-height: 1.68; } - -.site-header { - position: sticky; - top: 0; - z-index: 10; - display: flex; - align-items: center; - justify-content: space-between; - gap: 1rem; - width: min(var(--max), calc(100% - 2rem)); - margin: 1rem auto 0; - padding: 0.75rem; - border: 1px solid var(--line); - border-radius: 999px; - background: rgba(5, 8, 18, 0.76); - box-shadow: var(--shadow); - backdrop-filter: blur(18px); -} - -.brand, .brand span:last-child { display: flex; align-items: center; } -.brand { gap: 0.75rem; } -.brand span:last-child { flex-direction: column; align-items: flex-start; line-height: 1.05; } -.brand small { color: var(--subtle); font-size: 0.76rem; } -.brand-mark { - display: grid; - width: 42px; - height: 42px; - place-items: center; - border-radius: 15px; - color: #06101c; - font-weight: 900; - background: linear-gradient(135deg, var(--cyan), var(--violet)); -} - -nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 0.35rem; } -nav a { - padding: 0.72rem 0.9rem; - border: 1px solid transparent; - border-radius: 999px; - color: var(--muted); - font-size: 0.92rem; -} -nav a:hover, nav a:focus-visible { - border-color: var(--line-strong); - color: var(--text); - background: rgba(103, 232, 249, 0.08); - outline: none; -} - -.section-shell { - width: min(var(--max), calc(100% - 2rem)); - margin: 0 auto; - padding: 5.5rem 0; -} - -.eyebrow { - margin: 0 0 1rem; - color: var(--cyan); - font-size: 0.78rem; - font-weight: 900; - letter-spacing: 0.18em; - text-transform: uppercase; -} - -h1, h2, h3 { margin: 0; letter-spacing: -0.055em; } -h1 { max-width: 880px; font-size: clamp(3rem, 7.2vw, 6.4rem); line-height: 0.9; } -h2 { font-size: clamp(2rem, 4.4vw, 4.1rem); line-height: 0.96; } -h3 { font-size: 1.22rem; } - -.hero { - position: relative; - display: grid; - grid-template-columns: minmax(0, 1fr) 360px; - gap: 2rem; - align-items: end; - min-height: calc(100vh - 76px); - padding-top: 7rem; -} -.hero-copy > p:not(.eyebrow) { max-width: 760px; font-size: clamp(1.05rem, 1.6vw, 1.28rem); } -.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem; } -.button { - display: inline-flex; - align-items: center; - justify-content: center; - min-height: 48px; - padding: 0.85rem 1.05rem; - border: 1px solid var(--line); - border-radius: 999px; - font-weight: 800; -} -.button.primary { color: #06101c; background: linear-gradient(135deg, var(--cyan), var(--blue)); } -.button.ghost { background: rgba(13, 22, 38, 0.64); color: var(--text); } - -.status-card, .glass-panel, .artifact-card, .architecture-stack article, .walkthrough-grid article, .readiness-grid article, .signal-grid article, .cfi-flow article { - border: 1px solid var(--line); - background: linear-gradient(180deg, var(--panel-strong), rgba(7, 14, 26, 0.76)); - box-shadow: var(--shadow); - backdrop-filter: blur(20px); -} -.status-card { display: grid; gap: 0.75rem; padding: 1rem; border-radius: var(--radius-lg); } -.status-card div { - display: flex; - justify-content: space-between; - gap: 1rem; - padding: 1rem; - border: 1px solid rgba(148, 163, 184, 0.12); - border-radius: var(--radius-md); - background: rgba(2, 6, 23, 0.36); -} -.status-card span, .artifact-card span, .architecture-stack span, .cfi-flow span { color: var(--subtle); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; } -.status-card strong { text-align: right; } -.hero-orbit { position: absolute; right: 10%; top: 18%; width: 260px; aspect-ratio: 1; opacity: 0.26; pointer-events: none; } -.hero-orbit span { position: absolute; inset: 0; border: 1px solid rgba(103, 232, 249, 0.55); border-radius: 999px; animation: orbit 14s linear infinite; } -.hero-orbit span:nth-child(2) { inset: 42px; border-color: rgba(167, 139, 250, 0.6); animation-duration: 20s; animation-direction: reverse; } -.hero-orbit span:nth-child(3) { inset: 96px; border: 0; background: radial-gradient(circle, rgba(103, 232, 249, 0.7), transparent 60%); } -@keyframes orbit { to { transform: rotate(360deg); } } - -.signal-grid, .artifact-grid, .walkthrough-grid, .readiness-grid, .cfi-flow, .benchmark-layout { - display: grid; - gap: 1rem; -} -.signal-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); padding-top: 0; } -.signal-grid article { padding: 1.35rem; border-radius: var(--radius-lg); } -.signal-index { color: var(--cyan); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; } - -.split-section { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 2rem; align-items: start; } -.architecture-stack { display: grid; gap: 1rem; } -.architecture-stack article { position: relative; padding: 1.35rem; border-radius: var(--radius-lg); } -.architecture-stack article::before { - position: absolute; - left: -1.05rem; - top: 1.5rem; - width: 0.55rem; - height: 0.55rem; - content: ""; - border-radius: 999px; - background: var(--cyan); - box-shadow: 0 0 28px var(--cyan); -} -.architecture-stack strong, .artifact-card strong { display: block; margin-top: 0.7rem; font-size: 1.1rem; } - -.section-heading { max-width: 900px; margin-bottom: 1.5rem; } -.artifact-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } -.artifact-card { - min-height: 260px; - padding: 1.2rem; - border-radius: var(--radius-lg); - transition: transform 160ms ease, border-color 160ms ease; -} -.artifact-card:hover { transform: translateY(-4px); border-color: var(--line-strong); } - -.benchmark-layout { grid-template-columns: repeat(2, minmax(0, 1fr)); } -.glass-panel { padding: 1.35rem; border-radius: var(--radius-lg); } -.warning-panel { border-color: rgba(251, 191, 36, 0.28); } -.check-list { margin: 1.2rem 0 0; padding: 0; list-style: none; color: var(--muted); } -.check-list li { position: relative; padding-left: 1.5rem; line-height: 1.65; } -.check-list li + li { margin-top: 0.5rem; } -.check-list li::before { position: absolute; left: 0; color: var(--cyan); content: "✦"; } -.warning-panel .check-list li::before { color: var(--amber); } - -.cfi-flow { grid-template-columns: repeat(3, minmax(0, 1fr)); } -.cfi-flow article { padding: 1.2rem; border-radius: var(--radius-lg); } - -.walkthrough-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } -.walkthrough-grid article { min-height: 230px; padding: 1.25rem; border-radius: var(--radius-lg); } -.walkthrough-grid span { - display: grid; - width: 38px; - height: 38px; - margin-bottom: 1.1rem; - place-items: center; - border-radius: 999px; - color: #06101c; - font-weight: 900; - background: linear-gradient(135deg, var(--cyan), var(--violet)); -} - -.enterprise-section { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 2rem; align-items: start; } -.readiness-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } -.readiness-grid article { padding: 1.2rem; border-radius: var(--radius-lg); } -.readiness-grid strong { color: var(--text); } - -.site-footer { - display: flex; - justify-content: space-between; - gap: 1rem; - width: min(var(--max), calc(100% - 2rem)); - margin: 0 auto; - padding: 2rem 0 3rem; - color: var(--subtle); - border-top: 1px solid var(--line); -} -.site-footer a { color: var(--cyan); font-weight: 800; } - -@media (prefers-reduced-motion: reduce) { - html { scroll-behavior: auto; } - .hero-orbit span, .artifact-card { animation: none; transition: none; } -} - -@media (max-width: 980px) { - .hero, .split-section, .enterprise-section, .benchmark-layout { grid-template-columns: 1fr; } - .signal-grid, .artifact-grid, .walkthrough-grid, .cfi-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); } - .hero { min-height: auto; } - .hero-orbit { right: 4%; top: 7%; } -} - -@media (max-width: 760px) { - .site-header { align-items: flex-start; border-radius: 28px; flex-direction: column; } - nav { justify-content: flex-start; } - nav a { padding: 0.55rem 0.68rem; } - .section-shell { padding: 3.6rem 0; } - h1 { font-size: clamp(2.7rem, 17vw, 4.8rem); } - .signal-grid, .artifact-grid, .walkthrough-grid, .cfi-flow, .readiness-grid { grid-template-columns: 1fr; } - .status-card div { flex-direction: column; } - .status-card strong { text-align: left; } - .button { width: 100%; } - .site-footer { flex-direction: column; } -} diff --git a/showcase/app/scripts/build.mjs b/showcase/app/scripts/build.mjs deleted file mode 100644 index ca96cc7..0000000 --- a/showcase/app/scripts/build.mjs +++ /dev/null @@ -1,10 +0,0 @@ -import { cp, mkdir, rm } from 'node:fs/promises'; -import { dirname, resolve } from 'node:path'; -import { fileURLToPath } from 'node:url'; - -const root = resolve(dirname(fileURLToPath(import.meta.url)), '..'); -const dist = resolve(root, 'dist'); - -await rm(dist, { recursive: true, force: true }); -await mkdir(dist, { recursive: true }); -await cp(resolve(root, 'public'), dist, { recursive: true }); diff --git a/showcase/app/scripts/validate-static.mjs b/showcase/app/scripts/validate-static.mjs index a13ba2f..1376d2b 100644 --- a/showcase/app/scripts/validate-static.mjs +++ b/showcase/app/scripts/validate-static.mjs @@ -3,27 +3,42 @@ import { dirname, resolve } from 'node:path'; import { fileURLToPath } from 'node:url'; const root = resolve(dirname(fileURLToPath(import.meta.url)), '..'); -const html = await readFile(resolve(root, 'public', 'index.html'), 'utf8'); -const css = await readFile(resolve(root, 'public', 'styles.css'), 'utf8'); +const app = await readFile(resolve(root, 'src', 'main.tsx'), 'utf8'); +const css = await readFile(resolve(root, 'src', 'styles.css'), 'utf8'); +const packageJson = await readFile(resolve(root, 'package.json'), 'utf8'); const requiredPhrases = [ - 'Token reduction', - 'Validation pipeline', - 'CI artifacts', - 'CFI-01/02/03', - 'Cloud-first execution model', - 'No fake metrics', - 'No backend required' + 'Raw Corpus Ingest', + 'Tokenizer Pipeline', + 'Compression Engine', + 'Validation Runner', + 'Replay Executor', + 'Drift Assertions', + 'Artifact Registry', + 'Enterprise Review Dashboard', + 'RUN-2026-05-13-8842', + 'ART-CTX7-2F91A', + 'REP-CONSISTENCY-441', + 'GH-ACT-551882', + 'Input Tokens', + 'Compressed Tokens', + 'Reduction Ratio', + 'Replay Drift Delta', + 'Validation Status', + 'OpenTelemetry trace', + 'Artifact registry', + 'CI execution history', + 'Reviewer Walkthrough' ]; -const missing = requiredPhrases.filter((phrase) => !html.includes(phrase)); +const missing = requiredPhrases.filter((phrase) => !app.includes(phrase)); if (missing.length > 0) { - console.error(`Missing required showcase copy: ${missing.join(', ')}`); + console.error(`Missing required enterprise showcase copy: ${missing.join(', ')}`); process.exit(1); } -if (!html.includes('
{children}; +} + +function Sparkline({ variant = 0 }: { variant?: number }) { + const paths = [ + 'M2 28 L18 24 L34 26 L50 16 L66 18 L82 10 L98 12 L118 7', + 'M2 20 L18 21 L34 16 L50 18 L66 12 L82 13 L98 8 L118 9', + 'M2 24 L18 18 L34 20 L50 15 L66 14 L82 11 L98 12 L118 6' + ]; + return ( + + + + + ); +} + +function ExecutiveOverview() { + return ( +
+
+
Deterministic AI Infrastructure · Enterprise Review Surface
+

Comptextv7 Enterprise Infrastructure Showcase

+

+ A controlled platform view for deterministic token compression, replay verification, artifact lineage, CI-backed + validation, and operational telemetry. The experience is designed for engineering leadership reviews where + reproducibility, provenance, and replay consistency matter more than marketing claims. +

+
+ Run reviewer walkthrough + Open operations console +
+
+ +
+ {kpis.map((kpi, index) => ( +
+
{kpi.label}{index === 4 ? 'CI' : 'LIVE'}
+ {kpi.value} +

{kpi.detail}

+ +
+ ))} +
+
+ ); +} + +function ArchitectureSurface() { + return ( +
+
+
Architecture Surface
+

Deterministic compression flow with CI validation contracts.

+

+ The platform freezes the data path early: every corpus ingest, tokenizer window, compression frame, replay + assertion, and registry publish receives an ordered lineage edge before reviewers inspect the enterprise dashboard. +

+
+
+
+
Mermaid-style DAG
+
+ {architectureNodes.map((node, index) => ( +
+ {String(index + 1).padStart(2, '0')} + {node} +
+ ))} +
+
{`graph LR
+  A[Raw Corpus Ingest] --> B[Tokenizer Pipeline]
+  B --> C[Compression Engine]
+  C --> D[Validation Runner]
+  D --> E[Replay Executor]
+  E --> F[Drift Assertions]
+  F --> G[Artifact Registry]
+  G --> H[Enterprise Review Dashboard]`}
+
+
+
+ +

GitHub → Netlify Preview Deploy

Every showcase change is treated as a previewable infrastructure review surface before publication.

+
+
+ +

CI Validation → Artifact Publish

Contract checks must pass before lineage artifacts are considered enterprise-reviewable.

+
+
+ +

Artifact Registry → Showcase

Published evidence references immutable IDs instead of ad hoc screenshots or untraceable benchmark notes.

+
+
+
+
+ ); +} + +function WorkflowSimulation() { + return ( +
+
+
Workflow Simulation
+

Replay execution timeline with trace-level provenance.

+

Jaeger-style nested spans expose the deterministic replay states used to verify compression output.

+
+
+
+ {timeline.map((item) => ( +
+ +

{item.title}

{item.detail}

+ {item.status} +
+ ))} +
+
+
OpenTelemetry trace: trace-8842
+
0s2s4s6s8s
+ {spans.map((span) => ( +
+
{span.name}{span.id} · {span.duration}
+
+
+ ))} +
+ Drift assertions passed + Replay checksum matched + Validation summary sealed +
+
+
+
+ ); +} + +function OperationsConsole() { + return ( +
+
+
+
Operations Console

Enterprise review dashboard

+ Validation Status: PASS +
+
+ {kpis.slice(0, 4).map((kpi, index) => ( +
{kpi.label}{kpi.value}
+ ))} +
+
+ } columns={['Artifact', 'Type', 'Owner', 'State']} rows={artifacts.map((a) => [a.id, a.type, a.owner, a.state])} /> + } columns={['Run', 'Branch', 'Contract', 'Drift', 'Status']} rows={ciHistory.map((c) => [c.run, c.branch, c.contract, c.drift, c.status])} /> +
+
+ } columns={['Suite', 'p50', 'p95', 'Samples', 'Outcome']} rows={benchmarkRows.map((b) => [b.suite, b.p50, b.p95, b.samples, b.outcome])} /> +
+
Orchestration panel
+ {['Preview deploy created', 'CI validation complete', 'Artifact lineage indexed', 'Enterprise showcase promoted'].map((label, index) => ( +
{index + 1}

{label}

complete
+ ))} +
+
+
+
+ ); +} + +function TablePanel({ title, icon, columns, rows }: { title: string; icon: React.ReactNode; columns: string[]; rows: string[][] }) { + return ( +
+
{icon}{title}
+
+ + {columns.map((column) => )} + {rows.map((row) => {row.map((cell) => )})} +
{column}
{cell}
+
+
+ ); +} + +function UseCasesAndWalkthrough() { + return ( + <> +
+
+
Enterprise Use Cases
+

Operational patterns for enterprise AI engineering teams.

+
+
+ {useCases.map(([title, body]) =>

{title}

{body}

)} +
+
+
+
+
Reviewer Walkthrough
+

Trust model explained for reviewers.

+
+
+

Deterministic replay

Replay is evaluated from pinned run envelopes, corpus hashes, tokenizer windows, and reconstruction checksums.

+

Validation contracts

GitHub Actions acts as the review authority for contract execution, not a local laptop or mutable dashboard state.

+

Artifact-driven workflows

Compression, replay, benchmark, and telemetry evidence remain inspectable through immutable operational IDs.

+

Operational telemetry

Reviewers see token counts, reduction ratio, drift delta, trace spans, CI status, and artifact lineage together.

+

Reproducibility

The same run envelope can be re-executed against the same golden corpus and produce the same replay result.

+

Enterprise trust model

Claims are backed by validation summaries, CI history, benchmark rows, and lineage records rather than generic AI language.

+
+
+ + ); +} + +function App() { + return ( + <> +
+ C7Comptextv7Enterprise Infrastructure + +
+
+ + + + + +
+ + ); +} + +createRoot(document.getElementById('root')!).render( + + + +); diff --git a/showcase/app/src/styles.css b/showcase/app/src/styles.css new file mode 100644 index 0000000..34efb6c --- /dev/null +++ b/showcase/app/src/styles.css @@ -0,0 +1,171 @@ +:root { + color-scheme: dark; + --bg: #070b12; + --bg-soft: #0b111c; + --panel: #0f1724; + --panel-strong: #131d2c; + --panel-muted: #0b1320; + --line: rgba(148, 163, 184, 0.16); + --line-strong: rgba(96, 165, 250, 0.38); + --text: #e5edf7; + --muted: #9aa8ba; + --subtle: #66758a; + --blue: #60a5fa; + --blue-muted: #1d4f82; + --green: #7dd3a7; + --amber: #d8b35b; + --radius: 18px; + --shadow: 0 24px 80px rgba(0, 0, 0, 0.34); + font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; +} + +* { box-sizing: border-box; } +html { scroll-behavior: smooth; } +body { + margin: 0; + min-width: 320px; + color: var(--text); + background: + linear-gradient(180deg, rgba(9, 15, 26, 0.92), rgba(7, 11, 18, 1) 42%), + radial-gradient(circle at 22% 0%, rgba(37, 99, 235, 0.12), transparent 34%), + var(--bg); +} +body::before { + position: fixed; + inset: 0; + z-index: -1; + pointer-events: none; + content: ""; + background-image: linear-gradient(rgba(148, 163, 184, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(148, 163, 184, 0.035) 1px, transparent 1px); + background-size: 42px 42px; + mask-image: linear-gradient(to bottom, black, transparent 72%); +} + +a { color: inherit; text-decoration: none; } +p { color: var(--muted); line-height: 1.65; } +h1, h2, h3 { margin: 0; letter-spacing: -0.04em; } +h1 { max-width: 980px; font-size: clamp(3.1rem, 7vw, 6.7rem); line-height: 0.9; } +h2 { font-size: clamp(2.1rem, 4.6vw, 4.6rem); line-height: 0.94; } +h3 { font-size: 1rem; } + +.topbar { + position: sticky; + top: 0; + z-index: 10; + display: flex; + align-items: center; + justify-content: space-between; + gap: 1rem; + min-height: 72px; + padding: 0.85rem clamp(1rem, 3vw, 2rem); + border-bottom: 1px solid var(--line); + background: rgba(7, 11, 18, 0.86); + backdrop-filter: blur(18px); +} +.brand { display: grid; grid-template-columns: 42px auto; column-gap: 0.75rem; align-items: center; } +.brand span { grid-row: span 2; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--line-strong); border-radius: 12px; background: #101a2a; color: var(--blue); font-weight: 900; } +.brand strong { line-height: 1; } +.brand small { color: var(--subtle); font-size: 0.76rem; } +nav { display: flex; flex-wrap: wrap; gap: 0.35rem; } +nav a { padding: 0.6rem 0.72rem; border-radius: 999px; color: var(--muted); font-size: 0.84rem; } +nav a:hover { background: rgba(96, 165, 250, 0.1); color: var(--text); } + +.section-shell { width: min(1480px, calc(100% - 2rem)); margin: 0 auto; padding: clamp(4.5rem, 8vw, 7rem) 0; } +.eyebrow { display: inline-flex; align-items: center; gap: 0.45rem; margin-bottom: 1rem; color: var(--blue); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; } +.section-heading { max-width: 960px; margin-bottom: 1.5rem; } +.button { display: inline-flex; align-items: center; gap: 0.5rem; min-height: 44px; padding: 0.76rem 1rem; border: 1px solid var(--line); border-radius: 999px; background: rgba(15, 23, 36, 0.72); color: var(--text); font-weight: 750; } +.button-primary { border-color: rgba(96, 165, 250, 0.42); background: #1b3f66; } + +.hero { display: grid; grid-template-columns: minmax(0, 1fr) 410px; gap: 1.25rem; align-items: end; min-height: calc(100vh - 72px); } +.hero-copy p { max-width: 880px; font-size: 1.08rem; } +.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; } +.run-card, .kpi-card, .dag-card, .contract-stack article, .timeline-card, .trace-card, .console-frame, .use-case-grid article, .walkthrough-grid article, .table-panel, .orchestration-panel { + border: 1px solid var(--line); + border-radius: var(--radius); + background: linear-gradient(180deg, rgba(19, 29, 44, 0.94), rgba(11, 19, 32, 0.88)); + box-shadow: var(--shadow); +} +.run-card { padding: 1rem; } +.run-card-header { display: flex; align-items: start; justify-content: space-between; gap: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); } +.run-card-header span, dt, .kpi-topline span, .ops-card span { color: var(--subtle); font-size: 0.75rem; letter-spacing: 0.11em; text-transform: uppercase; } +.run-card-header strong { display: block; margin-top: 0.35rem; } +dl { display: grid; gap: 0.65rem; margin: 1rem 0 0; } +dl div { display: flex; justify-content: space-between; gap: 1rem; padding: 0.72rem; border: 1px solid rgba(148, 163, 184, 0.1); border-radius: 12px; background: rgba(7, 11, 18, 0.45); } +dd { margin: 0; color: var(--text); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.85rem; } + +.kpi-grid { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0.75rem; margin-top: 1rem; } +.kpi-card, .ops-card { padding: 1rem; } +.kpi-topline { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; } +.kpi-card strong, .ops-card strong { display: block; margin-top: 0.9rem; font-size: 1.75rem; letter-spacing: -0.04em; } +.kpi-card p { min-height: 45px; margin: 0.35rem 0 0; font-size: 0.86rem; } +.pill { display: inline-flex; align-items: center; justify-content: center; min-height: 24px; padding: 0.25rem 0.55rem; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.7rem; font-weight: 800; white-space: nowrap; } +.pill--pass { border-color: rgba(125, 211, 167, 0.34); background: rgba(22, 101, 52, 0.13); color: var(--green); } +.pill--info { border-color: rgba(96, 165, 250, 0.36); background: rgba(37, 99, 235, 0.12); color: #9bc8ff; } +.pill--warn { border-color: rgba(216, 179, 91, 0.38); color: var(--amber); } +.sparkline { width: 100%; height: 36px; margin-top: 0.6rem; overflow: visible; } +.sparkline-grid { stroke: rgba(148, 163, 184, 0.12); } +.sparkline-line { fill: none; stroke: var(--blue); stroke-width: 2; } + +.architecture-layout, .workflow-layout { display: grid; grid-template-columns: 1.28fr 0.72fr; gap: 1rem; align-items: stretch; } +.panel-title { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; color: var(--text); font-weight: 800; } +.dag-card, .trace-card, .timeline-card, .table-panel, .orchestration-panel { padding: 1rem; } +.dag { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.75rem; } +.dag-node { position: relative; min-height: 92px; padding: 0.9rem; border: 1px solid rgba(96, 165, 250, 0.2); border-radius: 14px; background: rgba(7, 11, 18, 0.48); } +.dag-node:not(:nth-child(4n))::after { position: absolute; top: 50%; right: -0.73rem; width: 0.72rem; height: 1px; content: ""; background: rgba(96, 165, 250, 0.48); } +.dag-node span { display: block; margin-bottom: 0.7rem; color: var(--blue); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.75rem; } +.mermaid-code { margin: 1rem 0 0; padding: 1rem; overflow: auto; border: 1px solid rgba(148, 163, 184, 0.12); border-radius: 14px; background: #070b12; color: #aab7c8; font-size: 0.78rem; line-height: 1.6; } +.contract-stack { display: grid; gap: 0.75rem; } +.contract-stack article { display: flex; gap: 0.85rem; padding: 1rem; } +.contract-stack svg { flex: 0 0 auto; color: var(--blue); } +.contract-stack p { margin: 0.35rem 0 0; font-size: 0.9rem; } + +.timeline-card { display: grid; gap: 0.75rem; } +.timeline-item { display: grid; grid-template-columns: 88px 1fr auto; gap: 0.8rem; align-items: start; padding: 0.85rem; border: 1px solid rgba(148, 163, 184, 0.1); border-radius: 14px; background: rgba(7, 11, 18, 0.42); } +time { color: var(--blue); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.78rem; } +.timeline-item p { margin: 0.3rem 0 0; font-size: 0.9rem; } +.trace-axis { display: flex; justify-content: space-between; margin-bottom: 0.6rem; color: var(--subtle); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.7rem; } +.span-row { display: grid; grid-template-columns: minmax(210px, 0.48fr) 1fr; gap: 0.8rem; align-items: center; margin-top: 0.55rem; padding-left: calc(var(--depth) * 1rem); } +.span-meta strong { display: block; font-size: 0.82rem; } +.span-meta span { color: var(--subtle); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.72rem; } +.span-track { height: 18px; border: 1px solid rgba(148, 163, 184, 0.1); border-radius: 999px; background: rgba(7, 11, 18, 0.5); overflow: hidden; } +.span-track span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, rgba(96, 165, 250, 0.38), rgba(96, 165, 250, 0.86)); } +.assertion-strip { display: grid; gap: 0.5rem; margin-top: 1rem; } +.assertion-strip span { display: flex; align-items: center; gap: 0.45rem; color: var(--green); font-size: 0.88rem; } + +.console-frame { padding: 1rem; } +.console-header { display: flex; align-items: start; justify-content: space-between; gap: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); } +.ops-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.75rem; margin-top: 1rem; } +.ops-columns { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 0.75rem; margin-top: 0.75rem; } +.ops-columns.secondary { grid-template-columns: 1.2fr 0.8fr; } +.table-scroll { overflow-x: auto; } +table { width: 100%; border-collapse: collapse; min-width: 560px; } +th, td { padding: 0.72rem 0.65rem; border-bottom: 1px solid rgba(148, 163, 184, 0.1); text-align: left; font-size: 0.82rem; white-space: nowrap; } +th { color: var(--subtle); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; } +td { color: #cbd6e4; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; } +.orchestration-panel { display: grid; align-content: start; gap: 0.65rem; } +.orchestration-step { display: grid; grid-template-columns: 30px 1fr auto; align-items: center; gap: 0.6rem; padding: 0.72rem; border: 1px solid rgba(148, 163, 184, 0.1); border-radius: 14px; } +.orchestration-step > span { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 999px; background: rgba(96, 165, 250, 0.12); color: var(--blue); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; } +.orchestration-step p { margin: 0; font-size: 0.88rem; } + +.use-case-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0.75rem; } +.use-case-grid article { min-height: 205px; padding: 1rem; } +.walkthrough { display: grid; grid-template-columns: 0.35fr 0.65fr; gap: 1rem; align-items: start; } +.walkthrough-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; } +.walkthrough-grid article { padding: 1rem; } +.walkthrough-grid p, .use-case-grid p { margin-bottom: 0; font-size: 0.9rem; } + +@media (max-width: 1120px) { + .hero, .architecture-layout, .workflow-layout, .walkthrough, .ops-columns, .ops-columns.secondary { grid-template-columns: 1fr; } + .kpi-grid, .ops-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } + .use-case-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } +} + +@media (max-width: 760px) { + .topbar { align-items: flex-start; flex-direction: column; } + nav { width: 100%; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0.2rem; } + .section-shell { width: min(100% - 1rem, 1480px); padding: 3.5rem 0; } + h1 { font-size: clamp(2.6rem, 16vw, 4.5rem); } + .kpi-grid, .ops-grid, .dag, .use-case-grid, .walkthrough-grid { grid-template-columns: 1fr; } + .timeline-item, .span-row, .orchestration-step { grid-template-columns: 1fr; } + .dag-node::after { display: none; } +} diff --git a/showcase/app/tsconfig.json b/showcase/app/tsconfig.json new file mode 100644 index 0000000..a3d0976 --- /dev/null +++ b/showcase/app/tsconfig.json @@ -0,0 +1,20 @@ +{ + "compilerOptions": { + "target": "ES2022", + "useDefineForClassFields": true, + "lib": ["DOM", "DOM.Iterable", "ES2022"], + "allowJs": false, + "skipLibCheck": true, + "esModuleInterop": true, + "allowSyntheticDefaultImports": true, + "strict": true, + "forceConsistentCasingInFileNames": true, + "module": "ESNext", + "moduleResolution": "Bundler", + "resolveJsonModule": true, + "isolatedModules": true, + "noEmit": true, + "jsx": "react-jsx" + }, + "include": ["src", "vite.config.ts"] +} diff --git a/showcase/app/tsconfig.node.json b/showcase/app/tsconfig.node.json new file mode 100644 index 0000000..fc35f45 --- /dev/null +++ b/showcase/app/tsconfig.node.json @@ -0,0 +1,11 @@ +{ + "compilerOptions": { + "skipLibCheck": true, + "module": "ESNext", + "moduleResolution": "Bundler", + "allowSyntheticDefaultImports": true, + "strict": true, + "noEmit": true + }, + "include": ["vite.config.ts"] +} diff --git a/showcase/app/vercel.json b/showcase/app/vercel.json index 13346da..5799f7e 100644 --- a/showcase/app/vercel.json +++ b/showcase/app/vercel.json @@ -2,5 +2,6 @@ "buildCommand": "npm run build", "outputDirectory": "dist", "cleanUrls": true, - "trailingSlash": false + "trailingSlash": false, + "rewrites": [{ "source": "/(.*)", "destination": "/index.html" }] } diff --git a/showcase/app/vite.config.ts b/showcase/app/vite.config.ts new file mode 100644 index 0000000..3af34eb --- /dev/null +++ b/showcase/app/vite.config.ts @@ -0,0 +1,10 @@ +import react from '@vitejs/plugin-react'; +import { defineConfig } from 'vite'; + +export default defineConfig({ + plugins: [react()], + build: { + outDir: 'dist', + sourcemap: false + } +});