mirror of
https://github.com/pnpm/pnpm.git
synced 2025-12-27 00:58:11 -05:00
54 lines
1.3 KiB
JSON
54 lines
1.3 KiB
JSON
{
|
|
"name": "@pnpm/fetch",
|
|
"version": "8.0.7",
|
|
"description": "node-fetch with retries",
|
|
"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/network/fetch",
|
|
"keywords": [
|
|
"pnpm9",
|
|
"fetch",
|
|
"npm"
|
|
],
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/pnpm/pnpm/issues"
|
|
},
|
|
"peerDependencies": {
|
|
"@pnpm/logger": "^5.1.0"
|
|
},
|
|
"homepage": "https://github.com/pnpm/pnpm/blob/main/network/fetch#readme",
|
|
"dependencies": {
|
|
"@pnpm/core-loggers": "workspace:*",
|
|
"@pnpm/fetching-types": "workspace:*",
|
|
"@pnpm/network.agent": "catalog:",
|
|
"@pnpm/types": "workspace:*",
|
|
"@zkochan/retry": "catalog:",
|
|
"node-fetch": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@pnpm/fetch": "workspace:*",
|
|
"@pnpm/logger": "workspace:*",
|
|
"https-proxy-server-express": "catalog:",
|
|
"nock": "catalog:"
|
|
},
|
|
"funding": "https://opencollective.com/pnpm",
|
|
"exports": {
|
|
".": "./lib/index.js"
|
|
}
|
|
}
|