Files
pnpm/lockfile/lockfile-to-pnp/package.json
2025-11-13 15:44:27 +01:00

60 lines
1.5 KiB
JSON

{
"name": "@pnpm/lockfile-to-pnp",
"version": "1001.0.23",
"description": "Creates a Plug'n'Play file from a pnpm-lock.yaml",
"keywords": [
"pnpm",
"pnpm11",
"lockfile",
"shrinkwrap"
],
"license": "MIT",
"funding": "https://opencollective.com/pnpm",
"repository": "https://github.com/pnpm/pnpm/tree/main/lockfile/lockfile-to-pnp",
"homepage": "https://github.com/pnpm/pnpm/tree/main/lockfile/lockfile-to-pnp#readme",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": "./lib/index.js"
},
"files": [
"lib",
"!*.map"
],
"scripts": {
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
"test": "pnpm run compile && pnpm run _test",
"prepublishOnly": "pnpm run compile",
"_test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"compile": "tsc --build && pnpm run lint --fix"
},
"dependencies": {
"@pnpm/dependency-path": "workspace:*",
"@pnpm/lockfile.fs": "workspace:*",
"@pnpm/lockfile.utils": "workspace:*",
"@pnpm/types": "workspace:*",
"@yarnpkg/pnp": "catalog:",
"normalize-path": "catalog:",
"ramda": "catalog:"
},
"peerDependencies": {
"@pnpm/logger": "catalog:"
},
"devDependencies": {
"@pnpm/lockfile-to-pnp": "workspace:*",
"@pnpm/logger": "workspace:*",
"@types/normalize-path": "catalog:",
"@types/ramda": "catalog:"
},
"engines": {
"node": ">=20.19"
},
"jest": {
"preset": "@pnpm/jest-config"
}
}