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

24 lines
545 B
JSON

{
"name": "@stock-bot/vector-engine",
"version": "1.0.0",
"description": "Vectorized computation engine for high-performance backtesting",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "bun test"
},
"dependencies": {
"@stock-bot/logger": "*",
"@stock-bot/utils": "*",
"@stock-bot/data-frame": "*"
},
"devDependencies": {
"@types/node": "^20.10.0",
"typescript": "^5.3.0"
},
"peerDependencies": {
"bun-types": "*"
}
}