@loglayer/transport-log-file-rotation
Version:
Log file rotation transport for the LogLayer logging library.
68 lines • 1.74 kB
JSON
{
"name": "@loglayer/transport-log-file-rotation",
"description": "Log file rotation transport for the LogLayer logging library.",
"version": "2.1.16",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"exports": {
"import": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"require": "./dist/index.cjs"
}
},
"types": "./dist/index.d.mts",
"sideEffects": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/loglayer/loglayer.git",
"directory": "packages/transports/log-file-rotation"
},
"author": "Theo Gravity <theo@suteki.nu>",
"keywords": [
"logging",
"log",
"loglayer",
"file",
"rotation",
"rotate",
"log rotate",
"rotate logs",
"transport"
],
"dependencies": {
"file-stream-rotator": "1.0.0",
"@loglayer/transport": "2.3.13"
},
"devDependencies": {
"@types/node": "25.0.3",
"tsdown": "0.18.2",
"tsx": "4.21.0",
"typescript": "5.9.3",
"vitest": "4.0.16",
"@internal/tsconfig": "2.1.0",
"loglayer": "8.4.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",
"livetest": "tsx src/__tests__/livetest.ts"
}
}