Files
setup-github-release/package.json
Slawomir Koszewski 464bc61030
Some checks failed
Test Action / test (push) Failing after 46s
Added missing dist folder with action executable nodejs script.
2026-01-11 00:07:45 +01:00

35 lines
870 B
JSON

{
"name": "setup-github-release",
"version": "1.0.0",
"description": "A GitHub Action to download a tool",
"main": "dist/index.js",
"scripts": {
"build": "esbuild src/index.ts --bundle --platform=node --target=node24 --outfile=dist/index.js --minify",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "npm run build",
"test": "jest",
"all": "npm run format && npm run lint && npm run test && npm run package"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=24"
},
"dependencies": {
"@actions/core": "^1.11.0",
"@actions/tool-cache": "^2.0.2"
},
"devDependencies": {
"@types/node": "^25.0.0",
"esbuild": "^0.27.2",
"typescript": "^5.9.0"
}
}