Files
pnpm/fetching/pick-fetcher/package.json

43 lines
1.0 KiB
JSON

{
"name": "@pnpm/pick-fetcher",
"version": "1000.0.0",
"description": "Pick a package fetcher by type",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"!*.map"
],
"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/fetching/pick-fetcher",
"license": "MIT",
"engines": {
"node": ">=18.12"
},
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},
"homepage": "https://github.com/pnpm/pnpm/blob/main/fetching/pick-fetcher#readme",
"funding": "https://opencollective.com/pnpm",
"keywords": [
"pnpm10"
],
"devDependencies": {
"@pnpm/fetcher-base": "workspace:*",
"@pnpm/pick-fetcher": "workspace:*",
"@pnpm/resolver-base": "workspace:*"
},
"exports": {
".": "./lib/index.js"
},
"jest": {
"preset": "@pnpm/jest-config"
}
}