Co-authored-by: Max Tuzzolino <maxtuzz@Maxs-MacBook-Pro.local> Co-authored-by: Claude <noreply@anthropic.com> Co-authored-by: Max Tuzzolino <max.tuzsmith@gmail.com> Co-authored-by: Ralph Khreish <35776126+Crunchyman-ralph@users.noreply.github.com>
64 lines
1.4 KiB
TypeScript
64 lines
1.4 KiB
TypeScript
/**
|
|
* @fileoverview Main entry point for the tm-core package
|
|
* This file exports all public APIs from the core Task Master library
|
|
*/
|
|
|
|
// Export main facade
|
|
export {
|
|
TaskMasterCore,
|
|
createTaskMasterCore,
|
|
type TaskMasterCoreOptions,
|
|
type ListTasksResult,
|
|
type StartTaskOptions,
|
|
type StartTaskResult,
|
|
type ConflictCheckResult
|
|
} from './task-master-core.js';
|
|
|
|
// Re-export types
|
|
export type * from './types/index.js';
|
|
|
|
// Re-export interfaces (types only to avoid conflicts)
|
|
export type * from './interfaces/index.js';
|
|
|
|
// Re-export constants
|
|
export * from './constants/index.js';
|
|
|
|
// Re-export providers
|
|
export * from './providers/index.js';
|
|
|
|
// Re-export storage (selectively to avoid conflicts)
|
|
export {
|
|
FileStorage,
|
|
ApiStorage,
|
|
StorageFactory,
|
|
type ApiStorageConfig
|
|
} from './storage/index.js';
|
|
export { PlaceholderStorage, type StorageAdapter } from './storage/index.js';
|
|
|
|
// Re-export parser
|
|
export * from './parser/index.js';
|
|
|
|
// Re-export utilities
|
|
export * from './utils/index.js';
|
|
|
|
// Re-export errors
|
|
export * from './errors/index.js';
|
|
|
|
// Re-export entities
|
|
export { TaskEntity } from './entities/task.entity.js';
|
|
|
|
// Re-export authentication
|
|
export {
|
|
AuthManager,
|
|
AuthenticationError,
|
|
type AuthCredentials,
|
|
type OAuthFlowOptions,
|
|
type AuthConfig
|
|
} from './auth/index.js';
|
|
|
|
// Re-export logger
|
|
export { getLogger, createLogger, setGlobalLogger } from './logger/index.js';
|
|
|
|
// Re-export executors
|
|
export * from './executors/index.js';
|