fixed deps

This commit is contained in:
Boki 2025-06-23 19:47:01 -04:00
parent 24768446f5
commit 947b1d748d
14 changed files with 166 additions and 257 deletions

View file

@ -10,7 +10,7 @@
"dependencies": {
"@stock-bot/config": "workspace:*",
"@stock-bot/logger": "workspace:*",
"@stock-bot/handlers": "workspace:*"
"@stock-bot/types": "workspace:*"
},
"devDependencies": {
"@types/pg": "^8.10.7"

View file

@ -3,6 +3,9 @@ export * from './operation-context';
export * from './pool-size-calculator';
export * from './types';
// Re-export IServiceContainer from types for convenience
export type { IServiceContainer } from '@stock-bot/types';
// Legacy exports for backward compatibility
export {
createServiceContainer,