{
  "name": "darwin-agents",
  "version": "0.16.0",
  "description": "AI agents that improve themselves. Self-evolving prompts via A/B testing, multi-model critics, safety gates, and pattern detection.",
  "type": "module",
  "bin": {
    "darwin": "./dist/src/cli/index.js"
  },
  "main": "./dist/src/index.js",
  "types": "./dist/src/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/src/index.js",
      "types": "./dist/src/index.d.ts"
    },
    "./providers": {
      "import": "./dist/src/providers/index.js",
      "types": "./dist/src/providers/index.d.ts"
    },
    "./memory": {
      "import": "./dist/src/memory/index.js",
      "types": "./dist/src/memory/index.d.ts"
    },
    "./agents": {
      "import": "./dist/src/agents/index.js",
      "types": "./dist/src/agents/index.d.ts"
    },
    "./examples/*": {
      "import": "./dist/examples/*.js",
      "types": "./dist/examples/*.d.ts"
    },
    "./examples/*.js": {
      "import": "./dist/examples/*.js",
      "types": "./dist/examples/*.d.ts"
    },
    "./memory/bridge": {
      "import": "./dist/examples/mcp-memory-bridge.js",
      "types": "./dist/examples/mcp-memory-bridge.d.ts"
    },
    "./memory/closed-loop": {
      "import": "./dist/examples/memory-darwin-integration.js",
      "types": "./dist/examples/memory-darwin-integration.d.ts"
    }
  },
  "files": [
    "dist",
    "README.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "darwin": "tsx src/cli/index.ts",
    "benchmark": "tsx benchmark/evolution-benchmark.ts",
    "test": "tsx --test tests/*.test.ts",
    "test:coverage": "node --import tsx --test --experimental-test-coverage --test-coverage-include='src/**' tests/*.test.ts",
    "test:coverage:ci": "node --import tsx --test --experimental-test-coverage --test-coverage-include='src/**' --test-coverage-lines=89 --test-coverage-branches=85 --test-coverage-functions=90 tests/*.test.ts",
    "test:coverage:lcov": "node --import tsx --test --experimental-test-coverage --test-coverage-include='src/**' --test-reporter=lcov --test-reporter-destination=coverage/lcov.info --test-reporter=dot --test-reporter-destination=stdout tests/*.test.ts",
    "typecheck:tests": "tsc -p tsconfig.test.json",
    "prepublishOnly": "npm run build && npm test && npm run check:adapter-compat",
    "check:adapter-compat": "node scripts/check-adapter-compat.mjs"
  },
  "peerDependencies": {
    "better-sqlite3": "^11.0.0 || ^12.0.0",
    "pg": "^8.0.0"
  },
  "peerDependenciesMeta": {
    "better-sqlite3": {
      "optional": true
    },
    "pg": {
      "optional": true
    }
  },
  "devDependencies": {
    "@types/better-sqlite3": "^7.6.13",
    "@types/node": "^25.6.0",
    "@types/pg": "^8.11.0",
    "@types/semver": "^7.7.1",
    "better-sqlite3": "^12.10.0",
    "semver": "^7.8.5",
    "tsx": "^4.19.0",
    "typescript": "^6.0.3"
  },
  "keywords": [
    "ai",
    "agents",
    "self-evolving",
    "darwin",
    "claude",
    "openai",
    "gpt",
    "mcp",
    "prompt-optimization",
    "ab-testing",
    "multi-model",
    "llm",
    "evolution"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/studiomeyer-io/darwin-agents"
  },
  "homepage": "https://github.com/studiomeyer-io/darwin-agents",
  "bugs": {
    "url": "https://github.com/studiomeyer-io/darwin-agents/issues"
  },
  "author": "StudioMeyer <hello@studiomeyer.io>",
  "contributors": [
    "Claude Fable 5 (Anthropic) <noreply@anthropic.com> (https://www.anthropic.com/claude)"
  ],
  "license": "MIT",
  "engines": {
    "node": ">=20"
  }
}
