-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.53 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
50
51
52
{
"name": "buf-action",
"version": "1.0.3",
"description": "GitHub Action for buf",
"main": "src/main.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write 'src/*.{json,js,jsx,ts,tsx,css}' --log-level error",
"lint": "eslint --max-warnings 0 src",
"lint:fix": "eslint --max-warnings 0 --fix src",
"build": "ncc build -o dist src/main.ts && ncc build -o dist/post src/post.ts",
"generate": "license-header --ignore 'dist/**'"
},
"keywords": [
"actions",
"buf",
"proto",
"protobuf"
],
"author": "Buf Technologies, Inc.",
"license": "Apache-2.0",
"licenseHeader": {
"licenseType": "apache",
"yearRange": "2024-2025",
"copyrightHolder": "Buf Technologies, Inc."
},
"devDependencies": {
"@bufbuild/license-header": "^0.0.4",
"@eslint/js": "^9.19.0",
"@types/node": "^22.13.1",
"@types/semver": "^7.5.8",
"@vercel/ncc": "^0.38.3",
"eslint": "^9.19.0",
"globals": "^15.14.0",
"prettier": "3.4.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.23.0"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@actions/tool-cache": "^2.0.2",
"@buf/bufbuild_registry.bufbuild_es": "^2.2.3-20250116203702-1c024d64352b.1",
"@bufbuild/protobuf": "^2.2.3",
"@connectrpc/connect": "^2.0.1",
"@connectrpc/connect-web": "^2.0.1",
"@octokit/webhooks-types": "^7.6.1",
"parse-diff": "^0.11.1",
"semver": "^7.7.1"
}
}