Installation
@masumdev/tscheck can be installed globally as a command-line tool or locally inside your TypeScript project or monorepo.
Global Installation (CLI)
Install @masumdev/tscheck globally to audit any project from your terminal:
bun add -g @masumdev/tschecknpm install -g @masumdev/tscheckpnpm add -g @masumdev/tscheckyarn global add @masumdev/tscheckAfter installing globally, run:
tscheck --helpLocal Project Installation
To use tscheck in your project scripts and CI pipelines:
bun add -D @masumdev/tschecknpm install --save-dev @masumdev/tscheckpnpm add -D @masumdev/tscheckyarn add -D @masumdev/tscheckAdding to package.json
{ "scripts": { "audit": "tscheck", "audit:ci": "tscheck --fail-on-warning" }}Run with npx or bunx (No Install)
You can run tscheck on-demand without installing:
npx @masumdev/tscheck# orbunx @masumdev/tscheck