What problem does it solve? Managing JavaScript dependencies with npm, yarn, or pnpm can be slow and inconsistent across environments. This Skill provides complete guidance for using Bun's package manager, which installs dependencies up to 25x faster than npm while handling lockfiles, workspaces, and migrations. ## Core Features & Use Cases - Dependency Management: Install, add, remove, and update packages with commands like bun install, bun add, and bun update, including dev, optional, and peer dependency scopes. - Monorepo Workspaces: Configure workspaces in package.json and run filtered commands across packages with bun run --filter. - Lockfile & Migration Support: Work with the text-based bun.lock file, enforce frozen lockfiles in CI with bun ci, and migrate automatically from npm, yarn, or pnpm lockfiles. - Use Case: You are migrating a pnpm monorepo to Bun. Run bun install to auto-convert pnpm-lock.yaml to bun.lock, move workspace config into package.json, and use bun install --filter to install dependencies for specific packages. ## Quick Start Ask the assistant to install your project's dependencies and add a new package using Bun, for example by requesting it to run bun install and then add react as a dependency.