mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-25 02:21:52 -04:00
46 lines
1.1 KiB
JSON
46 lines
1.1 KiB
JSON
{
|
|
"name": "@pnpm/read-package-json",
|
|
"version": "6.0.0",
|
|
"description": "Read a package.json",
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"engines": {
|
|
"node": ">=14.19"
|
|
},
|
|
"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/packages/read-package-json",
|
|
"keywords": [
|
|
"pnpm7",
|
|
"pnpm",
|
|
"outdated"
|
|
],
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/pnpm/pnpm/issues"
|
|
},
|
|
"homepage": "https://github.com/pnpm/pnpm/blob/main/packages/read-package-json#readme",
|
|
"dependencies": {
|
|
"@pnpm/error": "workspace:3.0.0",
|
|
"@pnpm/types": "workspace:8.0.0",
|
|
"load-json-file": "^6.2.0",
|
|
"normalize-package-data": "^3.0.2"
|
|
},
|
|
"funding": "https://opencollective.com/pnpm",
|
|
"devDependencies": {
|
|
"@pnpm/read-package-json": "workspace:6.0.0"
|
|
},
|
|
"exports": {
|
|
".": "./lib/index.js"
|
|
}
|
|
}
|