stock-bot/libs/strategy-engine/package.json

28 lines
706 B
JSON

{
"name": "@stock-bot/strategy-engine",
"version": "1.0.0",
"description": "Strategy execution engine with multi-mode support",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "bun test"
},
"dependencies": {
"@stock-bot/config": "workspace:*",
"@stock-bot/data-frame": "workspace:*",
"@stock-bot/event-bus": "workspace:*",
"@stock-bot/logger": "workspace:*",
"@stock-bot/utils": "workspace:*",
"commander": "^14.0.0",
"eventemitter3": "^5.0.1"
},
"devDependencies": {
"@types/node": "^20.10.0",
"typescript": "^5.3.0"
},
"peerDependencies": {
"bun-types": "*"
}
}