Files
pnpm/network/fetch/package.json
2025-11-13 15:44:27 +01:00

59 lines
1.4 KiB
JSON

{
"name": "@pnpm/fetch",
"version": "1000.2.6",
"description": "node-fetch with retries",
"keywords": [
"pnpm",
"pnpm11",
"fetch",
"npm"
],
"license": "MIT",
"funding": "https://opencollective.com/pnpm",
"repository": "https://github.com/pnpm/pnpm/tree/main/network/fetch",
"homepage": "https://github.com/pnpm/pnpm/tree/main/network/fetch#readme",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": "./lib/index.js"
},
"files": [
"lib",
"!*.map"
],
"scripts": {
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
"_test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"test": "pnpm run compile && pnpm run _test",
"prepublishOnly": "pnpm run compile",
"compile": "tsc --build && pnpm run lint --fix"
},
"dependencies": {
"@pnpm/core-loggers": "workspace:*",
"@pnpm/fetching-types": "workspace:*",
"@pnpm/network.agent": "catalog:",
"@pnpm/types": "workspace:*",
"@zkochan/retry": "catalog:",
"node-fetch": "catalog:"
},
"peerDependencies": {
"@pnpm/logger": "catalog:"
},
"devDependencies": {
"@pnpm/fetch": "workspace:*",
"@pnpm/logger": "workspace:*",
"https-proxy-server-express": "catalog:",
"nock": "catalog:"
},
"engines": {
"node": ">=20.19"
},
"jest": {
"preset": "@pnpm/jest-config"
}
}