## CLI Usage ```bash bun add <@version> ``` ### Dependency Management Don't install devDependencies. Alias: -p Exclude dev, optional, or peer dependencies from install Install globally. Alias: -g Add dependency to devDependencies. Alias: -d Add dependency to optionalDependencies Add dependency to peerDependencies Add the exact version instead of the ^ range. Alias: -E Only add dependencies to package.json if they are not already present ### Project Files & Lockfiles Write a yarn.lock file (yarn v1). Alias: -y Don't update package.json or save a lockfile Save to package.json (true by default) Disallow changes to lockfile Add to trustedDependencies in the project's package.json and install the package(s) Save a text-based lockfile Generate a lockfile without installing dependencies ### Installation Control Don't install anything Always request the latest versions from the registry & reinstall all dependencies. Alias: -f Skip verifying integrity of newly downloaded packages Skip lifecycle scripts in the project's package.json (dependency scripts are never run) Recursively analyze & install dependencies of files passed as arguments (using Bun's bundler). Alias:{" "} -a ### Network & Registry Provide a Certificate Authority signing certificate Same as --ca, but as a file path to the certificate Use a specific registry by default, overriding .npmrc, bunfig.toml, and environment variables Maximum number of concurrent network requests (default 48) ### Performance & Resource Platform-specific optimizations for installing dependencies. Possible values: clonefile (default),{" "} hardlink, symlink, copyfile Maximum number of concurrent jobs for lifecycle scripts (default 5) ### Caching Store & load cached data from a specific directory path Ignore manifest cache entirely ### Output & Logging Don't log anything Excessively verbose logging Disable the progress bar Don't print a summary ### Global Configuration & Context Specify path to config file (bunfig.toml). Alias: -c Set a specific current working directory ### Help Print this help menu. Alias: -h