-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
49 lines (49 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
44
45
46
47
48
49
{
"name": "@getsentry/action-github-commit",
"version": "0.0.0",
"private": true,
"description": "commit to GitHub using the API",
"main": "lib/main.js",
"engines": {
"node": ">=20"
},
"volta": {
"node": "20.3.0",
"yarn": "1.22.17"
},
"scripts": {
"build": "yarn tsc",
"format": "yarn prettier --write **/*.ts",
"lint": "yarn eslint --fix src/**/*.ts",
"dist": "yarn build && yarn ncc build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/getsentry/action-github-commit.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "getsentry",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@vercel/ncc": "^0.36.1"
},
"devDependencies": {
"@octokit/webhooks": "^11.0.0",
"@types/node": "^20.1.2",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-sentry": "^1.117.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"typescript": "^5.0.4"
}
}