mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-27 03:21:55 -04:00
* refactor: rename rebuildSelectedPkgs/rebuildProjects to buildSelectedPkgs/buildProjects The "rebuild" prefix is redundant now that these functions live in @pnpm/building.after-install. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: rename Rebuild option types to Build (RebuildOptions → BuildOptions, etc.) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: rename plugin-commands-rebuild and exec.build-commands to building domain - @pnpm/plugin-commands-rebuild → @pnpm/building.build-commands - @pnpm/exec.build-commands → @pnpm/building.policy-commands Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: move build-modules and pkg-requires-build to building domain - @pnpm/build-modules → @pnpm/building.during-install - @pnpm/exec.pkg-requires-build → @pnpm/building.pkg-requires-build Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * style: alphabetically sort imports after package renames Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * docs: add changeset --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
68 lines
1.9 KiB
JSON
68 lines
1.9 KiB
JSON
{
|
|
"name": "@pnpm/worker",
|
|
"version": "1000.3.0",
|
|
"description": "A worker for extracting package taralls to the store",
|
|
"keywords": [
|
|
"pnpm",
|
|
"pnpm11",
|
|
"tarball"
|
|
],
|
|
"license": "MIT",
|
|
"funding": "https://opencollective.com/pnpm",
|
|
"repository": "https://github.com/pnpm/pnpm/tree/main/worker",
|
|
"homepage": "https://github.com/pnpm/pnpm/tree/main/worker#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/pnpm/pnpm/issues"
|
|
},
|
|
"type": "module",
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"exports": {
|
|
".": "./lib/index.js",
|
|
"./start": "./lib/start.js"
|
|
},
|
|
"files": [
|
|
"lib",
|
|
"!*.map"
|
|
],
|
|
"scripts": {
|
|
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
"prepublishOnly": "pnpm run compile",
|
|
"test": "pnpm run compile && pnpm run _test",
|
|
"compile": "tsgo --build && pnpm run lint --fix",
|
|
"_test": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest"
|
|
},
|
|
"dependencies": {
|
|
"@pnpm/building.pkg-requires-build": "workspace:*",
|
|
"@pnpm/cafs-types": "workspace:*",
|
|
"@pnpm/create-cafs-store": "workspace:*",
|
|
"@pnpm/crypto.integrity": "workspace:*",
|
|
"@pnpm/error": "workspace:*",
|
|
"@pnpm/fs.hard-link-dir": "workspace:*",
|
|
"@pnpm/graceful-fs": "workspace:*",
|
|
"@pnpm/store.cafs": "workspace:*",
|
|
"@pnpm/store.index": "workspace:*",
|
|
"@pnpm/symlink-dependency": "workspace:*",
|
|
"@rushstack/worker-pool": "catalog:",
|
|
"is-windows": "catalog:",
|
|
"p-limit": "catalog:",
|
|
"semver": "catalog:"
|
|
},
|
|
"peerDependencies": {
|
|
"@pnpm/logger": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@pnpm/logger": "workspace:*",
|
|
"@pnpm/types": "workspace:*",
|
|
"@pnpm/worker": "workspace:*",
|
|
"@types/is-windows": "catalog:",
|
|
"@types/semver": "catalog:"
|
|
},
|
|
"engines": {
|
|
"node": ">=22.13"
|
|
},
|
|
"jest": {
|
|
"preset": "@pnpm/jest-config"
|
|
}
|
|
}
|