To install an npm package under an alias:
sh
bun add my-custom-name@npm:zodThe zod package can now be imported as my-custom-name.
ts
import { z } from "my-custom-name";
z.string();See Docs > Package manager for complete documentation of Bun's package manager.