-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
35 lines (35 loc) · 894 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
35
{
"name": "pull-request-comment-branch",
"version": "3.0.0",
"private": true,
"description": "Gets the head ref and sha of a pull request comment",
"main": "dist/index.js",
"type": "module",
"scripts": {
"clean": "rimraf dist lib",
"build": "tsc",
"lint": "tsc --noEmit",
"package": "ncc build ./src/main.ts --source-map --license license.txt",
"prerelease": "npm run clean",
"release": "npm run package && git add -f dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xt0rted/pull-request-comment-branch.git"
},
"keywords": [
"actions"
],
"author": "xt0rted",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@vercel/ncc": "^0.38.3",
"rimraf": "^6.0.1",
"typescript": "^5.7.2"
}
}