-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevbox.json
More file actions
34 lines (34 loc) · 1.06 KB
/
Copy pathdevbox.json
File metadata and controls
34 lines (34 loc) · 1.06 KB
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
{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/main/.schema/devbox.schema.json",
"packages": [
"rustup@latest",
"nodejs@22",
"bun@latest",
"pkg-config@latest",
"openssl@3",
"cargo-nextest@latest",
"cargo-watch@latest",
"cargo-audit@latest",
"git-cliff@latest",
"git@latest"
],
"shell": {
"init_hook": [
"rustup default stable 2>/dev/null || true",
"rustup component add clippy rustfmt 2>/dev/null || true",
"echo '✓ claude-sentinel dev environment ready'"
],
"scripts": {
"test": "cargo nextest run",
"test:watch": "cargo watch -x 'nextest run'",
"build": "cargo build",
"build:release": "cargo build --release",
"install:cli": "cargo install --path crates/cst-cli",
"lint": "cargo clippy --all -- -D warnings",
"fmt": "cargo fmt --all",
"audit": "cargo audit",
"dev:app": "cd apps/desktop && bun run tauri dev",
"changelog": "git-cliff -o CHANGELOG.md"
}
}
}