To remove a dependency:bun remove ts-nodeCLI Usage$bun remove <packages>FlagsOperation Control--dry-runDon't install anything-f,--forceAlways request the latest versions from the registry & reinstall all dependencies-g,--globalInstall globally-p,--productionDon't install devDependencies--omit=<val>Exclude 'dev', 'optional', or 'peer' dependencies from installDependency & Lockfile Management-y,--yarnWrite a yarn.lock file (yarn v1)--no-saveDon't update package.json or save a lockfile--saveSave to package.json (true by default)--frozen-lockfileDisallow changes to lockfile--save-text-lockfileSave a text-based lockfile--lockfile-onlyGenerate a lockfile without installing dependenciesNetwork & 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 variablesPerformance & Concurrency--concurrent-scripts=<val>Maximum number of concurrent jobs for lifecycle scripts (default 5)--network-concurrency=<val>Maximum number of concurrent network requests (default 48)Caching--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)Environment & Platform-c,--config=<val>Specify path to config file (bunfig.toml)--cwd=<val>Set a specific cwd--cpu=<val>Override CPU architecture for optional dependencies (e.g., x64, arm64, * for all)--os=<val>Override operating system for optional dependencies (e.g., linux, darwin, * for all)Linking Strategy--backend=<val>Platform-specific optimizations for installing dependencies. Possible values: "clonefile" (default), "hardlink", "symlink", "copyfile"--linker=<val>Linker strategy (one of "isolated" or "hoisted")Output & Logging--silentDon't log anything--quietOnly show tarball name when packing--verboseExcessively verbose logging--no-progressDisable the progress bar--no-summaryDon't print a summaryIntegrity & Security--no-verifySkip verifying integrity of newly downloaded packages--trustAdd to trustedDependencies in the project's package.json and install the package(s)Informational-h,--helpPrint this help menuExamplesRemove a dependencybun remove ts-nodeFull documentation is available at https://bun.com/docs/cli/remove.