Add package dependency with Bun
Adds package dependencies to a project using Bun with support for dev dependencies and exact version pinning.
/plugin marketplace add laurigates/claude-plugins/plugin install typescript-plugin@lgates-claude-pluginspackage-name [--dev] [--exact]bun/Add a package to dependencies using Bun.
package (required): Package name, optionally with version (e.g., lodash, react@18)--dev: Add to devDependencies--exact: Pin exact version (no ^ range)bun add {{ if DEV }}--dev {{ endif }}{{ if EXACT }}--exact {{ endif }}$PACKAGE
# Add runtime dependency
bun add express
# Add dev dependency
bun add --dev typescript vitest
# Pin exact version
bun add --exact react@18.2.0
# Add to specific workspace
bun add lodash --cwd packages/utils
bun why <package>/addCreate a new task. Use when user wants to add work items, create todos, or break down features into tasks.
/addCreate a new task. Use when user wants to add work items, create todos, or break down features into tasks.