Files
pnpm/worker/package.json
2024-10-06 15:52:06 +02:00

54 lines
1.3 KiB
JSON

{
"name": "@pnpm/worker",
"version": "0.3.15",
"description": "A worker for extracting package taralls to the store",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"!*.map"
],
"scripts": {
"lint": "eslint \"src/**/*.ts\"",
"prepublishOnly": "pnpm run compile",
"test": "pnpm run compile",
"compile": "tsc --build && pnpm run lint --fix"
},
"repository": "https://github.com/pnpm/pnpm/blob/main/worker",
"keywords": [
"pnpm8",
"pnpm",
"tarball"
],
"engines": {
"node": ">=16.14"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},
"homepage": "https://github.com/pnpm/pnpm/blob/main/worker#readme",
"peerDependencies": {
"@pnpm/logger": "5.0 || 5.1"
},
"dependencies": {
"@pnpm/cafs-types": "workspace:*",
"@pnpm/create-cafs-store": "workspace:*",
"@pnpm/error": "workspace:*",
"@pnpm/fs.hard-link-dir": "workspace:*",
"@pnpm/graceful-fs": "workspace:*",
"@pnpm/store.cafs": "workspace:*",
"@pnpm/symlink-dependency": "workspace:*",
"@rushstack/worker-pool": "0.4.9",
"load-json-file": "^6.2.0"
},
"devDependencies": {
"@pnpm/types": "workspace:*",
"@pnpm/worker": "workspace:*"
},
"funding": "https://opencollective.com/pnpm",
"exports": {
".": "./lib/index.js"
}
}