Scripts
The @frame/auth package is a logical module that exports Better Auth identity configuration and adapters. It does not require a standalone development server; its commands focus on testing and quality assurance.
Testing
Section titled “Testing”pnpm test: Runs the unit test suite with Vitest.pnpm test:watch: Runs Vitest in interactive watch mode, ideal for continuous TDD.pnpm test:coverage: Generates a code coverage report to ensure the monorepo?s minimum thresholds are met.
Quality and Compilation
Section titled “Quality and Compilation”pnpm lint: Runsoxlintto apply fast standard checks and syntactic fixes across the code.pnpm type-check: Usestscfor strict type validation (--noEmit) of all authentication logic and connectors.