{
  "name": "@axarai/axar",
  "version": "0.0.6",
  "private": false,
  "description": "TypeScript-based agent framework for building agentic applications powered by LLMs",
  "main": "dist/index.js",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.js"
    }
  },
  "scripts": {
    "prebuild": "rm -rf dist",
    "prepublishOnly": "npm run build",
    "build": "tsc --project tsconfig.build.json",
    "type-check": "tsc --noEmit",
    "test": "jest",
    "test:e2e": "RUN_E2E=true jest test/e2e",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "test:report": "jest --coverage --reporters=default --reporters=jest-junit",
    "open:coverage": "npx jest --coverage && open-cli coverage/lcov-report/index.html",
    "prettier:check": "prettier --check --write .",
    "docs": "typedoc"
  },
  "files": [
    "dist",
    "README.md"
  ],
  "keywords": [
    "typescript",
    "agent-framework",
    "llms",
    "generative-ai",
    "agent-framework-javascript",
    "agentic-ai"
  ],
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/axar-ai/axar.git"
  },
  "author": "axar-ai",
  "license": "ISC",
  "dependencies": {
    "@ai-sdk/anthropic": "1.0.6",
    "@ai-sdk/openai": "1.0.5",
    "@ai-sdk/provider": "1.0.4",
    "@opentelemetry/api": "^1.9.0",
    "ai": "4.1.27",
    "pino": "^9.6.0",
    "reflect-metadata": "^0.2.1",
    "zod": "^3.23.8",
    "zod-to-json-schema": "^3.24.1"
  },
  "devDependencies": {
    "@ai-sdk/google": "^1.1.11",
    "@jest/globals": "^29.7.0",
    "@opentelemetry/auto-instrumentations-node": "^0.55.3",
    "@opentelemetry/exporter-trace-otlp-http": "^0.57.1",
    "@opentelemetry/resources": "^1.30.1",
    "@opentelemetry/sdk-node": "^0.57.1",
    "@opentelemetry/sdk-trace-node": "^1.30.1",
    "@opentelemetry/semantic-conventions": "^1.28.0",
    "@types/jest": "^29.5.14",
    "@types/json-schema": "^7.0.15",
    "@types/node": "^22.10.8",
    "dotenv": "^16.4.7",
    "jest": "^29.7.0",
    "jest-junit": "^16.0.0",
    "open-cli": "^8.0.0",
    "prettier": "^3.4.2",
    "ts-jest": "^29.2.5",
    "ts-node": "^10.9.2",
    "typedoc": "^0.27.6",
    "typescript": "^5.7.2"
  },
  "peerDependencies": {
    "pino-pretty": "^13.0.0"
  },
  "peerDependenciesMeta": {
    "pino-pretty": {
      "optional": true
    }
  }
}
