Skip to content
Merged
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
8 changes: 4 additions & 4 deletions packages/cacheable-request/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"@types/http-cache-semantics": "It needs to be in the dependencies list and not devDependencies because otherwise projects that use this one will be getting `Could not find a declaration file for module 'http-cache-semantics'` error when running `tsc`, see https://github.com/jaredwray/cacheable-request/issues/194 for details"
},
"dependencies": {
"@types/http-cache-semantics": "^4.0.4",
"@types/http-cache-semantics": "^4.2.0",

Choose a reason for hiding this comment

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

critical

The version for @types/http-cache-semantics is being updated to ^4.2.0, but this version does not appear to exist on the npm registry. The latest available version is 4.0.4. Using a non-existent version will break dependency installation.

Suggested change
"@types/http-cache-semantics": "^4.2.0",
"@types/http-cache-semantics": "^4.0.4",

"get-stream": "^9.0.1",
"http-cache-semantics": "^4.2.0",
"keyv": "^5.6.0",
Expand All @@ -54,15 +54,15 @@
"devDependencies": {
"@keyv/sqlite": "^4.0.6",
"@types/express": "^5.0.6",
"@types/node": "^25.0.3",
"@types/node": "^25.2.0",

Choose a reason for hiding this comment

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

critical

The version for @types/node is specified as ^25.2.0. This seems to be a typo, as Node.js version 25 does not exist, and consequently, neither do its corresponding type definitions. This will cause dependency installation to fail. Please correct this to a valid and existing version, for example, one from the v20.x line which corresponds to the current Node.js LTS.

Suggested change
"@types/node": "^25.2.0",
"@types/node": "^20.14.9",

"@types/responselike": "^1.0.3",
"body-parser": "^2.2.2",
"delay": "^7.0.0",
"express": "^5.2.1",
"pify": "^6.1.0",
"rimraf": "^6.1.0",
"rimraf": "^6.1.2",

Choose a reason for hiding this comment

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

critical

The version for rimraf is being updated to ^6.1.2. This appears to be incorrect as version 6 of rimraf has not been released. The latest major version is 5. Please correct this to a valid version to avoid breaking the build.

Suggested change
"rimraf": "^6.1.2",
"rimraf": "^5.0.7",

"sqlite3": "^5.1.7",
"tsup": "^8.5.0",
"tsup": "^8.5.1",

Choose a reason for hiding this comment

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

critical

The version for tsup is being updated to ^8.5.1. This version does not seem to exist on the npm registry. The latest version is 8.1.0. Please use a valid version to ensure dependencies can be installed correctly.

Suggested change
"tsup": "^8.5.1",
"tsup": "^8.1.0",

"typescript": "^5.9.3"
}
}