UNPKG

@logtape/adaptor-winston

Version:

winston adapter for LogTape logging library

79 lines 1.97 kB
{ "name": "@logtape/adaptor-winston", "version": "1.0.0", "description": "winston adapter for LogTape logging library", "keywords": [ "logging", "log", "logger", "winston", "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-winston/" }, "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" }, "./install": { "types": { "import": "./dist/install.d.ts", "require": "./dist/install.d.cts" }, "import": "./dist/install.js", "require": "./dist/install.cjs" }, "./package.json": "./package.json" }, "sideEffects": [ "./dist/install.*" ], "peerDependencies": { "winston": "^3.17.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", "tsdown": "^0.12.7", "typescript": "^5.8.3", "winston": "^3.17.0", "winston-transport": "^4.9.0" }, "scripts": { "build": "tsdown", "prepublish": "tsdown", "test": "tsdown && node --experimental-transform-types --test", "test:bun": "tsdown && bun test", "test:deno": "deno test --allow-env", "test-all": "tsdown && node --experimental-transform-types --test && bun test && deno test" } }