fix: add tar and undici as direct devDependencies for Dependabot resolution (#68)

Dependabot security update runs are failing because it cannot resolve
patched versions of tar (>=7.5.11) and undici (>=7.24.0) through
transitive dependency chains. While npm overrides already mitigate the
vulnerabilities locally, Dependabot's resolver doesn't honor overrides.

Adding these as explicit devDependencies lets Dependabot see and
resolve the patched versions directly.

Co-authored-by: Gandalf the Greybeard <gandalf@privilegedescalation.dev>
Co-authored-by: Paperclip <noreply@paperclip.ing>
This commit was merged in pull request #68.
This commit is contained in:
gandalf-the-greybeard[bot]
2026-03-18 23:54:21 +00:00
committed by GitHub
parent 6a47358771
commit 0476fd1076
2 changed files with 4 additions and 0 deletions
+2
View File
@@ -21,6 +21,8 @@
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^5.3.0",
"tar": "^7.5.11",
"undici": "^7.24.3",
"vitest": "^3.0.5"
},
"peerDependencies": {
+2
View File
@@ -47,6 +47,8 @@
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^5.3.0",
"tar": "^7.5.11",
"undici": "^7.24.3",
"vitest": "^3.0.5"
}
}