--- name: Add a peer dependency --- To add an npm package as a peer dependency, directly modify the `peerDependencies` object in your package.json. Running `bun install` will not install peer dependencies. ```json-diff { "peerDependencies": { + "zod": "^3.0.0" } } ``` --- See [Docs > Package manager](/docs/cli/install) for complete documentation of Bun's package manager.