{
  "name": "@huggingface/tiny-agents",
  "version": "0.2.3",
  "description": "Lightweight, composable agents for AI applications",
  "repository": "https://github.com/huggingface/huggingface.js.git",
  "publishConfig": {
    "access": "public"
  },
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "bin": {
    "tiny-agents": "./dist/cli.js"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "require": "./dist/index.js",
      "import": "./dist/index.mjs"
    }
  },
  "engines": {
    "node": ">=18"
  },
  "source": "index.ts",
  "files": [
    "src",
    "dist",
    "tsconfig.json"
  ],
  "keywords": [
    "huggingface",
    "agent",
    "ai",
    "llm",
    "tiny-agent"
  ],
  "author": "Hugging Face",
  "license": "MIT",
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.11.4",
    "zod": "^3.25.7",
    "@huggingface/inference": "^3.13.2",
    "@huggingface/tasks": "^0.19.7",
    "@huggingface/mcp-client": "^0.2.0"
  },
  "scripts": {
    "lint": "eslint --quiet --fix --ext .cjs,.ts .",
    "lint:check": "eslint --ext .cjs,.ts .",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "build": "tsup src/*.ts --format cjs,esm --clean && tsc --emitDeclarationOnly --declaration",
    "test": "vitest run",
    "check": "tsc",
    "cli": "tsx src/cli.ts"
  }
}