{
  "name": "hri",
  "version": "0.0.13",
  "description": "HRI: A TypeScript-native, browser/Next.js-friendly multi-LLM client (LiteLLM for JS) with DHI validation",
  "author": "Rach Pradhan",
  "license": "MIT",
  "type": "module",
  "main": "dist/index.js",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist",
    "README.md"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/justrach/hri.git"
  },
  "homepage": "https://hri.trilok.ai",
  "bugs": {
    "url": "https://github.com/justrach/hri/issues"

  },

  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "sideEffects": false,
  "engines": {
    "node": ">=18",
    "bun": ">=1.0"
  },
  "scripts": {
    "prepublishOnly": "bun run build",
    "build:types": "bun x tsc -p tsconfig.build.json",
    "build:js": "bun build src/index.ts --outdir dist --sourcemap --minify --external dhi --external undici",
    "build": "bun run build:types && bun run build:js",
    "dev": "bun --watch run build",
    "example": "bun run examples/node.ts",
    "example:cerebras": "bun run examples/cerebras.ts",
    "example:groq-oss": "bun run examples/groq-oss.ts",
    "example:v1": "bun run examples/v1.ts",
    "example:cancel": "bun run examples/stream-cancel.ts",
    "bench:node": "node --env-file=.env --import tsx examples/benchmark-openai.ts",
    "release:patch": "npm version patch && npm publish --cache .npm-cache",
    "release:minor": "npm version minor && npm publish --cache .npm-cache",
    "release:major": "npm version major && npm publish --cache .npm-cache",
    "test": "bun test"
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "dhi": "0.2.31",
    "dotenv": "^17.2.1"
  },
  "devDependencies": {
    "@types/node": "^20.11.30",
    "dotenv-cli": "^10.0.0",
    "openai": "^5.16.0",
    "tsx": "^4.20.5",
    "typescript": "^5.4.5",
    "undici": "^7.15.0"
  }
}
