Files
action-gh-release/package.json
T

46 lines
1.3 KiB
JSON
Raw Normal View History

2019-09-09 17:10:07 +09:00
{
"name": "action-gh-release",
2025-04-18 17:33:17 -04:00
"version": "2.2.2",
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",
"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": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.1",
"@octokit/plugin-retry": "^8.0.1",
"@octokit/plugin-throttling": "^11.0.1",
"glob": "^11.0.2",
2025-06-09 19:03:00 -04:00
"mime-types": "^3.0.1"
2019-09-09 17:10:07 +09:00
},
"devDependencies": {
2024-06-19 16:51:45 -04:00
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.14",
2025-06-09 19:03:00 -04:00
"@types/mime-types": "^3.0.1",
"@types/node": "^22.15.21",
"@vercel/ncc": "^0.38.3",
"jest": "^29.3.1",
"jest-circus": "^29.3.1",
"prettier": "3.5.3",
"ts-jest": "^29.3.4",
2024-07-18 16:35:10 -04:00
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
2019-09-09 21:20:59 +09:00
"typescript-formatter": "^7.2.2"
2019-09-09 17:10:07 +09:00
}
}