-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdevbox.json
More file actions
31 lines (31 loc) · 834 Bytes
/
Copy pathdevbox.json
File metadata and controls
31 lines (31 loc) · 834 Bytes
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
{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.17.4/.schema/devbox.schema.json",
"packages": [
"zig@0.16",
"git@latest",
"curl@latest",
"just@latest",
"shellcheck@latest",
"shfmt@latest",
"sqlite@latest",
"vhs@latest",
"imagemagick@latest"
],
"shell": {
"init_hook": [
"command -v kcov >/dev/null || echo '⚠ kcov not found - coverage needs: brew install kcov (run outside --pure)'"
],
"scripts": {
"dev": ["just build"],
"build": ["just build-release"],
"test": ["just test"],
"coverage": ["just coverage"],
"install": ["just install"],
"fmt": ["just fmt"],
"fmt-check": ["just fmt-check"],
"lint": ["just lint"],
"universal": ["just build-universal"],
"bench": ["just bench"]
}
}
}