Files
pnpm/env/node.fetcher/package.json
btea 4a8243a00d chore: package.json add type field (#9765)
* chore: `package.json` add type field

* chore: add type field to every package.json

* chore: add type field to every package.json

---------

Co-authored-by: Zoltan Kochan <z@kochan.io>
2025-07-20 03:21:46 +02:00

66 lines
1.7 KiB
JSON

{
"name": "@pnpm/node.fetcher",
"version": "1000.0.20",
"description": "Node.js artifacts fetcher",
"keywords": [
"pnpm",
"pnpm10",
"env",
"node.js"
],
"license": "MIT",
"funding": "https://opencollective.com/pnpm",
"repository": "https://github.com/pnpm/pnpm/blob/main/env/node.fetcher",
"homepage": "https://github.com/pnpm/pnpm/blob/main/env/node.fetcher#readme",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},
"type": "commonjs",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": "./lib/index.js"
},
"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"
},
"dependencies": {
"@pnpm/constants": "workspace:*",
"@pnpm/create-cafs-store": "workspace:*",
"@pnpm/crypto.shasums-file": "workspace:*",
"@pnpm/error": "workspace:*",
"@pnpm/fetcher-base": "workspace:*",
"@pnpm/fetching-types": "workspace:*",
"@pnpm/node.resolver": "workspace:*",
"@pnpm/tarball-fetcher": "workspace:*",
"@pnpm/worker": "workspace:*",
"adm-zip": "catalog:",
"detect-libc": "catalog:",
"rename-overwrite": "catalog:",
"ssri": "catalog:",
"tempy": "catalog:"
},
"devDependencies": {
"@pnpm/cafs-types": "workspace:*",
"@pnpm/node.fetcher": "workspace:*",
"@pnpm/prepare": "workspace:*",
"@types/adm-zip": "catalog:",
"@types/ssri": "catalog:",
"node-fetch": "catalog:"
},
"engines": {
"node": ">=18.12"
},
"jest": {
"preset": "@pnpm/jest-config"
}
}