managarten/apps-archived/maerchenzauber/@mana-auth-mobile/src/index.ts
Till-JS 61d181fbc2 chore: archive inactive projects to apps-archived/
Move inactive projects out of active workspace:
- bauntown (community website)
- maerchenzauber (AI story generation)
- memoro (voice memo app)
- news (news aggregation)
- nutriphi (nutrition tracking)
- reader (reading app)
- uload (URL shortener)
- wisekeep (AI wisdom extraction)

Update CLAUDE.md documentation:
- Add presi to active projects
- Document archived projects section
- Update workspace configuration

Archived apps can be re-activated by moving back to apps/

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-29 07:03:59 +01:00

37 lines
1.3 KiB
TypeScript

/**
* @mana/auth-mobile
* Reusable Mana Core authentication package for React Native mobile apps
*/
// Configuration
export { ManaAuthConfigProvider, useManaAuthConfig } from './config/ManaAuthConfigProvider';
export * from './config/types';
export { defaultTheme, defaultText, defaultEnvironment } from './config/defaults';
// Types
export * from './types';
// Utils (for advanced usage)
export { safeStorage } from './utils/safeStorage';
export { DeviceManager } from './utils/deviceManager';
export * as logger from './utils/logger';
/**
* NOTE: The following exports need to be implemented by copying
* the corresponding files from the storyteller mobile app:
*
* Services:
* - export { authService } from './services/authService';
* - export { tokenManager, TokenState } from './services/tokenManager';
*
* Context:
* - export { ManaAuthProvider, useManaAuth } from './contexts/ManaAuthContext';
*
* Components:
* - export { default as ManaLoginScreen } from './components/ManaLoginScreen';
* - export { GoogleSignInButton } from './components/GoogleSignInButton';
* - export { AppleSignInButton } from './components/AppleSignInButton';
*
* See IMPLEMENTATION_GUIDE.md for detailed instructions on how to
* adapt these files to work with the configuration system.
*/