Skip to content
Closed
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
16 changes: 8 additions & 8 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"prettier": "^3.8.1",
"prism-react-renderer": "^2.4.1",
"react": "^19.2.3",
"react-dom": "^19.2.4",
"react-dom": "^19.2.5",
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

react version range doesn't match react-dom peer dependency

Low Severity

The react dependency is declared as ^19.2.3 in package.json, but the newly bumped react-dom@19.2.5 declares a peerDependency of react: ^19.2.5. While the lockfile currently resolves react to 19.2.5, the declared range in package.json permits versions 19.2.3 and 19.2.4 which wouldn't satisfy the peer dependency. If the lockfile is regenerated, this mismatch could cause peer dependency warnings or installation errors. The react minimum version in package.json needs to be bumped to ^19.2.5 to stay consistent.

Additional Locations (1)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 7074c7a. Configure here.

"react-icons": "^5.6.0",
"react-simple-code-editor": "^0.14.1",
"rehype-katex": "^7.0.1",
Expand Down
Loading