{
    "name": "@200systems/mf-logger",
    "version": "1.2.6",
    "description": "Structured logging with multiple outputs and performance timing for TypeScript applications",
    "type": "module",
    "main": "./dist/index.js",
    "types": "./dist/index.d.ts",
    "exports": {
        ".": {
            "import": "./dist/index.js",
            "require": "./dist/index.js",
            "types": "./dist/index.d.ts"
        }
    },
    "files": [
        "dist/**/*",
        "README.md",
        "LICENSE"
    ],
    "scripts": {
        "build": "tsc",
        "dev": "tsc --watch",
        "clean": "rm -rf dist *.tsbuildinfo",
        "test": "vitest run",
        "test:watch": "vitest",
        "test:coverage": "vitest run --coverage",
        "lint": "eslint src/**/*.ts",
        "lint:fix": "eslint src/**/*.ts --fix",
        "prepublishOnly": "npm run build && npm run test"
    },
    "keywords": [
        "typescript",
        "logging",
        "structured-logging",
        "microframework",
        "performance",
        "file-logging",
        "console-logging"
    ],
    "author": "Cleiton Marques <cleiton.marques@200.systems>",
    "license": "MIT",
    "repository": {
        "type": "git",
        "url": "git+https://github.com/200Systems/bitbrick-microframework.git",
        "directory": "packages/logger"
    },
    "bugs": {
        "url": "https://github.com/200Systems/bitbrick-microframework/issues"
    },
    "homepage": "https://github.com/200Systems/bitbrick-microframework/tree/main/packages/logger#readme",
    "devDependencies": {
        "@types/node": "^20.10.0",
        "typescript": "^5.8.3",
        "vitest": "^1.0.0"
    },
    "engines": {
        "node": ">=18.0.0"
    },
    "publishConfig": {
        "access": "public"
    }
}
