{
  "name": "@hmbown/kytchen-core",
  "version": "0.1.3",
  "description": "Orchestration engine for Kytchen: run loop, tool registry, policy engine, and sandbox enforcement.",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "files": [
    "dist",
    "!dist/**/*.test.*",
    "LICENSE",
    "README.md"
  ],
  "dependencies": {
    "@hmbown/kytchen-reasoning": "0.1.3",
    "@hmbown/kytchen-providers-openai": "0.1.3",
    "@hmbown/kytchen-storage": "0.1.3",
    "@hmbown/kytchen-protocol": "0.1.3"
  },
  "keywords": [
    "kytchen",
    "agent",
    "orchestration",
    "tools",
    "policy"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Hmbown/Kytchen.git",
    "directory": "packages/core"
  },
  "engines": {
    "node": ">=20.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsc -p tsconfig.json",
    "typecheck": "tsc -p tsconfig.json --noEmit",
    "test": "node --test dist/*.test.js dist/**/*.test.js"
  }
}