template-ts-node
Installation
SKILL.md
TypeScript Node.js Project Setup
Scaffold production-ready TypeScript Node.js projects with modern tooling and best practices. Default configuration targets single-repository, non-UI projects (libraries, CLI tools, backend services). Uses Bun for package management and Vitest for testing.
Quick Reference: Configuration Files
| File | Purpose |
|---|---|
package.json |
Project metadata, dependencies, and scripts |
tsconfig.json |
TypeScript compiler configuration |
biome.jsonc |
Linting and formatting rules |
justfile |
Task automation and project commands |
vitest.config.ts |
Test framework configuration |
.gitignore |
Version control exclusions |
.gitattributes |
Git line-ending and merge behavior |
.husky/ |
Git hooks for pre-commit automation |
bun.lockb |
Dependency lock file (Bun) |