-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.02 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.02 KB
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
{
"name": "update-pr-comment",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm ci && esbuild ./src/main.js --bundle --platform=node --outfile=dist/index.js && git add dist/*",
"bundle": "esbuild ./src/main.js --bundle --platform=node --outfile=dist/index.js",
"format": "prettier --write .",
"format-check": "prettier --check **/*.js"
},
"keywords": [],
"author": "wtw",
"license": "ISC",
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
],
"*.{js,yml,json,ts,md}": [
"prettier --write"
]
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"lint-staged": "^15.2.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"esbuild": "^0.20.2",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"install": "^0.13.0",
"prettier": "^3.2.5",
"typescript": "^5.4.5"
}
}