forked from thollander/actions-comment-pull-request
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.17 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
{
"name": "actions-comment-pull-request",
"version": "2.4.2",
"description": "GitHub action for commenting pull-request",
"main": "lib/main.js",
"scripts": {
"build": "npm run build:main && npm run build:cleanup",
"build:main": "ncc build src/main.ts -o lib",
"build:cleanup": "ncc build src/cleanup.ts -o lib/cleanup",
"lint": "prettier --write **/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thollander/actions-comment-pull-request"
},
"keywords": [
"actions",
"container",
"pull-request",
"comment",
"message"
],
"author": "Térence Hollander",
"license": "MIT",
"bugs": {
"url": "https://github.com/thollander/actions-comment-pull-request/issues"
},
"homepage": "https://github.com/thollander/actions-comment-pull-request#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.0.0",
"@actions/github": "^5.0.3",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1"
},
"devDependencies": {
"@tsconfig/node16": "^16.1.1",
"@types/node": "^18.16.2",
"@vercel/ncc": "^0.38.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
}
}