-
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 673 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 673 Bytes
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
{
"name": "setup-bazel",
"version": "0.19.0",
"description": "Install and configure Bazel for GitHub Actions",
"main": "index.js",
"type": "module",
"engines": {
"node": "24.x"
},
"scripts": {
"build": "ncc build index.js -s -o dist/main && ncc build post.js -s -o dist/post",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Alex Rodionov <p0deje@gmail.com>",
"license": "MIT",
"dependencies": {
"@actions/cache": "^6.0.0",
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0",
"@actions/glob": "^0.6.0",
"@actions/tool-cache": "^4.0.0",
"@vercel/ncc": "^0.38.0",
"yaml": "^2.2.1"
}
}