-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.14 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
{
"name": "handle-multiple-issues",
"version": "1.0.0",
"description": "GitHub Action workflow designed to take actions on multiple issues created by the same author.",
"main": "dist/index.js",
"scripts": {
"test": "npm test",
"build": "tsc && ncc build lib/index.js",
"workflow": "npm run build && node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Anmol-Baranwal/handle-multiple-issues.git"
},
"bugs": {
"url": "https://github.com/Anmol-Baranwal/handle-multiple-issues/issues"
},
"homepage": "https://github.com/Anmol-Baranwal/handle-multiple-issues#readme",
"keywords": [
"action",
"github",
"same author",
"issues",
"close",
"label",
"comment",
"multiple issues"
],
"exports": {
".": "./dist/index.js"
},
"author": "Anmol-Baranwal <[email protected]> (https://github.com/Anmol-Baranwal)",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@types/node": "^20.8.6",
"@vercel/ncc": "^0.38.1",
"typescript": "^5.2.2"
},
"engines": {
"node": "16.x"
}
}