Files
pnpm/worker/package.json
2023-10-11 17:59:52 +03:00

53 lines
1.3 KiB
JSON

{
"name": "@pnpm/worker",
"version": "0.3.3",
"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.0"
},
"dependencies": {
"@pnpm/cafs-types": "workspace:*",
"@pnpm/create-cafs-store": "workspace:*",
"@pnpm/error": "workspace:*",
"@pnpm/graceful-fs": "workspace:*",
"@pnpm/symlink-dependency": "workspace:*",
"@pnpm/store.cafs": "workspace:*",
"@rushstack/worker-pool": "0.3.34",
"load-json-file": "^6.2.0"
},
"devDependencies": {
"@pnpm/types": "workspace:*",
"@pnpm/worker": "workspace:*"
},
"funding": "https://opencollective.com/pnpm",
"exports": {
".": "./lib/index.js"
}
}