{
  "name": "@cuylabs/agent-a365-tooling",
  "version": "9.1.0",
  "description": "Microsoft Agent 365 tooling capability provider for @cuylabs/agent-core MCP tools",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "docs",
    "README.md"
  ],
  "dependencies": {
    "@cuylabs/agent-core": "^9.1.0"
  },
  "peerDependencies": {
    "@microsoft/agents-a365-tooling": ">=0.2.0-preview.5 <1.0.0",
    "@microsoft/agents-hosting": ">=1.5.0 <2.0.0"
  },
  "peerDependenciesMeta": {
    "@microsoft/agents-hosting": {
      "optional": true
    }
  },
  "devDependencies": {
    "@ai-sdk/openai": "4.0.0-beta.38",
    "@microsoft/agents-a365-tooling": "0.2.0-preview.5",
    "@microsoft/agents-hosting": "^1.5.3",
    "@modelcontextprotocol/sdk": "^1.29.0",
    "@types/node": "^22.0.0",
    "dotenv": "^17.2.3",
    "tsup": "^8.0.0",
    "tsx": "^4.21.0",
    "typescript": "^5.7.0",
    "vitest": "^4.0.18",
    "zod": "^3.25.76 || ^4.1.8"
  },
  "keywords": [
    "agent",
    "microsoft",
    "agent365",
    "a365",
    "mcp",
    "tooling"
  ],
  "author": "cuylabs",
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "https://github.com/cuylabs-ai/agents-ts.git",
    "directory": "packages/agent-a365-tooling"
  },
  "engines": {
    "node": ">=20"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsup src/index.ts --format esm --dts --clean",
    "dev": "tsup src/index.ts --format esm --dts --watch",
    "typecheck": "tsc --noEmit",
    "test": "vitest run",
    "test:watch": "vitest",
    "clean": "rm -rf dist"
  }
}