mirror of
https://github.com/goreleaser/goreleaser-action.git
synced 2026-05-14 06:40:32 +00:00
* chore(deps): bump @actions/http-client in the npm group Bumps the npm group with 1 update: [@actions/http-client](https://github.com/actions/toolkit/tree/HEAD/packages/http-client). Updates `@actions/http-client` from 3.0.2 to 4.0.0 - [Changelog](https://github.com/actions/toolkit/blob/main/packages/http-client/RELEASES.md) - [Commits](https://github.com/actions/toolkit/commits/@actions/cache@4.0.0/packages/http-client) --- updated-dependencies: - dependency-name: "@actions/http-client" dependency-version: 4.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: npm ... Signed-off-by: dependabot[bot] <support@github.com> * chore: update dist and vendor --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
55 lines
1.6 KiB
JSON
55 lines
1.6 KiB
JSON
{
|
|
"name": "goreleaser-action",
|
|
"description": "GitHub Action for GoReleaser, a release automation tool for Go projects",
|
|
"main": "src/main.ts",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "ncc build src/main.ts --minify --license licenses.txt",
|
|
"lint": "npm run prettier && npm run eslint",
|
|
"format": "npm run prettier:fix && npm run eslint:fix",
|
|
"eslint": "eslint --max-warnings=0 .",
|
|
"eslint:fix": "eslint --fix .",
|
|
"prettier": "prettier --check \"./**/*.ts\"",
|
|
"prettier:fix": "prettier --write \"./**/*.ts\"",
|
|
"test": "NODE_OPTIONS='--experimental-vm-modules' jest",
|
|
"all": "npm run build && npm run format && npm test"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/goreleaser/goreleaser-action.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"goreleaser",
|
|
"golang"
|
|
],
|
|
"author": "CrazyMax",
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
|
"@actions/core": "^3.0.0",
|
|
"@actions/exec": "^3.0.0",
|
|
"@actions/http-client": "^4.0.0",
|
|
"@actions/tool-cache": "^4.0.0",
|
|
"js-yaml": "^4.1.1",
|
|
"semver": "^7.7.3",
|
|
"yargs": "^18.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^24.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^6.6.0",
|
|
"@typescript-eslint/parser": "^6.6.0",
|
|
"@vercel/ncc": "^0.38.0",
|
|
"dotenv": "^16.3.1",
|
|
"eslint": "^8.49.0",
|
|
"eslint-config-prettier": "^9.0.0",
|
|
"eslint-plugin-jest": "^27.2.3",
|
|
"eslint-plugin-prettier": "^5.0.0",
|
|
"jest": "^29.6.4",
|
|
"prettier": "^3.0.3",
|
|
"tmp": "^0.2.1",
|
|
"ts-jest": "^29.1.1",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^5.2.2"
|
|
}
|
|
}
|