{
  "name": "@keystrokehq/core",
  "version": "0.0.13",
  "private": false,
  "description": "Core TypeScript SDK primitives for authoring Keystroke workflows, agents, operations, and triggers.",
  "sideEffects": false,
  "type": "module",
  "main": "./dist/index.mjs",
  "types": "./dist/index.d.mts",
  "exports": {
    ".": {
      "types": "./dist/index.d.mts",
      "import": "./dist/index.mjs",
      "default": "./dist/index.mjs"
    },
    "./agent": {
      "types": "./dist/agent/index.d.mts",
      "import": "./dist/agent/index.mjs",
      "default": "./dist/agent/index.mjs"
    },
    "./artifacts": {
      "types": "./dist/artifacts/index.d.mts",
      "import": "./dist/artifacts/index.mjs",
      "default": "./dist/artifacts/index.mjs"
    },
    "./credential-set": {
      "types": "./dist/credential-set/index.d.mts",
      "import": "./dist/credential-set/index.mjs",
      "default": "./dist/credential-set/index.mjs"
    },
    "./errors": {
      "types": "./dist/errors/index.d.mts",
      "import": "./dist/errors/index.mjs",
      "default": "./dist/errors/index.mjs"
    },
    "./messaging-gateway": {
      "types": "./dist/messaging-gateway/index.d.mts",
      "import": "./dist/messaging-gateway/index.mjs",
      "default": "./dist/messaging-gateway/index.mjs"
    },
    "./mcp-server": {
      "types": "./dist/mcp-server/index.d.mts",
      "import": "./dist/mcp-server/index.mjs",
      "default": "./dist/mcp-server/index.mjs"
    },
    "./operation": {
      "types": "./dist/operation/index.d.mts",
      "import": "./dist/operation/index.mjs",
      "default": "./dist/operation/index.mjs"
    },
    "./operation/runtime": {
      "types": "./dist/operation/runtime.d.mts",
      "import": "./dist/operation/runtime.mjs",
      "default": "./dist/operation/runtime.mjs"
    },
    "./sandbox": {
      "types": "./dist/sandbox/index.d.mts",
      "import": "./dist/sandbox/index.mjs",
      "default": "./dist/sandbox/index.mjs"
    },
    "./task": {
      "types": "./dist/task/index.d.mts",
      "import": "./dist/task/index.mjs",
      "default": "./dist/task/index.mjs"
    },
    "./trigger": {
      "types": "./dist/trigger/index.d.mts",
      "import": "./dist/trigger/index.mjs",
      "default": "./dist/trigger/index.mjs"
    },
    "./workflow": {
      "types": "./dist/workflow/index.d.mts",
      "import": "./dist/workflow/index.mjs",
      "default": "./dist/workflow/index.mjs"
    },
    "./workflow/runtime": {
      "types": "./dist/workflow/runtime.d.mts",
      "import": "./dist/workflow/runtime.mjs",
      "default": "./dist/workflow/runtime.mjs"
    },
    "./flow-graph": {
      "types": "./dist/flow-graph/index.d.mts",
      "import": "./dist/flow-graph/index.mjs",
      "default": "./dist/flow-graph/index.mjs"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "biome",
    "dist",
    "README.md"
  ],
  "dependencies": {
    "cron-schedule": "^6.0.0",
    "oxc-parser": "^0.128.0",
    "zod": "4.4.3"
  },
  "devDependencies": {
    "@types/node": "^22.19.11",
    "tsdown": "0.21.10",
    "typescript": "^5.9.3",
    "vitest": "^4.1.5",
    "@keystroke/typescript-config": "0.0.0"
  },
  "keywords": [
    "automation",
    "keystroke",
    "sdk",
    "workflow",
    "agents"
  ],
  "homepage": "https://github.com/keystrokehq/keystroke#readme",
  "bugs": {
    "url": "https://github.com/keystrokehq/keystroke/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/keystrokehq/keystroke",
    "directory": "packages/core"
  },
  "license": "MIT",
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "scripts": {
    "build": "tsdown",
    "typecheck": "tsgo --build",
    "lint": "biome check --write .",
    "test:unit": "vitest run"
  }
}