26 lines
723 B
JSON
26 lines
723 B
JSON
{
|
|
"name": "@stock-bot/processing-service",
|
|
"version": "1.0.0",
|
|
"description": "Combined data processing and technical indicators service",
|
|
"main": "dist/index.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"devvvvv": "bun --watch src/index.ts",
|
|
"build": "bun build src/index.ts --outdir dist --target node",
|
|
"start": "bun dist/index.js",
|
|
"test": "bun test",
|
|
"clean": "rm -rf dist"
|
|
},
|
|
"dependencies": {
|
|
"@stock-bot/config": "*",
|
|
"@stock-bot/logger": "*",
|
|
"@stock-bot/types": "*",
|
|
"@stock-bot/utils": "*",
|
|
"@stock-bot/event-bus": "*",
|
|
"@stock-bot/vector-engine": "*",
|
|
"hono": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.0.0"
|
|
}
|
|
}
|