setup-pdm/package.json
Axel H f94bfb2b4f
feat(node): update dependencies and build to target Node 20 (#46)
* build(node): update dependencies and build to target Node 20 and remove the build deprecation warning annotations

* ci: trigger build on pull requests
2024-01-25 11:16:20 +08:00

30 lines
905 B
JSON

{
"name": "setup-pdm",
"version": "2.0.0",
"description": "The GitHub Action for using pdm as the package manager",
"main": "dist/setup-pdm.js",
"scripts": {
"build": "esbuild src/setup-pdm.ts --bundle --platform=node --target=node20 --outfile=dist/setup-pdm.js && esbuild src/cache-save.ts --bundle --platform=node --target=node20 --outfile=dist/cache-save.js"
},
"packageManager": "pnpm@7.32.2",
"repository": {
"type": "git",
"url": "git+https://github.com/pdm-project/setup-pdm.git"
},
"dependencies": {
"@actions/cache": "^3.2.3",
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/glob": "^0.4.0",
"got": "^14.0.0",
"semver": "^7.5.4",
"setup-python": "actions/setup-python"
},
"devDependencies": {
"@types/node": "^18.11.0",
"@types/semver": "^7.5.4",
"esbuild": "^0.19.12",
"typescript": "^4.8.4"
}
}