Files
pnpm/pkg-manager/client/package.json
2025-07-09 00:44:17 +02:00

58 lines
1.5 KiB
JSON

{
"name": "@pnpm/client",
"version": "1000.0.21",
"description": "Creates the package resolve and fetch functions",
"keywords": [
"pnpm",
"pnpm10",
"npm",
"resolver"
],
"license": "MIT",
"funding": "https://opencollective.com/pnpm",
"repository": "https://github.com/pnpm/pnpm/blob/main/pkg-manager/client",
"homepage": "https://github.com/pnpm/pnpm/blob/main/pkg-manager/client#readme",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": "./lib/index.js"
},
"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"
},
"dependencies": {
"@pnpm/default-resolver": "workspace:*",
"@pnpm/directory-fetcher": "workspace:*",
"@pnpm/fetch": "workspace:*",
"@pnpm/fetching-types": "workspace:*",
"@pnpm/git-fetcher": "workspace:*",
"@pnpm/network.auth-header": "workspace:*",
"@pnpm/resolver-base": "workspace:*",
"@pnpm/tarball-fetcher": "workspace:*",
"@pnpm/types": "workspace:*",
"ramda": "catalog:"
},
"devDependencies": {
"@pnpm/client": "workspace:*",
"@pnpm/fetcher-base": "workspace:*",
"@types/ramda": "catalog:"
},
"engines": {
"node": ">=18.12"
},
"jest": {
"preset": "@pnpm/jest-config"
}
}