Files
sonr/devbox.json
T

26 lines
505 B
JSON
Raw Normal View History

2025-03-27 04:14:38 -04:00
{
2025-10-03 14:45:52 -04:00
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/main/.schema/devbox.schema.json",
2025-03-27 04:14:38 -04:00
"packages": [
"gum@latest",
2025-10-03 14:45:52 -04:00
"docker@latest",
"go@1.24.4",
"gcc@latest",
2025-10-12 11:23:20 -04:00
"jq@latest",
2025-10-03 14:45:52 -04:00
"trunk@latest",
"mods@latest",
"yq@latest"
2025-03-27 04:14:38 -04:00
],
2025-10-03 14:45:52 -04:00
"env": {},
2025-03-27 04:14:38 -04:00
"shell": {
"init_hook": [
2025-10-12 11:23:20 -04:00
"go mod download"
],
2025-03-27 04:14:38 -04:00
"scripts": {
2025-10-10 11:47:18 -04:00
"build": "make build-all",
"test": "make test-all",
"snapshot": "make snapshot",
2025-10-12 11:23:20 -04:00
"release": "make release"
2025-03-27 04:14:38 -04:00
}
}
}