bun-install
1
总安装量
1
周安装量
#49868
全站排名
安装命令
npx skills add https://github.com/laurigates/claude-plugins --skill bun-install
Agent 安装分布
mcpjam
1
claude-code
1
replit
1
junie
1
windsurf
1
zencoder
1
Skill 文档
/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):
bun install
CI/Reproducible builds:
bun install --frozen-lockfile
Production deployment:
bun install --production
- Report installed package count and any warnings
Post-install
- Verify node_modules exists
- Check for peer dependency warnings
- Run
bun run prepareif it exists (for husky/hooks)