Files
pnpm/fetching/tarball-fetcher/package.json
2025-03-17 14:46:34 +01:00

76 lines
2.0 KiB
JSON

{
"name": "@pnpm/tarball-fetcher",
"version": "1001.0.0",
"description": "Fetcher for packages hosted as tarballs",
"keywords": [
"pnpm",
"pnpm10",
"fetcher",
"tarball"
],
"license": "MIT",
"funding": "https://opencollective.com/pnpm",
"repository": "https://github.com/pnpm/pnpm/blob/main/fetching/tarball-fetcher",
"homepage": "https://github.com/pnpm/pnpm/blob/main/fetching/tarball-fetcher#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\"",
"prepublishOnly": "pnpm run compile",
"_test": "jest",
"test": "pnpm run compile && pnpm run _test",
"compile": "tsc --build && pnpm run lint --fix"
},
"dependencies": {
"@pnpm/core-loggers": "workspace:*",
"@pnpm/error": "workspace:*",
"@pnpm/fetcher-base": "workspace:*",
"@pnpm/fetching-types": "workspace:*",
"@pnpm/fs.packlist": "catalog:",
"@pnpm/graceful-fs": "workspace:*",
"@pnpm/prepare-package": "workspace:*",
"@zkochan/retry": "catalog:",
"lodash.throttle": "catalog:",
"p-map-values": "catalog:",
"path-temp": "catalog:",
"ramda": "catalog:",
"rename-overwrite": "catalog:"
},
"peerDependencies": {
"@pnpm/logger": ">=5.1.0 <1001.0.0",
"@pnpm/worker": "workspace:^"
},
"devDependencies": {
"@pnpm/cafs-types": "workspace:*",
"@pnpm/create-cafs-store": "workspace:*",
"@pnpm/fetch": "workspace:*",
"@pnpm/logger": "workspace:*",
"@pnpm/tarball-fetcher": "workspace:*",
"@pnpm/test-fixtures": "workspace:*",
"@pnpm/types": "workspace:*",
"@types/lodash.throttle": "catalog:",
"@types/ramda": "catalog:",
"@types/retry": "catalog:",
"@types/ssri": "catalog:",
"nock": "catalog:",
"ssri": "catalog:",
"tempy": "catalog:"
},
"engines": {
"node": ">=18.12"
},
"jest": {
"preset": "@pnpm/jest-config"
}
}