Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 24 additions & 24 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,16 @@
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@e4a/pg-js": "^1.10.0",
"@e4a/pg-js": "^2.1.0",
"vitepress": "^1.6.4"
},
"dependencies": {
"mermaid": "^11.15.0",
"mermaid": "^11.16.0",
"vitepress-plugin-mermaid": "^2.0.17"
},
"overrides": {
"esbuild": "^0.25.0",
"vite": "^6.4.2"
"vite": "^6.4.3",
"dompurify": ">=3.4.11"

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The dompurify override is an unbounded lower-bound range (>=3.4.11). A future dompurify 4.x would satisfy it and be force-resolved into mermaid (which declares ^3.3.3), risking a silent breaking bump on a routine npm install. Prefer ^3.4.11 — it still resolves to the patched 3.4.11 and clears all 10 advisories, but caps the major so mermaid can't be pulled onto an incompatible dompurify. Non-blocking: currently resolves correctly and build/CI pass with 0 vulns, but it's a one-character hardening (>=^).

}
}
Loading