37 lines
815 B
JSON
37 lines
815 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",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "bun test",
|
|
"clean": "rimraf dist"
|
|
},
|
|
"dependencies": {
|
|
"@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.11.0",
|
|
"typescript": "^5.3.0",
|
|
"bun-types": "^1.2.15"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"README.md"
|
|
]
|
|
}
|