{
  "name": "smithers-orchestrator",
  "version": "0.15.1",
  "description": "AI workflow orchestration with JSX",
  "author": "William Cory",
  "license": "MIT",
  "module": "src/index.ts",
  "type": "module",
  "bin": {
    "smithers": "src/cli/index.ts"
  },
  "exports": {
    ".": "./src/index.ts",
    "./gateway": "./src/gateway/index.ts",
    "./jsx-runtime": "./src/jsx-runtime.ts",
    "./jsx-dev-runtime": "./src/jsx-runtime.ts",
    "./tools": "./src/tools/index.ts",
    "./server": "./src/server/index.ts",
    "./observability": "./src/observability/index.ts",
    "./pi-plugin": "./src/pi-plugin/index.ts",
    "./pi-extension": "./src/pi-plugin/extension.ts",
    "./mdx-plugin": "./src/mdx-plugin.ts",
    "./dom/renderer": "./src/dom/renderer.ts",
    "./serve": "./src/server/serve.ts",
    "./scorers": "./src/scorers/index.ts",
    "./voice": "./src/voice/index.ts",
    "./rag": "./src/rag/index.ts",
    "./memory": "./src/memory/index.ts",
    "./openapi": "./src/openapi/index.ts"
  },
  "files": [
    "src/",
    "docs/",
    "observability/",
    "README.md",
    "LICENSE"
  ],
  "engines": {
    "bun": ">=1.3.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/evmts/smithers.git"
  },
  "homepage": "https://github.com/evmts/smithers#readme",
  "bugs": {
    "url": "https://github.com/evmts/smithers/issues"
  },
  "keywords": [
    "ai",
    "agent",
    "react",
    "jsx",
    "llm",
    "claude",
    "orchestration",
    "workflow",
    "bun"
  ],
  "scripts": {
    "typecheck": "tsc --noEmit",
    "typecheck:examples": "tsc -p tsconfig.examples.json --noEmit",
    "lint": "oxlint --react-plugin --node-plugin --import-plugin --ignore-path .gitignore src tests apps/cli/src",
    "lint:fix": "oxlint --react-plugin --node-plugin --import-plugin --ignore-path .gitignore --fix src tests apps/cli/src",
    "cli": "bun run src/cli/index.ts",
    "test": "bash ./scripts/run-all-tests.sh",
    "e2e": "playwright test",
    "docs": "cd docs && bunx mintlify dev"
  },
  "dependencies": {
    "@ai-sdk/anthropic": "^3.0.36",
    "@ai-sdk/openai": "^3.0.41",
    "@effect/cluster": "^0.58.0",
    "@effect/opentelemetry": "^0.61.0",
    "@effect/platform": "^0.96.0",
    "@effect/platform-bun": "^0.89.0",
    "@effect/rpc": "^0.75.0",
    "@effect/sql": "^0.51.0",
    "@effect/sql-sqlite-bun": "^0.52.0",
    "@effect/workflow": "^0.18.0",
    "@mariozechner/pi-coding-agent": "0.63.1",
    "@mariozechner/pi-tui": "0.63.1",
    "@mdx-js/esbuild": "^3.1.1",
    "@modelcontextprotocol/sdk": "^1.27.0",
    "@opentelemetry/api": "^1.9.0",
    "@opentelemetry/exporter-metrics-otlp-http": "^0.213.0",
    "@opentelemetry/exporter-trace-otlp-http": "^0.213.0",
    "@opentelemetry/resources": "^2.6.0",
    "@opentelemetry/sdk-logs": "^0.213.0",
    "@opentelemetry/sdk-metrics": "^2.6.0",
    "@opentelemetry/sdk-trace-base": "^2.6.0",
    "@opentelemetry/sdk-trace-node": "^2.6.0",
    "@opentelemetry/semantic-conventions": "^1.40.0",
    "@opentui/core": "^0.1.92",
    "@opentui/react": "^0.1.92",
    "@sinclair/typebox": "0.34.49",
    "@types/react-dom": "^19.2.3",
    "@types/react-reconciler": "^0.28.9",
    "ai": "^6.0.69",
    "bippy": "^0.5.32",
    "cron-parser": "^5.5.0",
    "diff": "^5.2.0",
    "drizzle-orm": "^0.45.1",
    "drizzle-zod": "^0.8.3",
    "effect": "^3.21.0",
    "hono": "^4.12.8",
    "incur": "^0.3.3",
    "react": "^19.2.4",
    "react-dom": "^19.2.4",
    "react-reconciler": "^0.31.0",
    "picocolors": "^1.1.1",
    "ws": "^8.18.0",
    "zod": "^4.3.6"
  },
  "peerDependencies": {
    "typescript": "~5.9.3"
  },
  "devDependencies": {
    "@playwright/test": "^1.52.0",
    "@tanstack/react-query": "^5.96.2",
    "@types/bun": "latest",
    "@types/diff": "^5.2.0",
    "@types/react": "^19.2.10",
    "@types/ws": "^8.5.12",
    "oxlint": "^1.59.0",
    "typescript": "~5.9.3"
  }
}
