{
  "name": "darwin-langgraph",
  "version": "0.5.4",
  "description": "LangGraph.js adapter for darwin-agents \u2014 wrap self-evolving Darwin agents as StateGraph nodes with zero hard deps. V0.5.4 opens the darwin-agents peer range to any 0.x (ends the per-minor install breakage; verified against 0.11). V0.5.2 wires the runAgent `provider` passthrough and the v8 coverage tooling; V0.5 verifies LangGraph 1.4.x compatibility (concurrent-invoke isolation). V0.4 added tool-event capture, OpenTelemetry GenAI LangGraph attributes, W3C trace context, token-budget enforcement, and an accumulating trajectory annotation.",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "files": [
    "dist",
    "README.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsc",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "typecheck": "tsc --noEmit",
    "examples:check": "tsc --noEmit --project tsconfig.examples.json",
    "verify:version-sync": "node -e \"const p=JSON.parse(require('fs').readFileSync('./package.json','utf8'));const s=require('fs').readFileSync('./src/index.ts','utf8');const m=s.match(/VERSION = \\\"([^\\\"]+)\\\"/);if(!m){console.error('VERSION not found in src/index.ts');process.exit(1)}if(m[1]!==p.version){console.error('VERSION mismatch: package.json='+p.version+', src/index.ts='+m[1]);process.exit(1)}console.log('VERSION sync OK: '+m[1])\"",
    "prepublishOnly": "npm run verify:version-sync && npm run typecheck && npm run test && npm run build"
  },
  "keywords": [
    "langgraph",
    "langchain",
    "darwin-agents",
    "ai-agents",
    "agent-orchestration",
    "self-evolving-agents",
    "stategraph",
    "multi-agent",
    "ab-testing",
    "trajectory-capture",
    "gepa"
  ],
  "author": "StudioMeyer <hello@studiomeyer.io>",
  "contributors": [
    "Claude Fable 5 (Anthropic) <noreply@anthropic.com> (https://www.anthropic.com/claude)"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/studiomeyer-io/darwin-langgraph.git"
  },
  "bugs": {
    "url": "https://github.com/studiomeyer-io/darwin-langgraph/issues"
  },
  "homepage": "https://github.com/studiomeyer-io/darwin-langgraph#readme",
  "peerDependencies": {
    "@langchain/langgraph": "^1.3.0 || ^1.4.0",
    "darwin-agents": ">=0.5.0-alpha.1 <1.0.0"
  },
  "peerDependenciesMeta": {
    "@langchain/langgraph": {
      "optional": false
    },
    "darwin-agents": {
      "optional": false
    }
  },
  "devDependencies": {
    "@langchain/langgraph": "^1.4.7",
    "@types/node": "^22.20.1",
    "@vitest/coverage-v8": "^2.1.9",
    "darwin-agents": "^0.11.0",
    "tsx": "^4.23.1",
    "typescript": "^5.6.0",
    "vitest": "^2.1.0"
  },
  "engines": {
    "node": ">=20"
  },
  "publishConfig": {
    "access": "public"
  }
}
