UNPKG

loglayer

Version:

A modern logging library with a fluent API for specifying log messages, metadata and errors

78 lines 1.91 kB
{ "name": "loglayer", "description": "A modern logging library with a fluent API for specifying log messages, metadata and errors", "version": "6.6.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", "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", "log rotation", "rotation", "rotate logs", "typescript" ], "dependencies": { "@loglayer/shared": "2.3.1", "@loglayer/transport": "2.2.1", "@loglayer/context-manager": "1.1.1", "@loglayer/plugin": "2.1.1" }, "devDependencies": { "hash-runner": "2.0.1", "serialize-error": "12.0.0", "tsup": "8.5.0", "typescript": "5.8.3", "vitest": "3.2.4", "@internal/tsconfig": "2.1.0" }, "bugs": "https://github.com/loglayer/loglayer/issues", "engines": { "node": ">=18" }, "files": [ "dist" ], "homepage": "https://loglayer.dev", "scripts": { "build": "tsup src/index.ts", "test": "vitest --run", "test:debug": "vitest --debug", "build:dev": "node_modules/.bin/hash-runner", "clean": "rm -rf .turbo node_modules dist", "lint": "biome check --write --unsafe src && biome format src --write && biome lint src --fix", "verify-types": "tsc --noEmit" } }