2019-09-09 17:10:07 +09:00
|
|
|
{
|
|
|
|
"name": "action-gh-release",
|
2024-11-11 15:15:48 -05:00
|
|
|
"version": "2.1.0",
|
2019-09-09 17:10:07 +09:00
|
|
|
"private": true,
|
|
|
|
"description": "GitHub Action for creating GitHub Releases",
|
|
|
|
"main": "lib/main.js",
|
|
|
|
"scripts": {
|
2020-01-05 18:00:23 -05:00
|
|
|
"build": "ncc build src/main.ts --minify",
|
2024-07-17 20:14:48 +02:00
|
|
|
"build-debug": "ncc build src/main.ts --v8-cache --source-map",
|
2019-09-09 21:20:59 +09:00
|
|
|
"test": "jest",
|
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": {
|
2024-10-15 14:49:34 -04:00
|
|
|
"@actions/core": "^1.11.1",
|
2024-07-18 17:37:44 -04:00
|
|
|
"@actions/github": "^6.0.0",
|
2024-10-06 11:51:27 -04:00
|
|
|
"@octokit/plugin-retry": "^7.1.2",
|
2024-10-15 14:49:40 -04:00
|
|
|
"@octokit/plugin-throttling": "^9.3.2",
|
2024-07-18 16:08:36 -04:00
|
|
|
"glob": "^11.0.0",
|
2024-03-08 22:55:14 +02:00
|
|
|
"mime": "^3.0.0"
|
2019-09-09 17:10:07 +09:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-06-19 16:51:45 -04:00
|
|
|
"@types/glob": "^8.1.0",
|
2024-10-31 14:05:37 -04:00
|
|
|
"@types/jest": "^29.5.14",
|
2022-11-21 06:50:24 +00:00
|
|
|
"@types/mime": "^3.0.1",
|
2024-12-04 10:53:59 -05:00
|
|
|
"@types/node": "^22.10.1",
|
2024-11-30 20:10:55 -05:00
|
|
|
"@vercel/ncc": "^0.38.3",
|
2022-11-21 06:50:24 +00:00
|
|
|
"jest": "^29.3.1",
|
|
|
|
"jest-circus": "^29.3.1",
|
2024-12-04 10:53:49 -05:00
|
|
|
"prettier": "3.4.1",
|
2024-09-08 20:28:38 -04:00
|
|
|
"ts-jest": "^29.2.5",
|
2024-07-18 16:35:10 -04:00
|
|
|
"ts-node": "^10.9.2",
|
2024-11-30 20:07:26 -05:00
|
|
|
"typescript": "^5.7.2",
|
2019-09-09 21:20:59 +09:00
|
|
|
"typescript-formatter": "^7.2.2"
|
2019-09-09 17:10:07 +09:00
|
|
|
}
|
|
|
|
}
|