TypeScript libraries · ESM-only · @pixel-forge
Small libraries you install one at a time.
Building blocks that stay close to the language and the platform. Each package is published on its own, with narrow subpath imports so one area never pulls in another.
The packages
How they are built
- Close to plain TypeScript. If the standard library already does it, we do not wrap it.
- Few dependencies. Ideally none at runtime. Peers stay peers.
- Honest import surfaces. Narrow subpaths, not one barrel.
-
ESM-only. CommonJS consumers load them through Node’s
require(esm)on Node 22.12+.