bun-install
Original:🇺🇸 English
Translated
Install dependencies with Bun package manager
13installs
Added on
NPX Install
npx skill4agent add laurigates/claude-plugins bun-installTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →/bun:install
Install all dependencies from package.json using Bun.
Context
Package file: `find . -maxdepth 1 -name "package.json" | head -1`
Lock file: `find . -maxdepth 1 -name "bun.lock*" -o -name "bun.lockb" | head -1`Execution
- Check if package.json exists
- Run installation with appropriate flags:
Development (default):
bash
bun installCI/Reproducible builds:
bash
bun install --frozen-lockfileProduction deployment:
bash
bun install --production- Report installed package count and any warnings
Post-install
- Verify node_modules exists
- Check for peer dependency warnings
- Run if it exists (for husky/hooks)
bun run prepare