managarten/packages/shared-utils/src/index.ts
Till-JS b8a84edfe0 feat(analytics): add Umami event tracking utilities
- Add comprehensive analytics.ts with type-safe event tracking
- Include app-specific event helpers (Auth, Landing, Chat, Picture, Todo, Calendar, Clock, Contacts, ManaDeck, Subscription, App events)
- Export from shared-utils package
- Add complete documentation in docs/ANALYTICS.md

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-23 17:58:04 +01:00

30 lines
496 B
TypeScript

/**
* Shared utility functions for Manacore monorepo
*/
// Date utilities
export * from './date';
// String utilities
export * from './string';
// Async utilities
export * from './async';
// Format utilities
export * from './format';
// Validation utilities
export * from './validation';
// Keyboard shortcuts
export * from './keyboard';
// IndexedDB Cache
export * from './cache';
// Natural Language Parsers
export * from './parsers';
// Umami Analytics
export * from './analytics';