mirror of
https://github.com/pnpm/pnpm.git
synced 2026-01-04 04:58:19 -05:00
64 lines
1.6 KiB
JSON
64 lines
1.6 KiB
JSON
{
|
|
"name": "@pnpm/worker",
|
|
"version": "1000.1.9",
|
|
"description": "A worker for extracting package taralls to the store",
|
|
"keywords": [
|
|
"pnpm",
|
|
"pnpm10",
|
|
"tarball"
|
|
],
|
|
"license": "MIT",
|
|
"funding": "https://opencollective.com/pnpm",
|
|
"repository": "https://github.com/pnpm/pnpm/blob/main/worker",
|
|
"homepage": "https://github.com/pnpm/pnpm/blob/main/worker#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/pnpm/pnpm/issues"
|
|
},
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"exports": {
|
|
".": "./lib/index.js"
|
|
},
|
|
"files": [
|
|
"lib",
|
|
"!*.map"
|
|
],
|
|
"scripts": {
|
|
"lint": "eslint \"src/**/*.ts\"",
|
|
"prepublishOnly": "pnpm run compile",
|
|
"test": "pnpm run compile",
|
|
"compile": "tsc --build && pnpm run lint --fix"
|
|
},
|
|
"dependencies": {
|
|
"@pnpm/cafs-types": "workspace:*",
|
|
"@pnpm/create-cafs-store": "workspace:*",
|
|
"@pnpm/crypto.polyfill": "workspace:*",
|
|
"@pnpm/error": "workspace:*",
|
|
"@pnpm/exec.pkg-requires-build": "workspace:*",
|
|
"@pnpm/fs.hard-link-dir": "workspace:*",
|
|
"@pnpm/graceful-fs": "workspace:*",
|
|
"@pnpm/store.cafs": "workspace:*",
|
|
"@pnpm/symlink-dependency": "workspace:*",
|
|
"@rushstack/worker-pool": "catalog:",
|
|
"is-windows": "catalog:",
|
|
"load-json-file": "catalog:",
|
|
"p-limit": "catalog:",
|
|
"shlex": "catalog:"
|
|
},
|
|
"peerDependencies": {
|
|
"@pnpm/logger": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@pnpm/logger": "workspace:*",
|
|
"@pnpm/types": "workspace:*",
|
|
"@pnpm/worker": "workspace:*",
|
|
"@types/is-windows": "catalog:"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.12"
|
|
},
|
|
"jest": {
|
|
"preset": "@pnpm/jest-config"
|
|
}
|
|
}
|