Skip to content
Open
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
26 changes: 21 additions & 5 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 @@ -11,7 +11,7 @@
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"uuid": "^8.3.2"
"uuid": "^14.0.0"
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Stale @types/uuid conflicts with uuid v14 types

Medium Severity

uuid was bumped to ^14.0.0, which ships its own TypeScript type definitions, but @types/uuid is still pinned at ^8.3.4. These old type definitions were written for the uuid v8 API and may conflict with or shadow the built-in types from uuid v14, potentially causing type errors or providing inaccurate type information. The @types/uuid dependency needs to be either removed or updated to v11+ (which is just a stub pointing to uuid's own types).

Additional Locations (1)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 004cf44. Configure here.

},
"devDependencies": {
"@types/lodash": "^4.14.195",
Expand Down
Loading