{
  "name": "@primitiv/logger",
  "version": "0.23.0",
  "description": "Isomorphic structured logger for Primitiv (Node + Browser)",
  "author": "THP Software",
  "repository": {
    "type": "git",
    "url": "https://github.com/thp-software/primitiv",
    "directory": "packages/logger"
  },
  "homepage": "https://primitivengine.com",
  "bugs": {
    "url": "https://github.com/thp-software/primitiv/issues"
  },
  "license": "Apache-2.0",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    }
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "sideEffects": false,
  "files": [
    "dist",
    "README.md",
    "LICENSE.txt"
  ],
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "typescript": "^5.6.3"
  },
  "scripts": {
    "build": "rimraf dist && node ../../scripts/build-package.mjs packages/logger",
    "dev": "tsc --watch",
    "clean": "rimraf dist",
    "lint": "eslint \"src/**/*.ts\" --max-warnings 0",
    "typecheck": "tsc --noEmit",
    "test": "node --test --import tsx src/**/*.test.ts"
  }
}