Help us improve
Share bugs, ideas, or general feedback.
From typescript-plugin
Bundles JavaScript/TypeScript with Bun for browser, Node.js, or Bun targets. Compiles to standalone executables with minification and sourcemaps. Reports output sizes and verifies executables.
npx claudepluginhub laurigates/claude-plugins --plugin typescript-pluginHow this skill is triggered — by the user, by Claude, or both
Slash command
/typescript-plugin:bun-buildhaikuThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Bundle JavaScript/TypeScript or compile to standalone executable.
Bundles JavaScript/TypeScript code using Bun's bundler for browser, Node.js, and Bun targets. Covers tree-shaking, code splitting, minification, external dependencies, and source maps.
Runs Bun scripts, tests with compact reporters and bail flags, builds bundles/executables, and initializes projects using flags for fast feedback and minimal output.
Guides fast JavaScript/TypeScript development with Bun runtime: project init, package management, built-in bundler/test runner, Node.js migration, and troubleshooting.
Share bugs, ideas, or general feedback.
Bundle JavaScript/TypeScript or compile to standalone executable.
entry (required): Entry point file--compile: Create standalone executable--minify: Minify outputProduction bundle:
bun build $ENTRY --outdir=dist --minify --sourcemap=external
Standalone executable:
bun build --compile --minify $ENTRY --outfile={{ OUTFILE | default: "app" }}
Development bundle:
bun build $ENTRY --outdir=dist --sourcemap=inline
# Browser (default)
bun build $ENTRY --target=browser --outdir=dist
# Bun runtime
bun build $ENTRY --target=bun --outdir=dist
# Node.js
bun build $ENTRY --target=node --outdir=dist
./app --help or similar