typecheck:
	ty check e2b_desktop

lint:
	ruff check .
	ruff format --check .

format:
	ruff format .

.PHONY: test
test:
	uv run pytest --verbose --numprocesses=4
