You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.6 KiB
JSON
54 lines
1.6 KiB
JSON
{
|
|
"name": "publish-action",
|
|
"version": "0.4.0",
|
|
"description": "Update the major version tag (v1, v2, etc.) to point to the specified tag",
|
|
"main": "lib/main.js",
|
|
"engines": {
|
|
"node": ">=24.0.0"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc && ncc build",
|
|
"test": "jest",
|
|
"format": "prettier --no-error-on-unmatched-pattern --config ./.prettierrc.js --write \"**/*.{ts,yml,yaml}\"",
|
|
"format-check": "prettier --no-error-on-unmatched-pattern --config ./.prettierrc.js --check \"**/*.{ts,yml,yaml}\"",
|
|
"lint": "eslint --config ./.eslintrc.js \"**/*.ts\"",
|
|
"lint:fix": "eslint --config ./.eslintrc.js \"**/*.ts\" --fix"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/actions/publish-action.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"publish"
|
|
],
|
|
"author": "GitHub",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/actions/publish-action/issues"
|
|
},
|
|
"homepage": "https://github.com/actions/publish-action#readme",
|
|
"dependencies": {
|
|
"@actions/core": "^1.11.1",
|
|
"@actions/github": "^6.0.0",
|
|
"@actions/http-client": "^2.2.0",
|
|
"semver": "^7.7.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.14",
|
|
"@types/semver": "^7.5.8",
|
|
"@typescript-eslint/eslint-plugin": "^8.31.1",
|
|
"@typescript-eslint/parser": "^8.31.1",
|
|
"@vercel/ncc": "^0.38.1",
|
|
"eslint": "^8.35.0",
|
|
"eslint-config-prettier": "^9.0.0",
|
|
"eslint-plugin-jest": "^28.11.0",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"jest": "^29.7.0",
|
|
"jest-circus": "^29.7.0",
|
|
"prettier": "^3.5.3",
|
|
"ts-jest": "^29.1.1",
|
|
"typescript": "^5.3.2"
|
|
}
|
|
}
|