loglayer
Version:
A modern logging library with a fluent API for specifying log messages, metadata and errors
84 lines • 2.05 kB
JSON
{
"name": "loglayer",
"description": "A modern logging library with a fluent API for specifying log messages, metadata and errors",
"version": "9.3.0",
"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/core/loglayer"
},
"author": "Theo Gravity <theo@suteki.nu>",
"keywords": [
"logging",
"log",
"opentelemetry",
"otel",
"winston",
"bunyan",
"structured logs",
"structured logging",
"file rotation",
"structured",
"abstraction",
"pino",
"electron",
"loglevel",
"datadog",
"wide events",
"canonical logging",
"log rotation",
"rotation",
"rotate logs",
"typescript",
"statsd",
"metrics",
"telemetry"
],
"dependencies": {
"@loglayer/context-manager": "2.2.0",
"@loglayer/log-level-manager": "2.2.0",
"@loglayer/plugin": "3.2.0",
"@loglayer/shared": "4.3.0",
"@loglayer/transport": "3.2.0"
},
"devDependencies": {
"serialize-error": "13.0.1",
"tsdown": "0.22.1",
"typescript": "6.0.3",
"vitest": "4.1.7",
"@internal/tsconfig": "2.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",
"test:debug": "vitest --debug",
"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"
}
}