bun install # install TypeScript dependencies
bun wasm # install Rust dependencies and build WebAssembly package
bun release # build the site for production
bun preview # preview the sitecargo test # run Rust testsbun dev # start dev serverMake sure you have Rustfmt installed on nightly channel.
rustup component add rustfmt --toolchain nightlybun format # lint/format TypeScript code
cargo clippy # lint Rust code
cargo +nightly fmt # format Rust code