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
142 changes: 71 additions & 71 deletions pr-review/package-lock.json

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

6 changes: 3 additions & 3 deletions pr-review/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,17 @@
"zod": "4.0.17"
},
"devDependencies": {
"@eslint/js": "9.33.0",
"@eslint/js": "9.34.0",
"@types/node": "22.17.2",
"@vercel/ncc": "0.38.3",
"eslint": "9.33.0",
"eslint": "9.34.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-sonarjs": "3.0.4",
"eslint-plugin-unicorn": "60.0.0",
"prettier": "3.6.2",
"tsx": "4.20.4",
"typescript": "5.9.2",
"typescript-eslint": "8.39.1",
"typescript-eslint": "8.40.0",

Choose a reason for hiding this comment

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

The package name “typescript-eslint” does not match any official npm package. If you intended to install the ESLint plugin and parser for TypeScript, you should use the scoped packages:

{
  "devDependencies": {
    "@typescript-eslint/eslint-plugin": "^8.40.0",
    "@typescript-eslint/parser": "^8.40.0"
  }
}

Comment on lines -33 to +43

Choose a reason for hiding this comment

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

All your devDependencies are pinned to exact versions. To get non-breaking updates automatically, consider using caret (^) or tilde (~) version ranges:

-  "eslint": "9.34.0",
+  "eslint": "^9.34.0",
-  "@eslint/js": "9.34.0",
+  "@eslint/js": "^9.34.0",
-  "typescript": "5.9.2",
+  "typescript": "^5.9.2",

"yaml": "2.8.1"
}
Comment on lines 32 to 45

Choose a reason for hiding this comment

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

The devDependencies list is not strictly alphabetized, which can make future diffs harder to scan. Consider sorting keys alphabetically:

  "devDependencies": {
-   "@eslint/js": "9.34.0",
+   "@eslint/js": "9.34.0",
+   "@types/node": "22.17.2",
+   "@vercel/ncc": "0.38.3",
+   "eslint": "^9.34.0",
+   "eslint-plugin-import": "2.32.0",
+   "eslint-plugin-sonarjs": "3.0.4",
+   "eslint-plugin-unicorn": "60.0.0",
+   "prettier": "3.6.2",
+   "tsx": "4.20.4",
+   "typescript": "^5.9.2",
+   "yaml": "2.8.1"
  }

}
Comment on lines 30 to 46

Choose a reason for hiding this comment

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

Since you have multiple package.json files with nearly identical dependencies, consider using npm/yarn workspaces or a tool like Lerna to manage versions centrally and avoid duplication across packages.

Loading