/ devbox.json
devbox.json
1 { 2 "$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.14.2/.schema/devbox.schema.json", 3 "packages": ["nodejs@20", "go-task@latest", "pre-commit@latest", "trufflehog@latest"], 4 "shell": { 5 "init_hook": [ 6 "echo 'Welcome to Gnosis devbox!' > /dev/null", 7 "if [ -n \"$ZSH_VERSION\" ]; then eval \"$(task --completion zsh 2>/dev/null)\" || true; elif [ -n \"$BASH_VERSION\" ]; then eval \"$(task --completion bash 2>/dev/null)\" || true; fi" 8 ], 9 "scripts": {} 10 } 11 }