password-generator

Public

DEV_COMM.md

Development Commands

Install Dependencies

npm install

Add Dev Dependency

npm install <package> --save-dev

Type Check (TypeScript)

node_modules\.bin\tsc.cmd --noEmit

Type Check with Specific tsconfig

node_modules\.bin\tsc.cmd --noEmit --project tsconfig.json

Lint (ESLint)

npm run lint

Lint with Auto-Fix

npm run lint:fix

Format (Prettier)

npm run format

Format Check (CI mode)

npm run format:check

Run Tests (if configured)

npm test

Development Mode (LMStudio)

npm run dev

Push Plugin (LMStudio)

npm run push

View Available Scripts

npm run

Clean and Reinstall

rm -rf node_modules package-lock.json
npm install