- dompurify 3.2.4 -> 3.4.12 (fixes a moderate-severity XSS advisory chain flagged by npm audit; dompurify sanitizes untrusted markdown output in both the dashboard and agent UIs) - marked 18.0.4 -> 18.0.6 - esbuild 0.28.0 -> 0.28.1 npm audit now reports 0 vulnerabilities. Verified with npm run build (dashboard + agent) and nix fmt --fail-on-change (no changes).
18 lines
521 B
JSON
18 lines
521 B
JSON
{
|
|
"name": "hyperhive-frontend",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"description": "Frontend assets for the hyperhive dashboard and per-agent UIs. Built with esbuild into static dist directories that the Rust binaries serve via tower_http::ServeDir.",
|
|
"workspaces": [
|
|
"packages/shared",
|
|
"packages/dashboard",
|
|
"packages/agent"
|
|
],
|
|
"scripts": {
|
|
"build": "npm run build --workspaces --if-present",
|
|
"clean": "rm -rf packages/*/dist"
|
|
},
|
|
"devDependencies": {
|
|
"esbuild": "0.28.1"
|
|
}
|
|
}
|