Files
pnpm/pkg-manager/client/package.json
2024-12-16 02:31:45 +01:00

58 lines
1.5 KiB
JSON

{
"name": "@pnpm/client",
"version": "1000.0.1",
"description": "Creates the package resolve and fetch functions",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"!*.map"
],
"engines": {
"node": ">=18.12"
},
"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"
},
"repository": "https://github.com/pnpm/pnpm/blob/main/pkg-manager/client",
"keywords": [
"pnpm10",
"pnpm",
"resolver",
"npm"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},
"homepage": "https://github.com/pnpm/pnpm/blob/main/pkg-manager/client#readme",
"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:"
},
"funding": "https://opencollective.com/pnpm",
"exports": {
".": "./lib/index.js"
},
"jest": {
"preset": "@pnpm/jest-config"
}
}