Help us improve
Share bugs, ideas, or general feedback.
From typescript-plugin
Installs dependencies from package.json using Bun package manager. Supports --frozen-lockfile for CI/reproducible builds and --production for deployment. Verifies node_modules, peer deps, and runs prepare hooks.
npx claudepluginhub laurigates/claude-plugins --plugin typescript-pluginHow this skill is triggered — by the user, by Claude, or both
Slash command
/typescript-plugin:bun-installhaikuThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Install all dependencies from package.json using Bun.
Manages JavaScript dependencies with Bun: install, add, remove, update packages and workspaces using optimized CLI flags for CI, production, dry-runs, and agentic workflows.
Manages dependencies with Bun package manager: installs/removes/updates packages, handles workspaces and lockfiles, runs scripts, migrates from npm/yarn/pnpm.
Installs Python (pip), JavaScript (bun), and system (apt/brew/dnf) dependencies with monorepo awareness, prompting for shared or local installation in git repos.
Share bugs, ideas, or general feedback.
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)