feat: create tm-core and apps/cli (#1093)

- add typescript
- add npm workspaces
This commit is contained in:
Ralph Khreish
2025-09-01 21:44:43 +02:00
parent e81040def5
commit dc811eb45e
162 changed files with 22235 additions and 706 deletions

18
apps/cli/src/index.ts Normal file
View File

@@ -0,0 +1,18 @@
/**
* @fileoverview Main entry point for @tm/cli package
* Exports all public APIs for the CLI presentation layer
*/
// Commands
export { ListTasksCommand } from './commands/list.command.js';
// UI utilities (for other commands to use)
export * as ui from './utils/ui.js';
// Re-export commonly used types from tm-core
export type {
Task,
TaskStatus,
TaskPriority,
TaskMasterCore
} from '@tm/core';