-
Notifications
You must be signed in to change notification settings - Fork 52
/
devbox.json
57 lines (57 loc) · 2.49 KB
/
devbox.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
53
54
55
56
57
{
"packages": {
"path:.#bosh-bootloader": "",
"path:.#app-autoscaler-cli-plugin": "",
"path:.#log-cache-cli-plugin": "",
"path:.#cloud-mta-build-tool": "",
"path:.#uaac": "",
"bosh-cli": "7.3.1",
"bundix": "latest",
"coreutils": "latest",
"delve": "latest",
"fly": "7.10.0",
"gh": "latest",
"gnumake": "4.4",
"gnutar": "latest",
"go-tools": "latest",
"gopls": "latest",
"gum": "0.13.0",
"jq": "latest",
"maven": "3.8.6",
"nodejs": "latest",
"nodePackages.yaml-language-server": "latest",
"oha": "latest",
"pre-commit": "latest",
"postgresql": "latest",
"python": "latest",
"rubocop": "latest",
"rubyPackages.solargraph": "latest",
"shellcheck": "0.10.0",
"swagger-cli": "latest",
"which": "latest",
"credhub-cli": "2.9.29",
"markdownlint-cli2": "latest",
"ginkgo": "2.20.2",
"bundler": "latest",
"golangci-lint": "1.61.0",
"go": "1.22.5",
"direnv": "2.35.0",
"actionlint": "1.7.4",
"act": "0.2.68",
"cloudfoundry-cli": "8.8.1",
"google-cloud-sdk": "latest",
"temurin-bin-21": "latest",
"ruby": "3.3.5",
"yq-go": "4.44.3"
},
"shell": {
"init_hook": [
"install_plugin_if_needed() {",
" sum=$(sha1sum $(which $1) | cut --delimiter=' ' --fields='1')",
" cf plugins --checksum | grep --quiet ${sum} || cf install-plugin -f $(which $1)",
"}",
"install_plugin_if_needed 'app-autoscaler-cli-plugin'",
"install_plugin_if_needed 'log-cache-cli'"
]
}
}