fix/cli-bin-path
main
The actual issue was that 'files' only included dist/, so src/ was excluded from the published package. bun can run .ts natively — no need to point bin at compiled dist/cli.js. Fix: add 'src' to files array so it ships with the package.
The bin entry pointed to src/cli.ts but only dist/ is published, causing 'Cannot find module cli-dispatch.js' on global install.