38 lines
946 B
JSON
38 lines
946 B
JSON
{
|
|
"name": "@stock-bot/portfolio-service",
|
|
"version": "1.0.0",
|
|
"description": "Portfolio service for stock trading bot - handles portfolio tracking and performance analytics",
|
|
"main": "dist/index.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "bun --watch src/index.ts",
|
|
"start": "bun src/index.ts",
|
|
"test": "bun test",
|
|
"lint": "eslint src --ext .ts",
|
|
"type-check": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@hono/node-server": "^1.12.0",
|
|
"hono": "^4.6.1",
|
|
"@stock-bot/config": "*",
|
|
"@stock-bot/logger": "*",
|
|
"@stock-bot/types": "*",
|
|
"@stock-bot/questdb-client": "*",
|
|
"@stock-bot/utils": "*",
|
|
"@stock-bot/data-frame": "*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.5.0",
|
|
"typescript": "^5.5.4"
|
|
},
|
|
"keywords": [
|
|
"trading",
|
|
"portfolio",
|
|
"performance",
|
|
"analytics",
|
|
"stock-bot"
|
|
],
|
|
"author": "Stock Bot Team",
|
|
"license": "MIT"
|
|
}
|