Files
pnpm/fetching/pick-fetcher/package.json
2025-11-30 14:19:04 +01:00

57 lines
1.5 KiB
JSON

{
"name": "@pnpm/pick-fetcher",
"version": "1001.0.0",
"description": "Pick a package fetcher by type",
"keywords": [
"pnpm",
"pnpm11"
],
"license": "MIT",
"funding": "https://opencollective.com/pnpm",
"repository": "https://github.com/pnpm/pnpm/tree/main/fetching/pick-fetcher",
"homepage": "https://github.com/pnpm/pnpm/tree/main/fetching/pick-fetcher#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/cafs-types": "workspace:*",
"@pnpm/error": "workspace:*",
"@pnpm/fetcher-base": "workspace:*",
"@pnpm/hooks.types": "workspace:*",
"@pnpm/resolver-base": "workspace:*"
},
"devDependencies": {
"@jest/globals": "catalog:",
"@pnpm/create-cafs-store": "workspace:*",
"@pnpm/fetch": "workspace:*",
"@pnpm/pick-fetcher": "workspace:*",
"@pnpm/tarball-fetcher": "workspace:*",
"@pnpm/test-fixtures": "workspace:*",
"nock": "catalog:",
"tempy": "catalog:"
},
"engines": {
"node": ">=20.19"
},
"jest": {
"preset": "@pnpm/jest-config"
}
}