{
  "name": "kl-adapter-langchain",
  "version": "0.1.3",
  "description": "LangChain / LangGraph adapter for kanban-lite – exposes all kanban-lite features as LangChain StructuredTools with streaming comment support",
  "license": "MIT",
  "type": "commonjs",
  "main": "dist/index.cjs",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "require": "./dist/index.cjs",
      "default": "./dist/index.cjs"
    }
  },
  "files": [
    "dist",
    "README.md"
  ],
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "esbuild src/index.ts --bundle --outfile=dist/index.cjs --format=cjs --platform=node --external:@langchain/core --external:@langchain/langgraph --external:kanban-lite --external:zod && tsc -p tsconfig.json --declaration --emitDeclarationOnly --outDir dist",
    "clean": "rm -rf dist",
    "typecheck": "tsc --noEmit",
    "test": "vitest run",
    "test:watch": "vitest",
    "release": "npm run clean && npm run build && npm version patch && npm publish",
    "release:minor": "npm run clean && npm run build && npm version minor && npm publish",
    "release:major": "npm run clean && npm run build && npm version major && npm publish"
  },
  "dependencies": {
    "zod": "^3.23.0"
  },
  "devDependencies": {
    "@langchain/core": ">=0.3.80",
    "@types/node": "^20.10.0",
    "esbuild": "^0.19.0",
    "typescript": "^5.3.0",
    "vitest": "^4.0.18"
  },
  "peerDependencies": {
    "@langchain/core": ">=0.3.80",
    "@langchain/langgraph": ">=0.2.0",
    "kanban-lite": ">=1.0.0"
  },
  "peerDependenciesMeta": {
    "kanban-lite": {
      "optional": true
    },
    "@langchain/langgraph": {
      "optional": true
    }
  },
  "keywords": [
    "kanban-lite",
    "kanban",
    "langchain",
    "langgraph",
    "ai",
    "tools",
    "agent",
    "structured-tool",
    "streaming"
  ]
}
