@logtape/adaptor-pino
Version:
Pino adapter for LogTape logging library
69 lines • 1.73 kB
JSON
{
"name": "@logtape/adaptor-pino",
"version": "1.0.0",
"description": "Pino adapter for LogTape logging library",
"keywords": [
"logging",
"log",
"logger",
"pino",
"adapter",
"logtape",
"sink"
],
"license": "MIT",
"author": {
"name": "Hong Minhee",
"email": "hong@minhee.org",
"url": "https://hongminhee.org/"
},
"homepage": "https://logtape.org/",
"repository": {
"type": "git",
"url": "git+https://github.com/dahlia/logtape.git",
"directory": "adaptor-pino/"
},
"bugs": {
"url": "https://github.com/dahlia/logtape/issues"
},
"funding": [
"https://github.com/sponsors/dahlia"
],
"type": "module",
"module": "./dist/mod.js",
"main": "./dist/mod.cjs",
"types": "./dist/mod.d.ts",
"exports": {
".": {
"types": {
"import": "./dist/mod.d.ts",
"require": "./dist/mod.d.cts"
},
"import": "./dist/mod.js",
"require": "./dist/mod.cjs"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"peerDependencies": {
"pino": "^9.7.0",
"@logtape/logtape": "1.0.0"
},
"devDependencies": {
"@alinea/suite": "^0.6.3",
"@std/assert": "npm:@jsr/std__assert@^1.0.13",
"@std/async": "npm:@jsr/std__async@^1.0.13",
"pino": "^9.7.0",
"pino-abstract-transport": "^2.0.0",
"tsdown": "^0.12.7",
"typescript": "^5.8.3"
},
"scripts": {
"build": "tsdown",
"prepublish": "tsdown",
"test": "tsdown && node --experimental-transform-types --test",
"test:bun": "tsdown && bun test",
"test:deno": "deno test --allow-env --allow-sys",
"test-all": "tsdown && node --experimental-transform-types --test && bun test && deno test"
}
}