@chtsinc/ch-logger
Version:
Reusable Winston-based logger for CH npm packages with support for console, file logging, and custom logger injection.
44 lines (43 loc) • 997 B
JSON
{
"name": "@chtsinc/ch-logger",
"version": "0.0.2",
"description": "Reusable Winston-based logger for CH npm packages with support for console, file logging, and custom logger injection.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "tsc",
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"lint": "eslint . --ext .ts",
"format": "prettier --write ."
},
"publishConfig": {
"access": "public"
},
"keywords": [
"logger",
"winston",
"logging",
"typescript",
"npm-package",
"console",
"file",
"custom-logger"
],
"author": "Raju Thomas",
"license": "MIT",
"dependencies": {
"dotenv": "^16.5.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@types/node": "^22.15.18",
"rimraf": "^6.0.1",
"typescript": "^5.3.3"
}
}