25 lines
587 B
JSON
25 lines
587 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/config": "*",
|
|
"pino": "^9.7.0",
|
|
"pino-loki": "^2.6.0",
|
|
"pino-pretty": "^13.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.2",
|
|
"@types/node": "^20.5.0",
|
|
"jest": "^29.5.0",
|
|
"typescript": "^5.4.5"
|
|
}
|
|
}
|