chore: add tm-core package with tag and tasks.json

This commit is contained in:
Ralph Khreish
2025-08-06 20:09:29 +02:00
parent df26c65632
commit aee1996dc2
37 changed files with 11766 additions and 12 deletions

View File

@@ -0,0 +1,30 @@
/**
* @fileoverview Main entry point for the tm-core package
* This file exports all public APIs from the core Task Master library
*/
// Re-export types
export type * from './types/index';
// Re-export interfaces
export type * from './interfaces/index';
export * from './interfaces/index';
// Re-export providers
export * from './providers/index';
// Re-export storage
export * from './storage/index';
// Re-export parser
export * from './parser/index';
// Re-export utilities
export * from './utils/index';
// Re-export errors
export * from './errors/index';
// Package metadata
export const version = '1.0.0';
export const name = '@task-master/tm-core';