{
  "name": "coolhand-node",
  "version": "0.11.0",
  "description": "Monitor and LLM API calls for analysis",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    },
    "./auto-monitor": {
      "import": {
        "types": "./dist/auto-monitor.d.ts",
        "default": "./dist/auto-monitor.js"
      },
      "require": {
        "types": "./dist/auto-monitor.d.cts",
        "default": "./dist/auto-monitor.cjs"
      }
    },
    "./package.json": "./package.json"
  },
  "keywords": [
    "llm",
    "openai",
    "anthropic",
    "monitoring",
    "analytics",
    "api",
    "logging"
  ],
  "author": "Michael Carroll",
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "https://github.com/Coolhand-Labs/coolhand-node.git"
  },
  "bugs": {
    "url": "https://github.com/Coolhand-Labs/coolhand-node/issues"
  },
  "homepage": "https://coolhandlabs.com",
  "engines": {
    "node": ">=18.0.0"
  },
  "files": [
    "dist/",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "sync-version": "node scripts/sync-version.mjs",
    "build": "npm run sync-version && tsup && node scripts/fix-cjs-imports.cjs && cp src/api-patterns.json dist/",
    "prepare": "npm run build",
    "prepublishOnly": "npm run typecheck && npm run build && npm run test:cjs && npm run test:esm",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "typecheck": "tsc --noEmit",
    "lint": "eslint src test --ext .ts",
    "lint:fix": "eslint src test --ext .ts --fix",
    "dev": "tsc --watch",
    "clean": "rm -rf dist coverage",
    "test:esm": "node scripts/verify-esm.mjs",
    "test:cjs": "node scripts/verify-cjs.cjs",
    "example": "node examples/basic.js"
  },
  "overrides": {
    "esbuild": "^0.28.1",
    "@babel/core": "^7.29.6",
    "@istanbuljs/load-nyc-config": {
      "js-yaml": "^3.15.0"
    },
    "@eslint/eslintrc": {
      "js-yaml": "^4.2.0"
    }
  },
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@types/jest": "^30.0.0",
    "@types/node": "^26.2.0",
    "@typescript-eslint/eslint-plugin": "^8.66.0",
    "@typescript-eslint/parser": "^8.66.0",
    "eslint": "^10.8.1",
    "eslint-plugin-jest": "^29.0.1",
    "globals": "^17.9.0",
    "jest": "^30.2.0",
    "ts-jest": "^29.4.4",
    "ts-node": "^10.9.0",
    "tsup": "^8.5.1",
    "typescript": "^6.0.3"
  }
}
