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
6 changes: 3 additions & 3 deletions web/package-lock.json

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

3 changes: 3 additions & 0 deletions web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@
"recharts": "^3.8.0",
"tailwindcss": "^4.2.1"
},
"overrides": {
"flatted": ">=3.4.2"
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Unbounded override range risks future major version breakage

Low Severity

The flatted override uses >=3.4.2, an unbounded upper range that would match future major versions (e.g., 4.0.0). The upstream consumer flat-cache declares "flatted": "^3.2.9" (i.e., <4.0.0). A future major version of flatted could be installed that is incompatible with flat-cache, breaking linting. Using ^3.4.2 instead would stay within the semver-compatible range.

Fix in Cursor Fix in Web

},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^24.10.1",
Expand Down
Loading