mirror of
https://github.com/pnpm/pnpm.git
synced 2025-12-23 23:29:17 -05:00
60 lines
1.6 KiB
JSON
60 lines
1.6 KiB
JSON
{
|
|
"name": "@pnpm/hooks.read-package-hook",
|
|
"version": "1000.0.15",
|
|
"description": "Creates the default package reader hook used by pnpm",
|
|
"keywords": [
|
|
"pnpm",
|
|
"pnpm11"
|
|
],
|
|
"license": "MIT",
|
|
"funding": "https://opencollective.com/pnpm",
|
|
"repository": "https://github.com/pnpm/pnpm/tree/main/hooks/read-package-hook",
|
|
"homepage": "https://github.com/pnpm/pnpm/tree/main/hooks/read-package-hook#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": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
|
|
"test": "pnpm run compile && pnpm run _test",
|
|
"prepublishOnly": "pnpm run compile",
|
|
"compile": "tsc --build && pnpm run lint --fix"
|
|
},
|
|
"dependencies": {
|
|
"@pnpm/error": "workspace:*",
|
|
"@pnpm/matcher": "workspace:*",
|
|
"@pnpm/parse-overrides": "workspace:*",
|
|
"@pnpm/parse-wanted-dependency": "workspace:*",
|
|
"@pnpm/semver.peer-range": "workspace:*",
|
|
"@pnpm/types": "workspace:*",
|
|
"@yarnpkg/extensions": "catalog:",
|
|
"normalize-path": "catalog:",
|
|
"ramda": "catalog:",
|
|
"semver": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@jest/globals": "catalog:",
|
|
"@pnpm/hooks.read-package-hook": "workspace:*",
|
|
"@types/normalize-path": "catalog:",
|
|
"@types/ramda": "catalog:",
|
|
"@types/semver": "catalog:",
|
|
"@yarnpkg/core": "catalog:"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.19"
|
|
},
|
|
"jest": {
|
|
"preset": "@pnpm/jest-config"
|
|
}
|
|
}
|