forked from xt0rted/pull-request-comment-branch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 875 Bytes
/
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
{
"name": "pull-request-comment-branch",
"version": "2.1.0",
"private": true,
"description": "Gets the head ref and sha of a pull request comment",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"clean": "rimraf dist lib",
"package": "ncc build ./src/main.ts --source-map --license license.txt",
"prerelease": "npm run clean",
"release": "npm run package && git add -f dist/",
"test": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xt0rted/pull-request-comment-branch.git"
},
"keywords": [
"actions"
],
"author": "xt0rted",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"@types/node": "^20.11.20",
"@vercel/ncc": "^0.38.1",
"rimraf": "^5.0.5",
"typescript": "^5.3.3"
}
}