{
  "type": "module",
  "name": "@hoangvvo/llm-sdk",
  "version": "0.5.0",
  "description": "A JavaScript library that enables the development of applications that can interact with different language models through a unified interface.",
  "scripts": {
    "build": "tsc -p tsconfig.build.json",
    "lint": "eslint src",
    "test": "node --test --env-file=../.env --test-timeout=20000 --experimental-test-coverage --test-coverage-include=src/**/*.ts \"**/*.test.ts\" "
  },
  "files": [
    "dist"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/hoangvvo/llm-sdk.git",
    "directory": "sdk-js"
  },
  "author": "Hoang Vo (https://www.hoangvvo.com)",
  "bugs": {
    "url": "https://github.com/hoangvvo/llm-sdk/issues"
  },
  "homepage": "https://github.com/hoangvvo/llm-sdk",
  "keywords": [
    "llm",
    "language model",
    "agent",
    "ai",
    "openai",
    "anthropic",
    "cohere",
    "mistral"
  ],
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "exports": {
    ".": "./dist/index.js",
    "./openai": "./dist/openai/index.js",
    "./anthropic": "./dist/anthropic/index.js",
    "./google": "./dist/google/index.js",
    "./cohere": "./dist/cohere/index.js",
    "./mistral": "./dist/mistral/index.js",
    "./test": "./dist/test/index.js",
    "./package.json": "./package.json"
  },
  "imports": {
    "#test-common/assert": "./test-common/assert.ts",
    "#test-common/cases": "./test-common/cases.ts"
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "module": "./dist/index.js",
  "dependencies": {
    "@opentelemetry/api": "^1.9.1"
  }
}
