-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
33 lines (33 loc) · 997 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
{
"name": "patcher-action",
"version": "0.2.3",
"description": "Run Patcher by Gruntwork.io",
"main": "index.js",
"repository": "[email protected]:gruntwork-io/patcher-action.git",
"author": "Gruntwork.io <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"build": "ncc build src/index.ts -o dist",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint --ext .ts ./"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"@actions/tool-cache": "^2.0.1",
"@octokit/plugin-throttling": "^7.0.0"
},
"devDependencies": {
"@vercel/ncc": "^0.36.1",
"@types/node": "^20.5.0",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
}
}