mirror of
https://github.com/pnpm/pnpm.git
synced 2025-12-23 23:29:17 -05:00
50 lines
1.2 KiB
JSON
50 lines
1.2 KiB
JSON
{
|
|
"name": "@pnpm/fetcher-base",
|
|
"version": "1001.0.2",
|
|
"description": "Types for pnpm-compatible fetchers",
|
|
"keywords": [
|
|
"pnpm",
|
|
"pnpm11",
|
|
"fetcher"
|
|
],
|
|
"license": "MIT",
|
|
"funding": "https://opencollective.com/pnpm",
|
|
"repository": "https://github.com/pnpm/pnpm/tree/main/fetching/fetcher-base",
|
|
"homepage": "https://github.com/pnpm/pnpm/tree/main/fetching/fetcher-base#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": {
|
|
"start": "tsc --watch",
|
|
"lint": "eslint \"src/**/*.ts\"",
|
|
"test": "pnpm run compile",
|
|
"prepublishOnly": "pnpm run compile",
|
|
"compile": "tsc --build && pnpm run lint --fix"
|
|
},
|
|
"dependencies": {
|
|
"@pnpm/resolver-base": "workspace:*",
|
|
"@pnpm/types": "workspace:*",
|
|
"@types/ssri": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@pnpm/cafs-types": "workspace:*",
|
|
"@pnpm/fetcher-base": "workspace:*"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.19"
|
|
},
|
|
"jest": {
|
|
"preset": "@pnpm/jest-config"
|
|
}
|
|
}
|