{
  "name": "@llmbridge/core",
  "version": "0.1.1",
  "description": "Core package for unified LLM interface",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "scripts": {
    "build": "npm run clean && tsc --emitDeclarationOnly && tsup src/index.ts --format cjs,esm --no-dts",
    "test": "vitest run",
    "lint": "eslint src --ext .ts",
    "clean": "rimraf dist",
    "build:publish": "npm run build && npm publish"
  },
  "keywords": [
    "llm",
    "ai",
    "language-models"
  ],
  "files": [
    "dist",
    "README.md"
  ],
  "publishConfig": {
    "access": "public"
  },
  "author": "",
  "license": "MIT",
  "peerDependencies": {
    "typescript": "^5.0.0"
  },
  "devDependencies": {
    "@types/node": "^18.11.9",
    "rimraf": "^5.0.5",
    "tsup": "^8.4.0",
    "typescript": "^5.7.3",
    "vitest": "^3.0.7"
  },
  "dependencies": {
    "dotenv": "^16.4.7"
  }
}