{
  "name": "@prism-lang/llm",
  "version": "1.3.4",
  "description": "LLM provider integrations for Prism",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "license": "MIT",
  "dependencies": {
    "@ai-sdk/anthropic": "^1.0.7",
    "@ai-sdk/google": "^1.0.7",
    "@types/node-fetch": "^2.6.12",
    "ai": "^4.0.32",
    "dotenv": "^16.5.0",
    "node-fetch": "^3.3.2",
    "zod": "^3.24.1",
    "@prism-lang/core": "4.0.0"
  },
  "peerDependencies": {
    "@prism-lang/confidence": "1.2.8"
  },
  "homepage": "https://docs.prismlang.dev/docs/api/llm/",
  "peerDependenciesMeta": {
    "@prism-lang/confidence": {
      "optional": true
    }
  },
  "devDependencies": {
    "@types/jest": "^29.5.12",
    "@types/node": "^20.11.30",
    "@typescript-eslint/eslint-plugin": "^7.3.1",
    "@typescript-eslint/parser": "^7.3.1",
    "eslint": "^8.57.0",
    "jest": "^29.7.0",
    "ts-jest": "^29.1.2",
    "typescript": "^5.4.3",
    "@prism-lang/confidence": "1.2.8"
  },
  "files": [
    "dist",
    "src",
    "README.md"
  ],
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/HaruHunab1320/Prism-TS.git",
    "directory": "packages/prism-llm"
  },
  "scripts": {
    "build": "tsc -b tsconfig.build.json",
    "dev": "tsc -b tsconfig.build.json -w",
    "test": "jest",
    "test:watch": "jest --watch",
    "lint": "eslint src --ext .ts",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf dist"
  }
}