-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
53 lines (53 loc) · 1.28 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
{
"name": "support-requests",
"version": "4.0.0",
"description": "A GitHub Action that comments on and closes issues labeled as support requests.",
"author": "Armin Sebastian",
"license": "MIT",
"homepage": "https://github.com/dessant/support-requests",
"repository": {
"url": "https://github.com/dessant/support-requests.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/dessant/support-requests/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.2",
"@octokit/plugin-retry": "^6.0.1",
"joi": "^17.11.0"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"commit-and-tag-version": "^12.0.0",
"npm-check-updates": "^16.14.6",
"prettier": "^3.1.0"
},
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"github",
"issues",
"support",
"label",
"support issues",
"label issues",
"close issues",
"automation",
"github actions",
"project management",
"bot"
],
"private": true
}