{
  "name": "@stream-io/logger",
  "version": "2.0.0",
  "description": "Logging library for Stream.io JS-based SDKs and applications",
  "main": "./dist/cjs/index.js",
  "types": "./dist/esm/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/esm/index.d.ts",
      "react-native": {
        "import": "./dist/esm/index.js",
        "require": "./dist/cjs/index.js"
      },
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js"
    }
  },
  "files": [
    "dist",
    "src",
    "!src/*.test.ts"
  ],
  "keywords": [
    "logging"
  ],
  "author": {
    "name": "GetStream.io, Inc.",
    "url": "https://getstream.io/team/"
  },
  "license": "SEE LICENSE IN LICENSE",
  "devDependencies": {
    "@types/node": "^22.16.4",
    "concurrently": "^9.2.1",
    "rimraf": "^6.0.1",
    "typescript": "^5.9.2"
  },
  "scripts": {
    "build": "rimraf ./dist && concurrently 'tsc -p tsconfig.esm.json' 'tsc -p tsconfig.cjs.json'",
    "test": "node --test --experimental-transform-types src/index.test.ts"
  }
}