mirror of
https://github.com/pnpm/pnpm.git
synced 2025-12-31 11:08:12 -05:00
66 lines
3.0 KiB
JSON
66 lines
3.0 KiB
JSON
{
|
|
"name": "monorepo-root",
|
|
"private": true,
|
|
"packageManager": "pnpm@10.5.2",
|
|
"scripts": {
|
|
"bump": "changeset version && pnpm update-manifests",
|
|
"changeset": "changeset",
|
|
"preinstall": "npx only-allow pnpm",
|
|
"prepare": "husky",
|
|
"pretest": "pnpm run compile-only && pnpm --dir=__fixtures__ run prepareFixtures",
|
|
"lint": "pnpm run spellcheck && pnpm lint:meta && pnpm run lint:ts",
|
|
"spellcheck": "cspell \"**/*.ts\" \"**/README.md\" \".changeset/*.md\" --no-progress",
|
|
"lint:ts": "eslint \"**/src/**/*.ts\" \"**/test/**/*.ts\"",
|
|
"test-main": "pnpm pretest && pnpm lint --quiet && pnpm run test-pkgs-main",
|
|
"remove-temp-dir": "shx rm -rf ../pnpm_tmp",
|
|
"test-pkgs-main": "pnpm remove-temp-dir && pnpm run --no-sort --workspace-concurrency=1 -r _test",
|
|
"test-branch": "pnpm pretest && pnpm lint --quiet && git remote set-branches --add origin main && git fetch && pnpm run test-pkgs-branch",
|
|
"test-pkgs-branch": "pnpm remove-temp-dir && pnpm --workspace-concurrency=1 --filter=...[origin/main] run --no-sort _test",
|
|
"compile-only": "ts-node __utils__/scripts/src/typecheck-only.ts && pnpm -F pnpm compile",
|
|
"compile": "pnpm compile-only && pnpm run update-manifests",
|
|
"watch": "pnpm --filter=@pnpm/fetch run compile && pnpm --filter=pnpm run compile --watch",
|
|
"make-lcov": "shx mkdir -p coverage && lcov-result-merger './packages/*/coverage/lcov.info' 'coverage/lcov.info'",
|
|
"update-manifests": "pnpm run meta-updater && pnpm install",
|
|
"meta-updater": "pnpm --filter=@pnpm-private/updater compile && pnpm exec meta-updater",
|
|
"lint:meta": "pnpm run meta-updater --test",
|
|
"copy-artifacts": "ts-node __utils__/scripts/src/copy-artifacts.ts",
|
|
"make-release-description": "pnpm --filter=@pnpm/get-release-text run write-release-text",
|
|
"release": "pnpm --filter=@pnpm/exe publish --tag=next-10 --access=public && pnpm publish --filter=!pnpm --filter=!@pnpm/exe --access=public && pnpm publish --filter=pnpm --tag=next-10 --access=public",
|
|
"dev-setup": "pnpm -C=./pnpm/dev link -g"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.25.2",
|
|
"@babel/preset-typescript": "^7.24.7",
|
|
"@babel/types": "^7.25.6",
|
|
"@changesets/cli": "^2.27.12",
|
|
"@commitlint/cli": "^17.8.1",
|
|
"@commitlint/config-conventional": "^17.8.1",
|
|
"@commitlint/prompt-cli": "^17.8.1",
|
|
"@pnpm/eslint-config": "workspace:*",
|
|
"@pnpm/jest-config": "workspace:*",
|
|
"@pnpm/meta-updater": "catalog:",
|
|
"@pnpm/tgz-fixtures": "0.0.0",
|
|
"@pnpm/tsconfig": "workspace:*",
|
|
"@types/jest": "^29.5.12",
|
|
"@types/node": "catalog:",
|
|
"c8": "^7.14.0",
|
|
"concurrently": "catalog:",
|
|
"cross-env": "^7.0.3",
|
|
"cspell": "8.17.5",
|
|
"eslint": "^8.57.0",
|
|
"husky": "^9.1.5",
|
|
"jest": "^29.7.0",
|
|
"keyv": "4.5.4",
|
|
"lcov-result-merger": "^3.3.0",
|
|
"publish-packed": "^4.1.2",
|
|
"rimraf": "catalog:",
|
|
"shx": "^0.3.4",
|
|
"ts-jest": "29.2.3",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "5.5.4"
|
|
},
|
|
"engines": {
|
|
"pnpm": ">=9.6.0"
|
|
}
|
|
}
|