-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
59 lines (59 loc) · 1.4 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "label-actions",
"version": "4.0.1",
"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": "^1.10.1",
"@actions/github": "^6.0.0",
"@octokit/plugin-throttling": "^8.1.3",
"@octokit/plugin-retry": "^6.0.1",
"joi": "^17.11.0",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"commit-and-tag-version": "^12.0.0",
"npm-check-updates": "^16.14.11",
"prettier": "^3.1.0"
},
"engines": {
"node": ">=20.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
}