{
  "name": "@alisahindev/ilog",
  "version": "1.1.10",
  "description": "Full type-supported logger for JavaScript/TypeScript projects with API logging, performance monitoring, and sensitive data masking",
  "main": "dist/src/index.js",
  "types": "dist/src/index.d.ts",
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "npm run build:prod && npm run build:package",
    "build:dev": "tsc -p tsconfig.build.json --sourceMap --declarationMap",
    "build:prod": "tsc -p tsconfig.build.json",
    "build:package": "node scripts/build-package.js",
    "dev": "tsc --watch --sourceMap --declarationMap",
    "test": "playwright test",
    "test:ui": "playwright test --ui",
    "test:debug": "playwright test --debug",
    "test:headed": "playwright test --headed",
    "test:coverage": "playwright test --reporter=html",
    "example": "ts-node examples/basic-usage.ts",
    "example-advanced": "ts-node examples/advanced-usage.ts",
    "prepare": "husky install",
    "prepublishOnly": "npm run build",
    "publish:github": "npm publish --registry=https://npm.pkg.github.com/",
    "publish:npm": "mv .npmrc .npmrc.backup 2>/dev/null || true && npm publish --registry=https://registry.npmjs.org/ && mv .npmrc.backup .npmrc 2>/dev/null || true",
    "publish:all": "npm run publish:github && npm run publish:npm",
    "clean": "rm -rf dist",
    "lint": "eslint src/**/*.ts --fix",
    "lint:check": "eslint src/**/*.ts",
    "security:audit": "npm audit",
    "security:fix": "npm audit fix",
    "security:check": "npm-check-updates -u",
    "type-check": "tsc --noEmit && tsc -p tsconfig.build.json --noEmit",
    "validate": "npm run lint:check && npm run type-check && npm run test",
    "deps:check": "depcheck",
    "format": "prettier --write \"src/**/*.ts\"",
    "format:check": "prettier --check \"src/**/*.ts\""
  },
  "keywords": [
    "logger",
    "typescript",
    "api",
    "logging",
    "monitoring",
    "performance",
    "interceptor",
    "masking",
    "structured-logging",
    "nodejs",
    "javascript"
  ],
  "author": "Ali Sahin <ali.sahin@trendyol.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/alisahindev/ilog.git"
  },
  "bugs": {
    "url": "https://github.com/alisahindev/ilog/issues"
  },
  "homepage": "https://github.com/alisahindev/ilog#readme",
  "publishConfig": {
    "registry": "https://registry.npmjs.org/",
    "access": "public"
  },
  "engines": {
    "node": ">=14.0.0"
  },
  "devDependencies": {
    "@playwright/test": "^1.53.1",
    "@types/node": "^20.0.0",
    "@typescript-eslint/eslint-plugin": "^6.0.0",
    "@typescript-eslint/parser": "^6.0.0",
    "depcheck": "^1.4.3",
    "eslint": "^8.45.0",
    "eslint-config-prettier": "^9.0.0",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-security": "^1.7.1",
    "husky": "^8.0.3",
    "lint-staged": "^16.1.2",
    "npm-check-updates": "^16.10.0",
    "prettier": "^3.0.0",
    "ts-node": "^10.9.0",
    "typescript": "^5.0.0"
  },
  "dependencies": {},
  "peerDependencies": {
    "chalk": "^4.1.2"
  },
  "peerDependenciesMeta": {
    "chalk": {
      "optional": true
    }
  },
  "lint-staged": {
    "*.ts": [
      "eslint --fix",
      "prettier --write",
      "git add"
    ],
    "*.{json,md}": [
      "prettier --write",
      "git add"
    ]
  }
}
