Files
pnpm/pkg-manifest/reader/package.json
2026-03-28 11:55:51 +01:00

51 lines
1.3 KiB
JSON

{
"name": "@pnpm/pkg-manifest.reader",
"version": "1000.1.2",
"description": "Read a package.json",
"keywords": [
"pnpm",
"pnpm11",
"outdated"
],
"license": "MIT",
"funding": "https://opencollective.com/pnpm",
"repository": "https://github.com/pnpm/pnpm/tree/main/pkg-manifest/reader",
"homepage": "https://github.com/pnpm/pnpm/tree/main/pkg-manifest/reader#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": "pn compile && pn .test",
"prepublishOnly": "pn compile",
"compile": "tsgo --build && pn lint --fix",
".test": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules --disable-warning=ExperimentalWarning --disable-warning=DEP0169\" jest"
},
"dependencies": {
"@pnpm/error": "workspace:*",
"@pnpm/types": "workspace:*",
"load-json-file": "catalog:",
"normalize-package-data": "catalog:"
},
"devDependencies": {
"@pnpm/pkg-manifest.reader": "workspace:*",
"@types/normalize-package-data": "catalog:"
},
"engines": {
"node": ">=22.13"
},
"jest": {
"preset": "@pnpm/jest-config"
}
}