{
  "name": "@voltagent/internal",
  "description": "VoltAgent internal - an internal set of tools for the VoltAgent packages",
  "version": "1.0.3",
  "dependencies": {
    "type-fest": "^4.41.0"
  },
  "devDependencies": {
    "@vitest/coverage-v8": "^3.2.4"
  },
  "exports": {
    ".": {
      "import": {
        "types": "./dist/main/index.d.mts",
        "default": "./dist/main/index.mjs"
      },
      "require": {
        "types": "./dist/main/index.d.ts",
        "default": "./dist/main/index.js"
      }
    },
    "./test": {
      "import": {
        "types": "./dist/test/index.d.mts",
        "default": "./dist/test/index.mjs"
      },
      "require": {
        "types": "./dist/test/index.d.ts",
        "default": "./dist/test/index.js"
      }
    },
    "./utils": {
      "import": {
        "types": "./dist/utils/index.d.mts",
        "default": "./dist/utils/index.mjs"
      },
      "require": {
        "types": "./dist/utils/index.d.ts",
        "default": "./dist/utils/index.js"
      }
    },
    "./a2a": {
      "import": {
        "types": "./dist/main/index.d.mts",
        "default": "./dist/main/index.mjs"
      },
      "require": {
        "types": "./dist/main/index.d.ts",
        "default": "./dist/main/index.js"
      }
    },
    "./mcp": {
      "import": {
        "types": "./dist/main/index.d.mts",
        "default": "./dist/main/index.mjs"
      },
      "require": {
        "types": "./dist/main/index.d.ts",
        "default": "./dist/main/index.js"
      }
    },
    "./types": {
      "types": "./dist/types/index.d.ts"
    }
  },
  "files": [
    "dist/**/*",
    "dev/dist/**/*",
    "test/dist/**/*"
  ],
  "license": "MIT",
  "main": "dist/main/index.js",
  "module": "dist/main/index.mjs",
  "repository": {
    "type": "git",
    "url": "https://github.com/VoltAgent/voltagent.git",
    "directory": "packages/internal"
  },
  "types": "dist/main/index.d.ts",
  "typesVersions": {
    "*": {
      "*": [
        "dist/main/index.d.ts"
      ],
      "test": [
        "dist/test/index.d.ts"
      ],
      "utils": [
        "dist/utils/index.d.ts"
      ],
      "a2a": [
        "dist/main/index.d.ts"
      ],
      "mcp": [
        "dist/main/index.d.ts"
      ],
      "types": [
        "dist/types/index.d.ts"
      ]
    }
  },
  "scripts": {
    "attw": "attw --pack",
    "build": "tsup",
    "dev": "tsup --watch",
    "lint": "biome check .",
    "lint:fix": "biome check . --write",
    "publint": "publint --strict",
    "test": "vitest",
    "test:coverage": "vitest run --coverage"
  }
}