{
  "name": "@huggingface/agents",
  "packageManager": "pnpm@8.3.1",
  "version": "0.0.5",
  "description": "Multi-modal agents using Hugging Face's models",
  "repository": "https://github.com/huggingface/huggingface.js.git",
  "publishConfig": {
    "access": "public"
  },
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./index.ts",
      "require": "./dist/index.js",
      "import": "./dist/index.mjs"
    }
  },
  "browser": {
    "./dist/index.js": "./dist/browser/index.js",
    "./dist/index.mjs": "./dist/browser/index.mjs"
  },
  "engines": {
    "node": ">=18"
  },
  "source": "index.ts",
  "files": [
    "src",
    "dist",
    "index.ts",
    "tsconfig.json"
  ],
  "keywords": [
    "huggingface",
    "agents",
    "api",
    "client",
    "hugging",
    "face"
  ],
  "author": "Hugging Face",
  "license": "MIT",
  "devDependencies": {
    "@types/node": "^18.13.0",
    "type-fest": "^3.9.0",
    "typescript": "^5.0.4"
  },
  "dependencies": {
    "@huggingface/inference": "^2.6.1"
  },
  "scripts": {
    "lint": "eslint --quiet --fix --ext .cjs,.ts .",
    "lint:check": "eslint --ext .cjs,.ts .",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "build": "tsup",
    "test": "vitest run",
    "test:browser": "vitest run --browser.name=chrome --browser.headless --config ./vitest-browser.config.ts",
    "type-check": "tsc"
  }
}