Files
pnpm/network/fetch/package.json
2024-10-06 15:52:06 +02:00

51 lines
1.2 KiB
JSON

{
"name": "@pnpm/fetch",
"version": "7.0.7",
"description": "node-fetch with retries",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"!*.map"
],
"engines": {
"node": ">=16.14"
},
"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": [
"pnpm8",
"fetch",
"npm"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},
"peerDependencies": {
"@pnpm/logger": "5.0 || 5.1"
},
"homepage": "https://github.com/pnpm/pnpm/blob/main/network/fetch#readme",
"dependencies": {
"@pnpm/core-loggers": "workspace:*",
"@pnpm/fetching-types": "workspace:*",
"@pnpm/network.agent": "0.1.0",
"@zkochan/retry": "^0.2.0",
"node-fetch": "npm:@pnpm/node-fetch@1.0.0"
},
"devDependencies": {
"@pnpm/fetch": "workspace:*",
"nock": "13.3.4"
},
"funding": "https://opencollective.com/pnpm",
"exports": {
".": "./lib/index.js"
}
}