mirror of
https://github.com/dessant/label-actions.git
synced 2026-03-13 01:27:03 -04:00
60 lines
1.4 KiB
JSON
60 lines
1.4 KiB
JSON
{
|
|
"name": "label-actions",
|
|
"version": "5.0.0",
|
|
"description": "A GitHub Action that performs actions when issues, pull requests or discussions are labeled or unlabeled.",
|
|
"author": "Armin Sebastian",
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/dessant/label-actions",
|
|
"repository": {
|
|
"url": "https://github.com/dessant/label-actions.git",
|
|
"type": "git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/dessant/label-actions/issues"
|
|
},
|
|
"type": "module",
|
|
"main": "src/index.js",
|
|
"scripts": {
|
|
"build": "ncc build src/index.js -o dist",
|
|
"update": "ncu --upgrade",
|
|
"release": "commit-and-tag-version",
|
|
"push": "git push --tags origin main"
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "^2.0.1",
|
|
"@actions/github": "^6.0.1",
|
|
"@octokit/plugin-throttling": "^11.0.3",
|
|
"@octokit/plugin-retry": "^8.0.3",
|
|
"joi": "^18.0.2",
|
|
"js-yaml": "^4.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@vercel/ncc": "^0.38.4",
|
|
"commit-and-tag-version": "^12.6.1",
|
|
"npm-check-updates": "^19.2.0",
|
|
"prettier": "^3.7.4"
|
|
},
|
|
"engines": {
|
|
"node": ">=24.0.0"
|
|
},
|
|
"keywords": [
|
|
"github",
|
|
"issues",
|
|
"pull requests",
|
|
"discussions",
|
|
"github labels",
|
|
"comment",
|
|
"close",
|
|
"lock",
|
|
"label issues",
|
|
"close issues",
|
|
"lock issues",
|
|
"comment",
|
|
"automation",
|
|
"github actions",
|
|
"project management",
|
|
"bot"
|
|
],
|
|
"private": true
|
|
}
|