@loglayer/transport-pino
Version:
Pino transport for the LogLayer logging library.
66 lines • 1.63 kB
JSON
{
"name": "@loglayer/transport-pino",
"description": "Pino transport for the LogLayer logging library.",
"version": "3.0.2",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
"import": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"require": "./dist/index.cjs"
}
},
"types": "./dist/index.d.ts",
"sideEffects": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/loglayer/loglayer.git",
"directory": "packages/transports/pino"
},
"author": "Theo Gravity <theo@suteki.nu>",
"keywords": [
"logging",
"log",
"loglayer",
"pino",
"transport"
],
"dependencies": {
"@loglayer/transport": "3.0.2"
},
"devDependencies": {
"@types/node": "25.2.3",
"tsdown": "0.20.3",
"tsx": "4.21.0",
"typescript": "5.9.3",
"vitest": "4.0.18",
"@internal/tsconfig": "2.1.0",
"loglayer": "9.1.0"
},
"peerDependencies": {
"pino": "*"
},
"bugs": "https://github.com/loglayer/loglayer/issues",
"engines": {
"node": ">=18"
},
"files": [
"dist"
],
"homepage": "https://loglayer.dev",
"scripts": {
"build": "tsdown src/index.ts",
"test": "vitest --run",
"clean": "rm -rf .turbo node_modules dist",
"lint": "biome check --no-errors-on-unmatched --write --unsafe src",
"lint:staged": "biome check --no-errors-on-unmatched --write --unsafe --staged src",
"verify-types": "tsc --noEmit",
"livetest": "tsx src/__tests__/livetest.ts"
}
}