Files
setup-pnpm/package.json

24 lines
648 B
JSON
Raw Normal View History

2020-05-08 09:58:03 +07:00
{
"private": true,
2020-05-08 10:22:09 +07:00
"scripts": {
"build:bundle": "esbuild src/index.ts --bundle --platform=node --target=node24 --format=cjs --minify --outfile=dist/index.js --loader:.json=json",
"build": "pnpm run build:bundle",
"start": "pnpm run build && sh ./run.sh"
2020-05-08 10:22:09 +07:00
},
2020-05-08 09:58:03 +07:00
"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": "^22.0.0",
2020-05-08 14:24:25 +07:00
"expand-tilde": "^2.0.2",
"yaml": "^2.3.4",
"zod": "^3.22.4"
2020-05-08 09:58:03 +07:00
},
"devDependencies": {
"esbuild": "^0.27.4",
"typescript": "^5.3.3"
2020-05-08 09:58:03 +07:00
}
}