mirror of
https://github.com/pnpm/pnpm.git
synced 2026-02-24 02:57:04 -05:00
* chore: update typescript to v5.5 * fix: some errors * chore(deps): update @pnpm/logger * chore(deps): use catalogs * refactor: remove a type no longer necessary * chore(deps): revert the catalog changes This reverts commit5a3d4394f1. * refactor: move types to their own files * refactor: change logger error type * feat: add pkgsStack to LogBase * feat: add type param to StreamParser * refactor: move error fields out for clarity * style: fix eslint * feat: nullify non existence fields * feat: add hint * feat: remove the nullifications This reverts commit955e196032. * feat: add `package` field * feat: extend `RequestRetryMessage.error` * fix: missing `id` field * fix: statsLogger * fix: correct types * fix: pkgsDiff * refactor: use interfaces * fix: reportSummary * fix: revert erroneous change This reverts commit81042a0783. * fix: audit * fix: silentReporter * fix: reporter * fix: eslint * fix: main.ts * fix: errorHandler * refactor: share code * fix: test/reportingPeerDependencyIssues * fix: default-reporter/test/index.ts * fix: test/reportingErrors.ts * fix: test/execPnpm --------- Co-authored-by: khai96_ <hvksmr1996@gmail.com>
56 lines
1.5 KiB
JSON
56 lines
1.5 KiB
JSON
{
|
|
"name": "@pnpm/modules-cleaner",
|
|
"version": "15.1.10",
|
|
"description": "Exports util functions to clean up node_modules",
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"files": [
|
|
"lib",
|
|
"!*.map"
|
|
],
|
|
"peerDependencies": {
|
|
"@pnpm/logger": "^5.1.0"
|
|
},
|
|
"keywords": [
|
|
"pnpm9"
|
|
],
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=18.12"
|
|
},
|
|
"repository": "https://github.com/pnpm/pnpm/blob/main/pkg-manager/modules-cleaner",
|
|
"homepage": "https://github.com/pnpm/pnpm/blob/main/pkg-manager/modules-cleaner#readme",
|
|
"scripts": {
|
|
"start": "tsc --watch",
|
|
"test": "pnpm run compile",
|
|
"lint": "eslint \"src/**/*.ts\"",
|
|
"prepublishOnly": "pnpm run compile",
|
|
"compile": "tsc --build && pnpm run lint --fix"
|
|
},
|
|
"dependencies": {
|
|
"@pnpm/core-loggers": "workspace:*",
|
|
"@pnpm/dependency-path": "workspace:*",
|
|
"@pnpm/lockfile.filtering": "workspace:*",
|
|
"@pnpm/lockfile.types": "workspace:*",
|
|
"@pnpm/lockfile.utils": "workspace:*",
|
|
"@pnpm/read-modules-dir": "workspace:*",
|
|
"@pnpm/remove-bins": "workspace:*",
|
|
"@pnpm/store-controller-types": "workspace:*",
|
|
"@pnpm/types": "workspace:*",
|
|
"@zkochan/rimraf": "catalog:",
|
|
"ramda": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@pnpm/logger": "workspace:*",
|
|
"@pnpm/modules-cleaner": "workspace:*",
|
|
"@types/ramda": "catalog:"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/pnpm/pnpm/issues"
|
|
},
|
|
"funding": "https://opencollective.com/pnpm",
|
|
"exports": {
|
|
".": "./lib/index.js"
|
|
}
|
|
}
|