{
  "name": "nightingale-logger",
  "version": "18.2.0",
  "description": "Logger for browser and node",
  "keywords": [
    "nightingale"
  ],
  "homepage": "https://github.com/christophehurpeau/nightingale",
  "bugs": {
    "url": "https://github.com/christophehurpeau/nightingale/issues"
  },
  "license": "ISC",
  "author": "Christophe Hurpeau <christophe@hurpeau.com> (http://christophe.hurpeau.com/)",
  "repository": {
    "type": "git",
    "url": "https://github.com/christophehurpeau/nightingale.git",
    "directory": "packages/nightingale-logger"
  },
  "files": [
    "src",
    "dist"
  ],
  "type": "module",
  "sideEffects": false,
  "main": "./dist/index-node22.mjs",
  "module": "./dist/index-browser.es.js",
  "browser": "./dist/index-browser.es.js",
  "types": "./dist/definitions/index.d.ts",
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "types": "./dist/definitions/index.d.ts",
      "node": {
        "import": "./dist/index-node22.mjs"
      },
      "react-native": {
        "import": "./dist/index-react-native.es.js"
      },
      "browser": {
        "import": "./dist/index-browser.es.js"
      }
    }
  },
  "scripts": {
    "build": "yarn run clean:build && rollup --config rollup.config.mjs && yarn run build:definitions",
    "build:definitions": "tsc -p tsconfig.json",
    "clean": "yarn clean:build",
    "clean:build": "pob-esbuild-clean-out dist",
    "lint": "yarn run lint:eslint",
    "lint:eslint": "yarn '../..' run eslint --quiet 'packages/nightingale-logger'",
    "test": "yarn '../..' run test -- 'packages/nightingale-logger'",
    "tsc": "tsc",
    "watch": "yarn clean:build && rollup --config rollup.config.mjs --watch"
  },
  "dependencies": {
    "@types/node": ">=22.0.0",
    "nightingale-levels": "18.2.0",
    "nightingale-types": "18.2.0"
  },
  "devDependencies": {
    "@pob/rollup-esbuild": "9.1.1",
    "typescript": "6.0.3"
  },
  "browserslist": {
    "production": [
      "defaults",
      "> 0.2%",
      "not ie < 12",
      "not safari < 10",
      "not ios_saf < 10"
    ]
  },
  "engines": {
    "node": ">=22.18.0"
  },
  "pob": {
    "bundler": "rollup-esbuild",
    "entries": [
      "index"
    ],
    "envs": [
      {
        "target": "node",
        "version": "22"
      },
      {
        "target": "react-native"
      },
      {
        "target": "browser"
      }
    ],
    "typescript": true
  }
}