mirror of
https://github.com/pnpm/pnpm.git
synced 2025-12-23 23:29:17 -05:00
68 lines
1.8 KiB
JSON
68 lines
1.8 KiB
JSON
{
|
|
"name": "@pnpm/build-modules",
|
|
"version": "1002.0.0",
|
|
"description": "Build packages in node_modules",
|
|
"keywords": [
|
|
"pnpm",
|
|
"pnpm11",
|
|
"npm",
|
|
"resolver"
|
|
],
|
|
"license": "MIT",
|
|
"funding": "https://opencollective.com/pnpm",
|
|
"repository": "https://github.com/pnpm/pnpm/tree/main/exec/build-modules",
|
|
"homepage": "https://github.com/pnpm/pnpm/tree/main/exec/build-modules#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/pnpm/pnpm/issues"
|
|
},
|
|
"type": "module",
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"exports": {
|
|
".": "./lib/index.js"
|
|
},
|
|
"files": [
|
|
"lib",
|
|
"!*.map"
|
|
],
|
|
"scripts": {
|
|
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
"test": "pnpm run compile && pnpm run _test",
|
|
"prepublishOnly": "pnpm run compile",
|
|
"compile": "tsc --build && pnpm run lint --fix",
|
|
"_test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest"
|
|
},
|
|
"dependencies": {
|
|
"@pnpm/calc-dep-state": "workspace:*",
|
|
"@pnpm/config": "workspace:*",
|
|
"@pnpm/core-loggers": "workspace:*",
|
|
"@pnpm/deps.graph-sequencer": "workspace:*",
|
|
"@pnpm/fs.hard-link-dir": "workspace:*",
|
|
"@pnpm/lifecycle": "workspace:*",
|
|
"@pnpm/link-bins": "workspace:*",
|
|
"@pnpm/patching.apply-patch": "workspace:*",
|
|
"@pnpm/patching.types": "workspace:*",
|
|
"@pnpm/read-package-json": "workspace:*",
|
|
"@pnpm/store-controller-types": "workspace:*",
|
|
"@pnpm/types": "workspace:*",
|
|
"p-defer": "catalog:",
|
|
"ramda": "catalog:",
|
|
"run-groups": "catalog:"
|
|
},
|
|
"peerDependencies": {
|
|
"@pnpm/logger": "catalog:",
|
|
"@pnpm/worker": "workspace:^"
|
|
},
|
|
"devDependencies": {
|
|
"@pnpm/build-modules": "workspace:*",
|
|
"@pnpm/logger": "workspace:*",
|
|
"@types/ramda": "catalog:"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.19"
|
|
},
|
|
"jest": {
|
|
"preset": "@pnpm/jest-config"
|
|
}
|
|
}
|