2019-09-09 17:10:07 +09:00
|
|
|
{
|
|
|
|
|
"name": "action-gh-release",
|
2025-12-01 01:02:34 -05:00
|
|
|
"version": "2.5.0",
|
2019-09-09 17:10:07 +09:00
|
|
|
"private": true,
|
|
|
|
|
"description": "GitHub Action for creating GitHub Releases",
|
|
|
|
|
"main": "lib/main.js",
|
|
|
|
|
"scripts": {
|
2025-06-09 20:59:28 -04:00
|
|
|
"build": "ncc build src/main.ts --minify --target es2022",
|
2024-07-17 20:14:48 +02:00
|
|
|
"build-debug": "ncc build src/main.ts --v8-cache --source-map",
|
2025-06-09 20:59:28 -04:00
|
|
|
"typecheck": "tsc --noEmit",
|
|
|
|
|
"test": "vitest --coverage",
|
2020-01-13 06:48:37 +09:00
|
|
|
"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 v2 && git push origin :v2 && git tag -a v2 -m '' && git push origin v2"
|
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",
|
|
|
|
|
"dependencies": {
|
2026-02-06 03:51:47 -05:00
|
|
|
"@actions/core": "^2.0.2",
|
|
|
|
|
"@actions/github": "^7.0.0",
|
2025-11-07 21:47:12 -05:00
|
|
|
"@octokit/plugin-retry": "^8.0.3",
|
|
|
|
|
"@octokit/plugin-throttling": "^11.0.3",
|
2025-12-01 00:56:07 -05:00
|
|
|
"glob": "^13.0.0",
|
|
|
|
|
"mime-types": "^3.0.2"
|
2019-09-09 17:10:07 +09:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2025-08-06 13:14:01 -04:00
|
|
|
"@types/glob": "^9.0.0",
|
2025-06-09 19:03:00 -04:00
|
|
|
"@types/mime-types": "^3.0.1",
|
2026-02-06 03:51:47 -05:00
|
|
|
"@types/node": "^20.19.30",
|
2025-09-18 23:26:39 -04:00
|
|
|
"@vercel/ncc": "^0.38.4",
|
2026-02-06 03:51:47 -05:00
|
|
|
"@vitest/coverage-v8": "^4.0.17",
|
|
|
|
|
"prettier": "3.8.0",
|
2024-07-18 16:35:10 -04:00
|
|
|
"ts-node": "^10.9.2",
|
2025-10-06 22:48:36 -04:00
|
|
|
"typescript": "^5.9.3",
|
2025-06-09 20:59:28 -04:00
|
|
|
"typescript-formatter": "^7.2.2",
|
2025-10-30 14:36:32 -04:00
|
|
|
"vitest": "^4.0.4"
|
2019-09-09 17:10:07 +09:00
|
|
|
}
|
|
|
|
|
}
|