mirror of
https://github.com/pnpm/pnpm.git
synced 2026-02-23 18:47:06 -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>
82 lines
2.4 KiB
JSON
82 lines
2.4 KiB
JSON
{
|
|
"name": "@pnpm/package-requester",
|
|
"version": "25.2.4",
|
|
"description": "Concurrent downloader of npm-compatible packages",
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"files": [
|
|
"lib",
|
|
"!*.map"
|
|
],
|
|
"engines": {
|
|
"node": ">=18.12"
|
|
},
|
|
"scripts": {
|
|
"start": "tsc --watch",
|
|
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
"_test": "cross-env PNPM_REGISTRY_MOCK_PORT=7774 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/pkg-manager/package-requester",
|
|
"keywords": [
|
|
"pnpm9",
|
|
"pnpm",
|
|
"resolver",
|
|
"npm"
|
|
],
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/pnpm/pnpm/issues"
|
|
},
|
|
"homepage": "https://github.com/pnpm/pnpm/blob/main/pkg-manager/package-requester#readme",
|
|
"peerDependencies": {
|
|
"@pnpm/logger": "^5.1.0",
|
|
"@pnpm/worker": "workspace:^"
|
|
},
|
|
"dependencies": {
|
|
"@pnpm/core-loggers": "workspace:*",
|
|
"@pnpm/dependency-path": "workspace:*",
|
|
"@pnpm/error": "workspace:*",
|
|
"@pnpm/fetcher-base": "workspace:*",
|
|
"@pnpm/graceful-fs": "workspace:*",
|
|
"@pnpm/package-is-installable": "workspace:*",
|
|
"@pnpm/pick-fetcher": "workspace:*",
|
|
"@pnpm/read-package-json": "workspace:*",
|
|
"@pnpm/resolver-base": "workspace:*",
|
|
"@pnpm/store-controller-types": "workspace:*",
|
|
"@pnpm/store.cafs": "workspace:*",
|
|
"@pnpm/types": "workspace:*",
|
|
"p-defer": "catalog:",
|
|
"p-limit": "catalog:",
|
|
"p-queue": "catalog:",
|
|
"promise-share": "catalog:",
|
|
"ramda": "catalog:",
|
|
"semver": "catalog:",
|
|
"ssri": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@pnpm/cafs-types": "workspace:*",
|
|
"@pnpm/client": "workspace:*",
|
|
"@pnpm/create-cafs-store": "workspace:*",
|
|
"@pnpm/logger": "workspace:*",
|
|
"@pnpm/package-requester": "workspace:*",
|
|
"@pnpm/registry-mock": "catalog:",
|
|
"@pnpm/test-fixtures": "workspace:*",
|
|
"@types/normalize-path": "catalog:",
|
|
"@types/ramda": "catalog:",
|
|
"@types/semver": "catalog:",
|
|
"@types/ssri": "catalog:",
|
|
"delay": "catalog:",
|
|
"load-json-file": "catalog:",
|
|
"nock": "catalog:",
|
|
"normalize-path": "catalog:",
|
|
"tempy": "catalog:"
|
|
},
|
|
"funding": "https://opencollective.com/pnpm",
|
|
"exports": {
|
|
".": "./lib/index.js"
|
|
}
|
|
}
|