Skip to content
Open
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
10 changes: 10 additions & 0 deletions examples/pnpm-aliased-chain/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"name": "cve-lite-example-pnpm-aliased-chain",
"version": "1.0.0",
"private": true,
"description": "pnpm v9 regression fixture: deep transitive chain through an aliased intermediate (@remix-run/dev → @vercel/remix-run-dev) — path resolution and parent upgrade must stay correct.",
"license": "MIT",
"dependencies": {
"vercel": "32.0.0"
}
}
31 changes: 31 additions & 0 deletions examples/pnpm-aliased-chain/pnpm-lock.yaml

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

4 changes: 4 additions & 0 deletions examples/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ Small curated projects committed to the repository. Clone the repo and scan imme
| `bun-simple` | Bun | Minimal Bun lockfile with a direct and transitive vulnerability. |
| `bun-workspace` | Bun (workspace) | Bun workspace monorepo with workspace-scoped fix commands. |
| `pnpm-simple` | pnpm | Minimal pnpm v9 lockfile with a single direct vulnerability. |
| `pnpm-aliased-chain` | pnpm | Deep transitive chain through a pnpm v9 aliased intermediate — path resolution must use the real package name. |
| `pnpm-workspace` | pnpm (workspace) | pnpm workspace monorepo with workspace-scoped fix commands. |
| `wrong-parent` | npm | 3-level transitive chain where the immediate parent's range already covers the fix — expects `npm update js-cookie`, not a parent bump. |
| `no-findings` | npm | Clean project with no known vulnerabilities — demonstrates success output. |
| `lima-site` | npm | Dev-dependency scanning in a documentation site. |

Expand Down Expand Up @@ -143,7 +145,9 @@ node dist/index.js examples/yarn-classic --verbose
node dist/index.js examples/bun-simple --verbose
node dist/index.js examples/bun-workspace --verbose
node dist/index.js examples/pnpm-simple --verbose
node dist/index.js examples/pnpm-aliased-chain --verbose
node dist/index.js examples/pnpm-workspace --verbose
node dist/index.js examples/wrong-parent --verbose
node dist/index.js examples/no-findings
node dist/index.js examples/lima-site --verbose

Expand Down