bun-package-manager
Installation
SKILL.md
Bun Package Manager
Use this skill when managing dependencies with Bun's package manager, which is significantly faster than npm, yarn, and pnpm while maintaining compatibility.
Key Concepts
Installing Dependencies
Bun's package manager is drop-in compatible with npm:
# Install all dependencies
bun install
# Add a dependency
bun add express
bun add -d typescript # Dev dependency
bun add -g cowsay # Global install