bun-types
Version:
Type definitions and documentation for Bun, an incredibly fast JavaScript runtime
26 lines (18 loc) • 426 B
Markdown
name: Add an optional dependency
To add an npm package as an optional dependency, use the `--optional` flag.
```sh
$ bun add zod --optional
```
This will add the package to `optionalDependencies` in `package.json`.
```json-diff
{
"optionalDependencies": {
+ "zod": "^3.0.0"
}
}
```
See [Docs > Package manager](https://bun.sh/docs/cli/install) for complete documentation of Bun's package manager.