{
  "name": "advanced-logger",
  "version": "4.1.0",
  "description": "Advanced logger module extendable with plugins. Works in nodejs and browsers",
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "unpkg": "./dist/index.global.js",
  "jsdelivr": "./dist/index.global.js",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist"
  ],
  "engines": {
    "node": ">=24.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsup",
    "build:watch": "tsup --watch",
    "test": "jest --selectProjects unit",
    "test:integration": "npm run build && jest --selectProjects runtime",
    "test:all": "npm run test && npm run test:integration",
    "test:watch": "npm test -- --watch",
    "coverage": "jest --selectProjects unit --coverage --no-cache",
    "coverage:watch": "npm run coverage -- --watch",
    "release": "standard-version --commit-all",
    "bundlesize": "node scripts/check-bundle-size.mjs",
    "type-check": "tsc --noEmit true",
    "update-dependencies": "npx npm-check-updates -u --packageFile package.json"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/AlexeyPopovUA/advanced-logger.git"
  },
  "keywords": [
    "logger",
    "advanced-logger",
    "logger-plugin",
    "sumologic",
    "strategy",
    "typescript",
    "library",
    "esm",
    "tsup",
    "package",
    "jest"
  ],
  "author": "Oleksii Popov",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/AlexeyPopovUA/advanced-logger/issues"
  },
  "homepage": "https://github.com/AlexeyPopovUA/advanced-logger#readme",
  "devDependencies": {
    "@commitlint/cli": "20.5.3",
    "@commitlint/config-conventional": "20.5.3",
    "@types/jest": "^30.0.0",
    "@types/lodash-es": "4.17.12",
    "@types/node": "24.10.9",
    "@typescript-eslint/eslint-plugin": "8.60.1",
    "@typescript-eslint/parser": "8.60.1",
    "eslint": "9.39.2",
    "eslint-plugin-import": "2.32.0",
    "eslint-plugin-jest": "29.15.2",
    "fast-safe-stringify": "2.1.1",
    "husky": "9.1.7",
    "jest": "^30.4.2",
    "jest-environment-jsdom": "^30.4.1",
    "jest-util": "^30.4.0",
    "lodash-es": "4.17.23",
    "standard-version": "9.5.0",
    "ts-jest": "29.4.11",
    "tsup": "8.5.0",
    "typescript": "5.8.3"
  },
  "standard-version": {
    "scripts": {
      "precommit": "node ./build-scripts/version.js && git add ./sonar-project.properties"
    }
  }
}
