Skip to content
Open
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: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,36 +40,36 @@
"@easyops-cn/docusaurus-search-local": "0.55.0",
"@mdx-js/react": "^3.1.1",
"@mermaid-js/layout-elk": "^0.1.9",
"clsx": "^1.2.1",
"clsx": "^2.0.0",
"docusaurus-plugin-copy-page-button": "^0.5.2",
"docusaurus-plugin-llms": "^0.4.0",
"github-slugger": "^1.5.0",
"github-slugger": "^2.0.0",
"prism-react-renderer": "^2.4.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"open-ask-ai": "^0.7.3"
},
"devDependencies": {
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@commitlint/cli": "^21.0.0",
"@commitlint/config-conventional": "^21.0.0",
"@docusaurus/eslint-plugin": "^3.10.0",
"@docusaurus/module-type-aliases": "^3.10.0",
"@docusaurus/tsconfig": "^3.10.0",
"@docusaurus/types": "^3.10.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^10.0.4",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/changelog": "^7.0.0",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^11.0.0",
"@semantic-release/github": "^12.0.0",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^10.0.3",
"@typescript-eslint/parser": "^6.13.1",
"@semantic-release/release-notes-generator": "^14.0.0",
"@typescript-eslint/parser": "^8.0.0",
"commitizen": "^4.3.2",
"cz-conventional-changelog": "^3.3.0",
"semantic-release": "^25.0.0",
"stylelint": "^16.0.0 ",
"stylelint-config-standard": "^39.0.0",
"stylelint": "^17.0.0",
"stylelint-config-standard": "^40.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.

Node engines too low

Medium Severity

Bumping @commitlint/cli to ^21.0.0 and stylelint to ^17.0.0 pulls tools that require Node 22+ and Node ≥20.19 respectively, while engines.node remains >=18.0. Environments that honor the declared engine can install or run on Node 18–20 and then hit engine errors or failed lint:style / commitlint runs after install.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit e561d6f. Configure here.

"tsc-files": "^1.1.4",
"typescript": "^5.9.3"
"typescript": "^7.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.

Lockfile out of sync

High Severity

This commit raises dependency versions in package.json but the diff does not update package-lock.json, which still lists the previous ranges (for example typescript ^5.9.3, @commitlint/cli ^18.2.0). npm ci and similar flows that require a matching lockfile will fail or keep installing old versions until the lock is regenerated and committed.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit e561d6f. Configure here.

},
"browserslist": {
"production": [
Expand Down
Loading