22 lines
492 B
JSON
22 lines
492 B
JSON
{
|
|
"name": "@stock-bot/event-bus",
|
|
"version": "1.0.0",
|
|
"description": "Event bus implementation for inter-service communication",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"clean": "rm -rf dist",
|
|
"test": "jest"
|
|
},
|
|
"dependencies": {
|
|
"@stock-bot/types": "*",
|
|
"ioredis": "^5.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.2",
|
|
"jest": "^29.5.0",
|
|
"typescript": "^5.4.5"
|
|
}
|
|
}
|