-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
32 lines (32 loc) · 969 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
{
"name": "buf-setup",
"version": "1.6.0",
"scripts": {
"build": "esbuild --minify --bundle --sourcemap '--define:process.env.NODE_ENV=\"production\"' --outdir=dist --platform=node --target=node20 ./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": ">=20",
"npm": ">=8"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1",
"https-proxy-agent": "^7.0.2",
"semver": "^6.3.1"
},
"devDependencies": {
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"esbuild": "^0.20.1",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
}
}