- 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).
16 lines
523 B
JSON
16 lines
523 B
JSON
{
|
|
"name": "@hive/agent",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"description": "hive-ag3nt per-container web UI. Bundled by esbuild into a static dist; served by the in-container Rust binary at runtime via tower_http::ServeDir. Per-agent additions are layered on top via the hyperhive.frontend.extraFiles nix option.",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "node ./build.mjs"
|
|
},
|
|
"dependencies": {
|
|
"@hive/shared": "*",
|
|
"chart.js": "4.5.1",
|
|
"dompurify": "^3.2.4",
|
|
"marked": "18.0.6"
|
|
}
|
|
}
|