{
  "name": "@easbot/types",
  "version": "0.3.17",
  "description": "Shared types library for EASBOT ecosystem",
  "type": "module",
  "main": "dist/index.cjs",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    },
    "./package.json": "./package.json"
  },
  "keywords": [
    "ai",
    "agent",
    "skills",
    "library",
    "typescript",
    "shared",
    "types"
  ],
  "author": "houjallen",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/houjallen/easbot.git",
    "directory": "packages/types"
  },
  "homepage": "https://github.com/houjallen/easbot/tree/main/packages/types#readme",
  "bugs": {
    "url": "https://github.com/houjallen/easbot/issues"
  },
  "files": [
    "dist",
    "README.md",
    "README.en.md",
    "LICENSE"
  ],
  "dependencies": {
    "@ai-sdk/provider": "^3.0.15",
    "@ai-sdk/provider-utils": "^4.0.45",
    "ai": "^6.0.253",
    "zod": "^4.4.3",
    "@easbot/sdk": "0.3.17"
  },
  "devDependencies": {
    "@types/node": "^25.9.5",
    "tsup": "^8.5.1",
    "typescript": "^6.0.3",
    "vitest": "^4.1.5"
  },
  "engines": {
    "node": ">=22.22.2"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "dev": "tsup --watch --env.NODE_ENV development",
    "build": "tsup --env.NODE_ENV production",
    "test": "echo norun",
    "test:run": "echo norun",
    "test:coverage": "echo norun",
    "lint": "biome check .",
    "lint:fix": "biome check --write .",
    "lint:report": "biome check --reporter=summary .",
    "format": "biome format .",
    "format:fix": "biome format --write .",
    "type-check": "tsc --noEmit",
    "clean": "npx rimraf dist node_modules",
    "publish:npm": "bash scripts/publish.sh",
    "publish:npm:win": "powershell -ExecutionPolicy Bypass -File scripts/publish.ps1"
  }
}