To remove a dependency:bun remove ts-nodeCLI Usage$bun remove <packages>FlagsGeneral Information-h,--helpPrint this help menuConfiguration-c,--config=<val>Specify path to config file (bunfig.toml)Package.json Interaction--no-saveDon't update package.json or save a lockfile--saveSave to package.json (true by default)--trustAdd to trustedDependencies in the project's package.json and install the package(s)Lockfile Behavior-y,--yarnWrite a yarn.lock file (yarn v1)--frozen-lockfileDisallow changes to lockfile--save-text-lockfileSave a text-based lockfile--lockfile-onlyGenerate a lockfile without installing dependenciesDependency Filtering-p,--productionDon't install devDependencies--omit=<val>Exclude 'dev', 'optional', or 'peer' dependencies from installNetwork & Registry--ca=<val>Provide a Certificate Authority signing certificate--cafile=<val>The same as `--ca`, but is a file path to the certificate--registry=<val>Use a specific registry by default, overriding .npmrc, bunfig.toml and environment variablesExecution Control & Validation--dry-runDon't install anything-f,--forceAlways request the latest versions from the registry & reinstall all dependencies--no-verifySkip verifying integrity of newly downloaded packagesOutput & Logging--silentDon't log anything--verboseExcessively verbose logging--no-progressDisable the progress bar--no-summaryDon't print a summaryCaching--cache-dir=<val>Store & load cached data from a specific directory path--no-cacheIgnore manifest cache entirelyScript Execution--ignore-scriptsSkip lifecycle scripts in the project's package.json (dependency scripts are never run)--concurrent-scripts=<val>Maximum number of concurrent jobs for lifecycle scripts (default 5)Scope & Path-g,--globalInstall globally--cwd=<val>Set a specific cwdAdvanced & Performance--backend=<val>Platform-specific optimizations for installing dependencies. Possible values: "clonefile" (default), "hardlink", "symlink", "copyfile"--network-concurrency=<val>Maximum number of concurrent network requests (default 48)ExamplesRemove a dependencybun remove ts-nodeFull documentation is available at https://bun.sh/docs/cli/remove.