- 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).
15 lines
402 B
JSON
15 lines
402 B
JSON
{
|
|
"name": "@hive/dashboard",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"description": "hive-c0re dashboard SPA. Bundled by esbuild into a static dist; served by the hive-c0re Rust binary at runtime via tower_http::ServeDir.",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "node ./build.mjs"
|
|
},
|
|
"dependencies": {
|
|
"@hive/shared": "*",
|
|
"dompurify": "^3.2.4",
|
|
"marked": "18.0.6"
|
|
}
|
|
}
|