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

28 lines
656 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": "*",
"@stock-bot/data-frame": "*",
"@stock-bot/event-bus": "*",
"@stock-bot/logger": "*",
"@stock-bot/utils": "*",
"commander": "^14.0.0",
"eventemitter3": "^5.0.1"
},
"devDependencies": {
"@types/node": "^20.10.0",
"typescript": "^5.3.0"
},
"peerDependencies": {
"bun-types": "*"
}
}