devbox.json
1{
2 "$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.17.1/.schema/devbox.schema.json",
3 "packages": [
4 "go@latest",
5 "gnumake@latest",
6 "coreutils@latest",
7 "bash@latest",
8 "ripgrep@latest",
9 "nodejs@latest",
10 "yarn@latest",
11 "git@latest",
12 "git-bug@latest"
13 ],
14 "shell": {
15 "init_hook": [
16 "echo 'Welcome to devbox!' > /dev/null"
17 ],
18 "scripts": {
19 "test": [
20 "echo \"Error: no test specified\" && exit 1"
21 ]
22 }
23 }
24}