Skip to content

Commit 18c2345

Browse files
szegediclaude
andcommitted
Reconcile package.json with package-lock.json for npm ci
The v5.x lockfile carried newer versions than package.json declared — a desync that lockless `yarn` never validated but `npm ci` (now used by the lint job) rejects: - @types/node: package.json 25.9.1 vs lock 25.9.2 - tmp: package.json 0.2.6 vs lock 0.2.7 Align package.json up to the already-locked versions rather than down: tmp 0.2.6 carries a High-severity advisory (GHSA-7c78-jf6q-g5cm) and the lock was already advanced to the fixed 0.2.7. This changes nothing about what gets installed; it only makes the manifest honest. Regenerating the lockfile also drops the stale root `hasInstallScript` flag (the install script was removed in #363) and realigns the eslint-plugin-n / semver range mirrors with package.json. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 9356084 commit 18c2345

2 files changed

Lines changed: 4 additions & 5 deletions

File tree

package-lock.json

Lines changed: 2 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
},
4343
"devDependencies": {
4444
"@types/mocha": "^10.0.1",
45-
"@types/node": "25.9.1",
45+
"@types/node": "25.9.2",
4646
"@types/semver": "^7.5.8",
4747
"@types/sinon": "^21.0.1",
4848
"@types/tmp": "^0.2.3",
@@ -58,7 +58,7 @@
5858
"semver": "^7.8.1",
5959
"sinon": "^22.0.0",
6060
"source-map-support": "^0.5.21",
61-
"tmp": "0.2.6",
61+
"tmp": "0.2.7",
6262
"typescript": "^6.0.3"
6363
},
6464
"files": [

0 commit comments

Comments
 (0)