{
  "name": "@bernierllc/ai-provider-core",
  "version": "1.6.0",
  "description": "Abstract AI provider interface for unified multi-provider AI integration",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "keywords": [
    "ai",
    "provider",
    "abstraction",
    "interface",
    "openai",
    "anthropic",
    "multi-provider"
  ],
  "author": "Bernier LLC",
  "license": "SEE LICENSE IN LICENSE",
  "dependencies": {
    "@bernierllc/logger": "1.7.0"
  },
  "devDependencies": {
    "@types/jest": "^29.5.0",
    "@types/node": "^20.0.0",
    "@typescript-eslint/eslint-plugin": "^6.0.0",
    "@typescript-eslint/parser": "^6.0.0",
    "eslint": "^8.50.0",
    "jest": "^29.7.0",
    "ts-jest": "^29.1.0",
    "typescript": "^5.3.0"
  },
  "bernierllc": {
    "category": "core",
    "tags": [
      "ai",
      "provider",
      "abstraction",
      "interface"
    ],
    "integration": {
      "neverhub": "optional",
      "logger": "optional",
      "docs-suite": "ready"
    }
  },
  "files": [
    "dist",
    "README.md"
  ],
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "scripts": {
    "build": "tsc",
    "test": "jest --watch",
    "test:run": "jest",
    "test:coverage": "jest --coverage",
    "lint": "eslint src --ext .ts",
    "clean": "rm -rf dist"
  }
}