UNPKG

komi-logger

Version:

High-performance, type-safe logging library for Bun with advanced TypeScript body intersection, modular strategy pattern, transform streams, and immutable API design.

104 lines โ€ข 2.51 kB
{ "name": "komi-logger", "version": "1.2.6", "author": "Komiriko", "description": "High-performance, type-safe logging library for Bun with advanced TypeScript body intersection, modular strategy pattern, transform streams, and immutable API design.", "type": "module", "license": "MIT", "keywords": [ "async", "body-intersection", "bun", "event-driven", "intersection-types", "logger", "logging", "modular", "performance", "strategy-pattern", "streams", "transform-streams", "type-safe", "typescript" ], "exports": { "./error": "./dist/error/index.js", "./error/types": "./dist/error/types/index.js", "./strategies": "./dist/strategies/index.js", "./types": "./dist/types/index.js", ".": "./dist/index.js" }, "scripts": { "build": "bun builder.ts", "dev": "bun --watch sandbox/index.ts", "docs": "typedoc --tsconfig tsconfig.build.json", "fix-lint": "eslint --fix ./source", "lint": "eslint ./source", "test:unit": "bun test --coverage $(find test/unit -name '*.spec.ts')", "test": "bun test --coverage" }, "devDependencies": { "@eslint/js": "^9.30.1", "@stylistic/eslint-plugin": "^5.1.0", "@types/bun": "^1.2.18", "eslint": "^9.30.1", "globals": "^16.3.0", "typedoc": "^0.28.7", "typescript-eslint": "^8.36.0" }, "peerDependencies": { "typescript": "^5.8.3" }, "changelog": { "types": { "feat": { "title": "๐Ÿš€ Enhancements", "semver": "minor" }, "perf": { "title": "โšก Performance", "semver": "patch" }, "fix": { "title": "๐Ÿ”ง Fixes", "semver": "patch" }, "refactor": { "title": "๐Ÿงน Refactors", "semver": "patch" }, "docs": { "title": "๐Ÿ“– Documentation", "semver": "patch" }, "build": { "title": "๐Ÿ“ฆ Build", "semver": "patch" }, "types": { "title": "๐ŸŒŠ Types", "semver": "patch" }, "chore": { "title": "๐Ÿฆ‰ Chore" }, "examples": { "title": "๐Ÿ€ Examples" }, "test": { "title": "๐Ÿงช Tests" }, "style": { "title": "๐ŸŽจ Styles" }, "ci": { "title": "๐Ÿค– CI" } }, "templates": { "commitMessage": "chore(๐Ÿฆ‰): v{{newVersion}}", "tagMessage": "v{{newVersion}}", "tagBody": "v{{newVersion}}" } } }