Install dependencies with Bun package manager
Installs dependencies from package.json using Bun package manager with lockfile verification.
/plugin marketplace add laurigates/claude-plugins/plugin install typescript-plugin@lgates-claude-pluginsbun/Install all dependencies from package.json using Bun.
Package file: `find . -maxdepth 1 -name "package.json" | head -1`
Lock file: `find . -maxdepth 1 -name "bun.lock*" -o -name "bun.lockb" | head -1`
Development (default):
bun install
CI/Reproducible builds:
bun install --frozen-lockfile
Production deployment:
bun install --production
bun run prepare if it exists (for husky/hooks)