{
  "name": "@langchain/openai",
  "version": "1.1.3",
  "description": "OpenAI integrations for LangChain.js",
  "author": "LangChain",
  "license": "MIT",
  "type": "module",
  "engines": {
    "node": ">=20"
  },
  "repository": {
    "type": "git",
    "url": "git@github.com:langchain-ai/langchainjs.git"
  },
  "homepage": "https://github.com/langchain-ai/langchainjs/tree/main/libs/providers/langchain-openai/",
  "dependencies": {
    "js-tiktoken": "^1.0.12",
    "openai": "^6.9.0",
    "zod": "^3.25.76 || ^4"
  },
  "peerDependencies": {
    "@langchain/core": "^1.0.0"
  },
  "devDependencies": {
    "@azure/identity": "^4.2.1",
    "@cfworker/json-schema": "^4.1.1",
    "@tsconfig/recommended": "^1.0.10",
    "@vitest/coverage-v8": "^3.2.4",
    "dotenv": "^17.2.1",
    "dpdm": "^3.14.0",
    "eslint": "^9.34.0",
    "prettier": "^2.8.3",
    "rimraf": "^5.0.1",
    "typescript": "~5.8.3",
    "uuid": "^11.1.0",
    "vitest": "^3.2.4",
    "zod-to-json-schema": "^3.24.6",
    "@langchain/core": "1.1.0",
    "@langchain/eslint": "0.1.1",
    "@langchain/standard-tests": "0.0.3"
  },
  "publishConfig": {
    "access": "public"
  },
  "keywords": [
    "llm",
    "ai",
    "gpt3",
    "chain",
    "prompt",
    "prompt engineering",
    "chatgpt",
    "machine learning",
    "ml",
    "openai",
    "embeddings",
    "vectorstores"
  ],
  "main": "./dist/index.cjs",
  "types": "./dist/index.d.cts",
  "exports": {
    ".": {
      "input": "./src/index.ts",
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      },
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      }
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist/",
    "CHANGELOG.md",
    "README.md",
    "LICENSE"
  ],
  "module": "./dist/index.js",
  "scripts": {
    "build": "turbo build:compile --filter @langchain/openai --output-logs new-only",
    "build:compile": "tsdown",
    "lint:eslint": "eslint --cache src/",
    "lint:dpdm": "dpdm --skip-dynamic-imports circular --exit-code circular:1 --no-warning --no-tree src/*.ts src/**/*.ts",
    "lint": "pnpm lint:eslint && pnpm lint:dpdm",
    "lint:fix": "pnpm lint:eslint --fix && pnpm lint:dpdm",
    "clean": "rm -rf .turbo dist/",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:int": "vitest run --mode int",
    "test:standard:unit": "vitest run --mode standard-unit",
    "test:standard:int": "vitest run --mode standard-int",
    "test:standard": "pnpm test:standard:unit && pnpm test:standard:int",
    "format": "prettier --config .prettierrc --write \"src\"",
    "format:check": "prettier --config .prettierrc --check \"src\"",
    "typegen": "pnpm run typegen:profiles",
    "typegen:profiles": "pnpm --filter @langchain/model-profiles make --config profiles.toml"
  }
}