-
Notifications
You must be signed in to change notification settings - Fork 97
Expand file tree
/
Copy pathdevbox.json
More file actions
22 lines (22 loc) · 848 Bytes
/
devbox.json
File metadata and controls
22 lines (22 loc) · 848 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.13.6/.schema/devbox.schema.json",
"packages": ["nodejs@latest", "uv@latest", "taplo@latest"],
"shell": {
"init_hook": ["echo 'Welcome to devbox!' > /dev/null"],
"scripts": {
"python-lint": ["uv run ruff check src/**/*.py --format"],
"prettier-format": [
"npx --yes prettier --write --prose-wrap=always *.json *.md"
],
"prettier-check": ["npx --yes prettier --check *.json *.md"],
"mcp-run": ["uv run mcp-server-docker"],
"mcp-inspector": [
"npx --yes @modelcontextprotocol/inspector uv run mcp-server-docker"
],
"pyproject-check": [
"taplo check pyproject.toml --schema https://json.schemastore.org/pyproject.json"
],
"pyproject-format": ["taplo format pyproject.toml"]
}
}
}