26 lines
656 B
JSON
26 lines
656 B
JSON
{
|
|
"name": "@stock-bot/logger",
|
|
"version": "1.0.0",
|
|
"description": "Enhanced logging library with Loki integration for stock-bot services",
|
|
"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": "workspace:*",
|
|
"@stock-bot/config": "workspace:*",
|
|
"winston": "^3.11.0",
|
|
"winston-loki": "^6.0.8",
|
|
"winston-daily-rotate-file": "^4.7.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.2",
|
|
"@types/node": "^20.5.0",
|
|
"jest": "^29.5.0",
|
|
"typescript": "^5.4.5"
|
|
}
|
|
}
|