Files
pnpm/cli/default-reporter/package.json
2025-11-13 15:44:27 +01:00

79 lines
2.2 KiB
JSON

{
"name": "@pnpm/default-reporter",
"version": "1002.0.11",
"description": "The default reporter of pnpm",
"keywords": [
"pnpm",
"pnpm11",
"pnpm-reporter"
],
"license": "MIT",
"funding": "https://opencollective.com/pnpm",
"repository": "https://github.com/pnpm/pnpm/tree/main/cli/default-reporter",
"homepage": "https://github.com/pnpm/pnpm/tree/main/cli/default-reporter#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": {
"start": "tsc --watch",
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
"just-test-preview": "ts-node test --type-check",
"_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/cli-meta": "workspace:*",
"@pnpm/config": "workspace:*",
"@pnpm/core-loggers": "workspace:*",
"@pnpm/dedupe.issues-renderer": "workspace:*",
"@pnpm/dedupe.types": "workspace:*",
"@pnpm/error": "workspace:*",
"@pnpm/render-peer-issues": "workspace:*",
"@pnpm/types": "workspace:*",
"@pnpm/util.lex-comparator": "catalog:",
"ansi-diff": "catalog:",
"boxen": "catalog:",
"chalk": "catalog:",
"cli-truncate": "catalog:",
"normalize-path": "catalog:",
"pretty-bytes": "catalog:",
"pretty-ms": "catalog:",
"ramda": "catalog:",
"rxjs": "catalog:",
"semver": "catalog:",
"stacktracey": "catalog:",
"string-length": "catalog:"
},
"peerDependencies": {
"@pnpm/logger": "catalog:"
},
"devDependencies": {
"@pnpm/default-reporter": "workspace:*",
"@pnpm/logger": "workspace:*",
"@types/normalize-path": "catalog:",
"@types/ramda": "catalog:",
"@types/semver": "catalog:",
"ghooks": "catalog:",
"load-json-file": "catalog:",
"normalize-newline": "catalog:"
},
"engines": {
"node": ">=20.19"
},
"jest": {
"preset": "@pnpm/jest-config"
}
}