Files
pnpm/hooks/read-package-hook/package.json
2024-10-02 12:19:20 +02:00

53 lines
1.4 KiB
JSON

{
"name": "@pnpm/hooks.read-package-hook",
"version": "5.1.0",
"description": "Creates the default package reader hook used by pnpm",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"!*.map"
],
"scripts": {
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
"_test": "jest",
"test": "pnpm run compile && pnpm run _test",
"prepublishOnly": "pnpm run compile",
"compile": "tsc --build && pnpm run lint --fix"
},
"repository": "https://github.com/pnpm/pnpm/blob/main/hooks/read-package-hook",
"keywords": [
"pnpm9"
],
"engines": {
"node": ">=18.12"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},
"homepage": "https://github.com/pnpm/pnpm/blob/main/hooks/read-package-hook#readme",
"dependencies": {
"@pnpm/error": "workspace:*",
"@pnpm/matcher": "workspace:*",
"@pnpm/parse-overrides": "workspace:*",
"@pnpm/parse-wanted-dependency": "workspace:*",
"@pnpm/types": "workspace:*",
"@yarnpkg/extensions": "catalog:",
"normalize-path": "catalog:",
"ramda": "catalog:",
"semver": "catalog:"
},
"devDependencies": {
"@pnpm/hooks.read-package-hook": "workspace:*",
"@types/normalize-path": "catalog:",
"@types/ramda": "catalog:",
"@types/semver": "catalog:",
"@yarnpkg/core": "catalog:"
},
"funding": "https://opencollective.com/pnpm",
"exports": {
".": "./lib/index.js"
}
}