From fuse-typescript
Use when publishing a TypeScript library — exports map, JSR vs npm, dual ESM/CJS, type validation, provenance. Covers modern package.json, jsr.json, and release CI. Do NOT use for application deployment (not a library) or framework build pipelines (use the framework expert's skills).
How this skill is triggered — by the user, by Claude, or both
Slash command
/fuse-typescript:ts-packagingThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Ship a TypeScript library with a correct exports map, on the right registry.
Ship a TypeScript library with a correct exports map, on the right registry.
Before ANY implementation, use TeamCreate to spawn 3 agents:
After implementation, run fuse-ai-pilot:sniper for validation.
| Registry | Format | Publishes | Best for |
|---|---|---|---|
| JSR | ESM only | TS source directly | Deno/Node/Bun libs, doc-rich APIs |
| npm | ESM (or dual ESM/CJS) | Built .js + .d.ts | Broadest public reach, CJS consumers |
Rule of thumb: internal or Bun/Deno/ESM-only consumer → ESM-pure; broad public library still serving CommonJS → dual ESM/CJS.
"types" first, "default" last - Conditions match in object orderimport↔ESM and require↔CJS - Never point require at ESM"type": "module" explicitlyarethetypeswrong before every publishid-token: writePublishing a TS library?
├── Consumers on Deno/Bun/Node ESM, want source + docs → JSR (ESM only)
│ └── Fix "slow types" (explicit return/prop/const types)
└── Public npm audience
├── ESM-only consumers → ESM-pure package.json
└── Some consumers still on CJS → dual ESM/CJS exports
→ See references/exports-map.md for the conditions model
| Topic | Reference | Load when |
|---|---|---|
| Exports map & conditions | references/exports-map.md | Writing the exports field |
| JSR publishing | references/jsr-publishing.md | Publishing TS source to JSR |
| npm publishing | references/npm-publishing.md | Publishing to npm (dual/ESM) |
| Type validation | references/validation.md | Checking types resolve correctly |
| Template | Use Case |
|---|---|
references/templates/package-json-dual.md | Dual ESM/CJS + ESM-pure package.json |
references/templates/jsr-json.md | jsr.json with multi-entry exports |
references/templates/publish-workflow.md | GitHub Actions release with provenance |
{
"type": "module",
"exports": {
".": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }
}
}
npx @arethetypeswrong/cli --pack
→ See references/validation.md
"type" explicitly, even for CJS packagestypes in every conditional branch"default" before "types" (breaks type resolution)--allow-slow-types on JSR as a habit (degrades docs + npm compat)npx claudepluginhub fusengine/agents --plugin fuse-typescriptCreates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.