{
  "name": "@ag-ui/a2ui-toolkit",
  "version": "0.0.4",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/ag-ui-protocol/ag-ui.git"
  },
  "description": "Framework-agnostic helpers for building A2UI subagent tools — op builders, prompt assembly, history walkers, and request/envelope orchestration shared across framework adapters.",
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "sideEffects": false,
  "private": false,
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist/**",
    "README.md"
  ],
  "dependencies": {},
  "devDependencies": {
    "@types/node": "^20.11.19",
    "@vitest/coverage-istanbul": "^4.0.18",
    "publint": "^0.3.12",
    "@arethetypeswrong/cli": "^0.17.4",
    "vitest": "^4.0.18",
    "tsdown": "^0.20.1",
    "typescript": "^5.3.3"
  },
  "exports": {
    ".": {
      "require": "./dist/index.js",
      "import": "./dist/index.mjs"
    },
    "./package.json": "./package.json"
  },
  "scripts": {
    "build": "tsdown",
    "dev": "tsdown --watch",
    "clean": "git clean -fdX --exclude=\"!.env\"",
    "typecheck": "tsc --noEmit",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage",
    "test:watch": "vitest",
    "test:exports": "publint --strict && attw --pack",
    "link:global": "pnpm link --global",
    "unlink:global": "pnpm unlink --global"
  }
}