forked from bufbuild/buf-setup-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 948 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
{
"name": "buf-setup",
"version": "1.6.0",
"scripts": {
"build": "esbuild --minify --bundle --sourcemap '--define:process.env.NODE_ENV=\"production\"' --outdir=dist --platform=node --target=node16 ./src/main.ts",
"eslint": "eslint --max-warnings 0 .",
"format": "prettier --write '**/*.{json,js,jsx,ts,tsx,css}' --loglevel error",
"lint": "npm run eslint && npm run types-check",
"types-check": "tsc --noemit"
},
"engineStrict": true,
"engines": {
"node": ">=16",
"npm": ">=8"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@actions/io": "^1.1.2",
"@actions/tool-cache": "^2.0.1",
"https-proxy-agent": "^5.0.1"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"esbuild": "^0.16.12",
"prettier": "^2.8.1",
"typescript": "^4.9.4"
}
}