deno/tests/specs/npm/link_npm_package_deep/expected_lockfile.out
David Sherret 56ce3352d2
fix(unstable): rename "patch" property to "links" (#29677)
This is to help make this feature less ambiguous with `npm patch`, which
it's not like.

Note: the "patch" property will continue to work for the time being, but
the lockfile will have a bit of churn for this unstable property. We're
going to merge this in a patch because this feature is unstable.
2025-06-10 21:51:23 +00:00

26 lines
707 B
Text

{
"version": "5",
"specifiers": {
"npm:@denotest/different-nested-dep@*": "1.0.0"
},
"npm": {
"@denotest/different-nested-dep-child@1.0.0": {},
"@denotest/different-nested-dep@1.0.0": {
"integrity": "sha512-lsB/nZ3X5zTVihQ0YeX97wQcYMoUfvnOc2wf5Y83N6OtqOJEoekRqXnudMZptyPNam02M6JRZVKxg4E6arKc1Q==",
"dependencies": [
"@denotest/different-nested-dep-child"
],
"tarball": "http://localhost:4260/@denotest/different-nested-dep/1.0.0.tgz"
}
},
"workspace": {
"packageJson": {
"dependencies": [
"npm:@denotest/different-nested-dep@*"
]
},
"links": {
"npm:@denotest/different-nested-dep-child@1.0.0": {}
}
}
}