{
  "name": "@agentforce/adk",
  "version": "0.12.1",
  "description": "AgentForce Agent Development Kit - A powerful framework for building AI agents and servers",
  "main": "./lib/mod.ts",
  "module": "./lib/mod.ts",
  "types": "./lib/mod.ts",
  "type": "module",
  "private": false,
  "exports": {
    ".": {
      "import": "./lib/mod.ts",
      "types": "./lib/mod.ts"
    }
  },
  "files": [
    "lib/**/*.ts",
    "lib/**/*.md",
    "README.md",
    "LICENSE"
  ],
  "keywords": [
    "ai",
    "agent",
    "adk",
    "agentforce",
    "llm",
    "ollama",
    "typescript",
    "framework"
  ],
  "author": "AgentForce Zone",
  "license": "AgentForce License",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/agentforcezone/agentforce-adk.git"
  },
  "bugs": {
    "url": "https://github.com/agentforcezone/agentforce-adk/issues"
  },
  "homepage": "https://github.com/agentforcezone/agentforce-adk#readme",
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "@eslint/compat": "1.3.2",
    "@types/bun": "1.2.20",
    "@types/cheerio": "0.22.35",
    "@types/jest": "30.0.0",
    "@types/node": "24.2.1",
    "@typescript-eslint/eslint-plugin": "8.39.1",
    "@typescript-eslint/parser": "8.39.1",
    "eslint": "9.33.0",
    "jest": "30.0.5",
    "jest-environment-node": "30.0.5",
    "ts-jest": "29.4.1"
  },
  "peerDependencies": {
    "typescript": "5.9.2"
  },
  "scripts": {
    "agent:integration": "bun run ./examples/agents/Integration-agent.ts",
    "agent:file": "bun run ./examples/agents/file.ts",
    "agent:mcp": "bun run ./examples/agents/mcp-agent.ts",
    "server:basic": "bun run ./examples/server/basic-server.ts",
    "test": "jest",
    "test:cov": "jest --coverage",
    "test:watch": "jest --watch",
    "lint": "eslint . --ext .ts,.tsx",
    "lint:fix": "eslint . --ext .ts,.tsx --fix",
    "lint:check": "eslint . --ext .ts,.tsx --max-warnings 0"
  },
  "dependencies": {
    "@google/genai": "1.14.0",
    "@modelcontextprotocol/sdk": "^1.17.3",
    "cheerio": "1.1.2",
    "handlebars": "4.7.8",
    "hono": "4.9.1",
    "ollama": "0.5.17",
    "openai": "5.12.2",
    "puppeteer": "24.16.2",
    "puppeteer-extra": "3.3.6",
    "puppeteer-extra-plugin-stealth": "2.11.2",
    "yaml": "2.8.1"
  }
}
