/**
 * Authentication Package
 * Provides JWT-based authentication for BaoLife.
 */

export {
  // Types
  type TokenPayload,
  type SessionInfo,
  // Error class
  AuthError,
  // Manager
  AuthManager,
  authManager,
  // Helpers
  requireAuth,
  isAuthenticated,
  // Namespace
  auth,
} from './auth.js';
