{
  "name": "@smooai/smooth-operator-core",
  "version": "1.13.6",
  "description": "Native TypeScript implementation of the smooth-operator agent engine — an in-process, OpenAI-compatible agentic tool-calling loop with knowledge grounding. The TypeScript sibling of the Rust reference engine, the C# core, and the Python core.",
  "type": "module",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/SmooAI/smooth-operator-core.git",
    "directory": "typescript/core"
  },
  "homepage": "https://github.com/SmooAI/smooth-operator-core/tree/main/typescript/core",
  "sideEffects": false,
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./extension": {
      "types": "./dist/extension/index.d.ts",
      "import": "./dist/extension/index.js"
    },
    "./executor": {
      "types": "./dist/executor.d.ts",
      "import": "./dist/executor.js"
    }
  },
  "files": [
    "dist"
  ],
  "dependencies": {
    "openai": "^4.77.0",
    "smol-toml": "^1.7.0"
  },
  "devDependencies": {
    "@types/node": "^25.9.2",
    "typescript": "^5.7.3",
    "vitest": "^2.1.8"
  },
  "scripts": {
    "build": "tsc -p tsconfig.build.json",
    "typecheck": "tsc -p tsconfig.json --noEmit",
    "test": "vitest run"
  }
}