{
  "name": "@turbot/guardrails-lib-ai",
  "version": "1.2.0",
  "author": "Turbot HQ, Inc",
  "description": "A unified interface for multiple AI language model providers",
  "main": "index.js",
  "scripts": {
    "test": "jest",
    "test:unit": "jest --testPathIgnorePatterns=integration",
    "test:integration": "jest --config jest.integration.config.js --maxWorkers=6",
    "test:integration:openai": "jest --config jest.integration.config.js --maxWorkers=4 __tests__/integration/openai.integration.test.js",
    "test:integration:anthropic": "jest --config jest.integration.config.js --maxWorkers=4 __tests__/integration/anthropic.integration.test.js",
    "test:integration:bedrock": "jest --config jest.integration.config.js --maxWorkers=4 __tests__/integration/bedrock.integration.test.js",
    "test:integration:azure-openai": "jest --config jest.integration.config.js --maxWorkers=4 __tests__/integration/azure-openai.integration.test.js",
    "example": "node example.js",
    "lint": "eslint ."
  },
  "keywords": [
    "ai",
    "language-models",
    "openai",
    "anthropic",
    "aws-bedrock",
    "azure-openai",
    "ai-sdk"
  ],
  "license": "Apache-2.0",
  "dependencies": {
    "@anthropic-ai/sdk": "0.60.0",
    "@aws-sdk/client-bedrock-runtime": "3.918.0",
    "@turbot/errors": "5.3.0",
    "lodash": "4.17.21",
    "openai": "5.15.0",
    "undici": "7.15.0"
  },
  "devDependencies": {
    "dotenv": "^17.2.3",
    "eslint": "^8.57.0",
    "jest": "^29.7.0"
  },
  "eslintConfig": {
    "extends": [
      "plugin:prettier/recommended",
      "eslint:recommended",
      "plugin:you-dont-need-lodash-underscore/compatible"
    ],
    "env": {
      "es6": true,
      "node": true,
      "mocha": true
    },
    "parserOptions": {
      "ecmaVersion": 10
    },
    "rules": {
      "no-console": "off",
      "you-dont-need-lodash-underscore/is-nil": "off"
    }
  },
  "prettier": {
    "printWidth": 120
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/turbot/guardrails-lib-ai.git"
  },
  "bugs": {
    "url": "https://github.com/turbot/guardrails-lib-ai/issues"
  },
  "homepage": "https://github.com/turbot/guardrails-lib-ai#readme"
}