Files
action-gh-release/package.json
T

48 lines
1.5 KiB
JSON
Raw Normal View History

2019-09-09 17:10:07 +09:00
{
"name": "action-gh-release",
"version": "3.0.0",
2019-09-09 17:10:07 +09:00
"private": true,
"description": "GitHub Action for creating GitHub Releases",
"main": "lib/main.js",
"scripts": {
"build": "esbuild src/main.ts --bundle --platform=node --format=cjs --target=node24 --outfile=dist/index.js --minify",
"build-debug": "esbuild src/main.ts --bundle --platform=node --format=cjs --target=node24 --outfile=dist/index.js --sourcemap --keep-names",
2025-06-09 20:59:28 -04:00
"typecheck": "tsc --noEmit",
"test": "vitest --coverage",
"fmt": "prettier --write \"src/**/*.ts\" \"__tests__/**/*.ts\"",
2024-03-11 09:46:18 -04:00
"fmtcheck": "prettier --check \"src/**/*.ts\" \"__tests__/**/*.ts\"",
"updatetag": "git tag -d v3 >/dev/null 2>&1 || true; git push origin :v3 >/dev/null 2>&1 || true; git tag -a v3 -m '' && git push origin v3"
2019-09-09 17:10:07 +09:00
},
"repository": {
"type": "git",
2021-11-15 01:22:05 -05:00
"url": "git+https://github.com/softprops/action-gh-release.git"
2019-09-09 17:10:07 +09:00
},
"keywords": [
"actions"
],
"author": "softprops",
"engines": {
"node": ">=24"
},
2019-09-09 17:10:07 +09:00
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.1.0",
"@octokit/plugin-retry": "^8.1.0",
"@octokit/plugin-throttling": "^11.0.3",
"glob": "^13.0.6",
"mime-types": "^3.0.2"
2019-09-09 17:10:07 +09:00
},
"devDependencies": {
"@types/glob": "^9.0.0",
2025-06-09 19:03:00 -04:00
"@types/mime-types": "^3.0.1",
"@types/node": "^24",
"@vitest/coverage-v8": "^4.1.4",
"esbuild": "^0.28.0",
"prettier": "3.8.2",
2024-07-18 16:35:10 -04:00
"ts-node": "^10.9.2",
"typescript": "^6.0.2",
2025-06-09 20:59:28 -04:00
"typescript-formatter": "^7.2.2",
"vitest": "^4.0.4"
2019-09-09 17:10:07 +09:00
}
}