@vepler/logger
Version:
A lightweight, type-safe logging wrapper around Pino, built by Vepler for modern TypeScript applications.
89 lines (88 loc) • 2.3 kB
JSON
{
"name": "@vepler/logger",
"version": "3.0.0",
"description": "A lightweight, type-safe logging wrapper around Pino, built by Vepler for modern TypeScript applications.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vepler/logger.git"
},
"bugs": {
"url": "https://github.com/Vepler/logger/issues"
},
"homepage": "https://github.com/Vepler/logger#readme",
"author": "Vepler Limited",
"license": "MIT",
"scripts": {
"clean": "rimraf dist coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"build": "npm run clean && tsc",
"prepare": "husky install",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"private": false,
"dependencies": {
"pino": "^9.6.0"
},
"peerDependencies": {
"pino": "^9.6.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.4",
"@typescript-eslint/eslint-plugin": "^8.24.1",
"@typescript-eslint/parser": "^8.24.1",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.4.3",
"prettier": "^3.5.1",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.3",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3"
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix",
"prettier --write"
]
},
"keywords": [
"vepler",
"pino",
"logger",
"typescript",
"logging",
"structured-logging",
"json-logging",
"pino-wrapper",
"type-safe",
"microservices"
],
"publishConfig": {
"access": "public"
},
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}