A TypeScript package with dual CJS/ESM support.
npm install my-awesome-packageimport { add, multiply } from 'my-awesome-package';
// Add numbers
const sum = add(2, 3); // 5
// Multiply numbers
const product = multiply(2, 3); // 6npm run build- Build the packagenpm run test- Run testsnpm run test:coverage- Run tests with coveragenpm run typecheck- Type check the codenpm run lint- Lint the codenpm run format- Format the code
MIT