1
0
mirror of https://github.com/pnpm/action-setup.git synced 2026-03-01 07:51:02 +08:00
action-setup/package.json
Justin Linn e7a4f3e592
chore: sync with upstream pnpm/action-setup v4.2.0
Merge latest upstream changes including:
- Store caching support (cache and cache_dependency_path inputs)
- Custom NPM registry installation support
- Refactored star imports
- CI improvements (pinned actions, excluded macOS)
- README and documentation updates
- Dependency cleanup (removed unused @types/node-fetch)
2026-02-14 22:55:36 -05:00

40 lines
1.1 KiB
JSON

{
"private": true,
"engines": {
"node": ">=22.0.0"
},
"pnpm": {
"overrides": {
"form-data": ">=4.0.4"
}
},
"scripts": {
"build:ncc": "ncc build --minify --no-source-map-register --no-cache dist/tsc/index.js --out dist/",
"build": "tsc && pnpm run build:ncc",
"start": "pnpm run build && sh ./run.sh",
"update-pnpm-dist": "pnpm install && cp ./node_modules/pnpm/dist/pnpm.cjs ./dist/pnpm.cjs && cp ./node_modules/pnpm/dist/worker.js ./dist/worker.js",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"check": "pnpm lint && pnpm typecheck"
},
"dependencies": {
"@actions/cache": "^4.1.0",
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/glob": "^0.5.0",
"@types/expand-tilde": "^2.0.2",
"@types/node": "^20.11.5",
"expand-tilde": "^2.0.2",
"yaml": "^2.3.4",
"zod": "^3.22.4"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^9.17.0",
"pnpm": "^10.0.0",
"typescript": "^5.3.3",
"typescript-eslint": "^8.19.1"
}
}