@loglayer/plugin-redaction
Version:
Log redaction plugin for loglayer.
65 lines • 1.61 kB
JSON
{
"name": "@loglayer/plugin-redaction",
"description": "Log redaction plugin for loglayer.",
"version": "2.1.12",
"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",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/loglayer/loglayer.git",
"directory": "packages/plugins/redaction"
},
"author": "Theo Gravity <theo@suteki.nu>",
"keywords": [
"logging",
"log",
"loglayer",
"readact",
"redaction",
"secure",
"plugin"
],
"dependencies": {
"fast-redact": "3.5.0",
"@loglayer/plugin": "2.2.4"
},
"devDependencies": {
"@types/bunyan": "1.8.11",
"@types/fast-redact": "3.0.4",
"@types/node": "24.10.1",
"tsdown": "0.15.12",
"typescript": "5.9.3",
"vitest": "4.0.9",
"@internal/tsconfig": "2.1.0",
"loglayer": "8.1.0"
},
"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"
}
}