{
  "name": "@robota-sdk/agent-sdk",
  "version": "3.0.0-beta.63",
  "description": "Programmatic SDK for building AI agents with Robota — provides InteractiveSession, createQuery(), command APIs, permissions, hooks, and context loading",
  "type": "module",
  "main": "dist/node/index.js",
  "types": "dist/node/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/node/index.d.ts",
      "source": "./src/index.ts",
      "node": {
        "import": "./dist/node/index.js",
        "require": "./dist/node/index.cjs"
      },
      "default": {
        "import": "./dist/node/index.js",
        "require": "./dist/node/index.cjs"
      }
    }
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/woojubb/robota.git"
  },
  "homepage": "https://robota.io/",
  "bugs": {
    "url": "https://github.com/woojubb/robota/issues"
  },
  "files": [
    "dist"
  ],
  "dependencies": {
    "chalk": "^5.3.0",
    "zod": "^3.24.0",
    "@robota-sdk/agent-core": "3.0.0-beta.63",
    "@robota-sdk/agent-sessions": "3.0.0-beta.63",
    "@robota-sdk/agent-tools": "3.0.0-beta.63",
    "@robota-sdk/agent-runtime": "3.0.0-beta.63",
    "@robota-sdk/agent-interface-transport": "3.0.0-beta.63"
  },
  "devDependencies": {
    "rimraf": "^5.0.5",
    "tsup": "^8.0.1",
    "typescript": "^5.3.3",
    "vitest": "^1.6.1"
  },
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsup src/index.ts --format esm,cjs --dts --out-dir dist/node --clean",
    "build:js": "tsup src/index.ts --format esm,cjs --out-dir dist/node --clean",
    "build:types": "tsup src/index.ts --format esm,cjs --dts-only --out-dir dist/node",
    "test": "vitest run --passWithNoTests",
    "test:coverage": "vitest run --coverage --passWithNoTests",
    "typecheck": "tsc --noEmit",
    "lint": "eslint src/ --ext .ts",
    "clean": "rimraf dist"
  }
}