forked from bazel-contrib/setup-bazel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 904 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
{
"name": "setup-bazel",
"version": "0.9.0",
"description": "Install and configure Bazel for GitHub Actions",
"main": "index.js",
"engines": {
"node": "20.x"
},
"scripts": {
"build": "ncc build index.js -s -o dist/main && ncc build post.js -s -o dist/post && ncc build stickydisk.js -s -o dist/stickydisk",
"test": "jest"
},
"author": "Alex Rodionov <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/cache": "npm:@useblacksmith/[email protected]",
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@actions/glob": "^0.5.0",
"@actions/tool-cache": "^2.0.1",
"@buf/blacksmith_vm-agent.connectrpc_es": "^1.6.1-20241213043610-906584953dd9.2",
"@connectrpc/connect": "^1.6.1",
"@connectrpc/connect-node": "^1.6.1",
"@vercel/ncc": "^0.38.0",
"yaml": "^2.2.1"
},
"devDependencies": {
"jest": "^29.7.0"
}
}