Opus
Non-existent TypeScript major version pinned in devDependencies
- package.json:21
TypeScript's latest published major as of this PR is 5.x; there is no TypeScript 6.0.3 release on npm. `npm install` will fail to resolve the caret range `^6.0.3`, breaking `typecheck`, `build`, and any CI that runs `npm ci`. Even if a 6.x is later released, pinning to a non-existent major right now is a release-blocking issue for a template repo that is supposed to be forked per-agent.
Recommendation
Pin TypeScript to an actually published range (e.g. `^5.6.0`) compatible with `@types/node` and `vitest`, or whatever current major the project targets.