Files
pnpm/pkg-manager/link-bins/package.json
2024-06-27 22:06:05 +02:00

72 lines
1.9 KiB
JSON

{
"name": "@pnpm/link-bins",
"version": "10.0.4",
"description": "Link bins to node_modules/.bin",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"!*.map"
],
"engines": {
"node": ">=18.12"
},
"scripts": {
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
"_test": "jest",
"test": "pnpm run compile && pnpm run _test",
"prepublishOnly": "pnpm run compile",
"fix": "tslint -c tslint.json --project . --fix",
"compile": "tsc --build && pnpm run lint --fix"
},
"repository": "https://github.com/pnpm/pnpm/blob/main/pkg-manager/link-bins",
"keywords": [
"pnpm9",
"pnpm",
"bin"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},
"homepage": "https://github.com/pnpm/pnpm/blob/main/pkg-manager/link-bins#readme",
"dependencies": {
"@pnpm/error": "workspace:*",
"@pnpm/manifest-utils": "workspace:*",
"@pnpm/package-bins": "workspace:*",
"@pnpm/read-modules-dir": "workspace:*",
"@pnpm/read-package-json": "workspace:*",
"@pnpm/read-project-manifest": "workspace:*",
"@pnpm/types": "workspace:*",
"@zkochan/cmd-shim": "catalog:",
"@zkochan/rimraf": "catalog:",
"bin-links": "catalog:",
"is-subdir": "catalog:",
"is-windows": "catalog:",
"normalize-path": "catalog:",
"p-settle": "catalog:",
"ramda": "catalog:",
"semver": "catalog:",
"symlink-dir": "catalog:"
},
"devDependencies": {
"@pnpm/link-bins": "workspace:*",
"@pnpm/test-fixtures": "workspace:*",
"@types/is-windows": "catalog:",
"@types/node": "catalog:",
"@types/normalize-path": "catalog:",
"@types/ramda": "catalog:",
"@types/semver": "catalog:",
"cmd-extension": "catalog:",
"path-exists": "catalog:",
"tempy": "catalog:"
},
"funding": "https://opencollective.com/pnpm",
"peerDependencies": {
"@pnpm/logger": "^5.0.0"
},
"exports": {
".": "./lib/index.js"
}
}