35 lines
742 B
JSON
35 lines
742 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",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"clean": "rimraf dist",
|
|
"test": "bun test"
|
|
},
|
|
"dependencies": {
|
|
"got": "^14.4.7",
|
|
"pino": "^9.7.0",
|
|
"pino-loki": "^2.6.0",
|
|
"pino-pretty": "^13.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.11.0",
|
|
"typescript": "^5.3.0",
|
|
"bun-types": "^1.2.15"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"README.md"
|
|
]
|
|
}
|