{
  "name": "@codeforbreakfast/eventsourcing-store",
  "version": "0.9.3",
  "description": "Pure event streaming and storage with Effect integration - Core event store interfaces and implementations for building resilient, functional event-driven systems",
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist",
    "src"
  ],
  "scripts": {
    "build": "bun build ./src/index.ts --outdir ./dist --target node --format esm --external effect --external @effect/* --external @codeforbreakfast/* && bun x tsc",
    "test": "bun test",
    "test:watch": "bun test --watch",
    "lint": "eslint . --ext .ts,.tsx",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf dist",
    "publish:package": "npm publish --access public",
    "validate:pack": "bun pm pack --dry-run",
    "check:publishable": "npm view $npm_package_name@$npm_package_version version >/dev/null 2>&1 && exit 1 || exit 0",
    "validate:docs": "bun ../../scripts/validate-markdown-examples.ts"
  },
  "keywords": [
    "event-sourcing",
    "event-store",
    "cqrs",
    "effect",
    "effect-ts",
    "functional-programming",
    "fp",
    "typescript",
    "type-safe",
    "streaming",
    "domain-driven-design",
    "ddd",
    "event-streaming",
    "composable",
    "resilient",
    "error-handling"
  ],
  "author": "Code for Breakfast",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/CodeForBreakfast/eventsourcing",
    "directory": "packages/eventsourcing-store"
  },
  "bugs": {
    "url": "https://github.com/codeforbreakfast/eventsourcing/issues"
  },
  "homepage": "https://github.com/codeforbreakfast/eventsourcing#readme",
  "peerDependencies": {
    "effect": "^3.17.0",
    "@effect/platform": "^0.90.0 || ^0.91.0 || ^0.92.0 || ^0.93.0"
  },
  "dependencies": {
    "type-fest": "5.2.0"
  },
  "devDependencies": {
    "@types/node": "24.10.0",
    "@codeforbreakfast/bun-test-effect": "workspace:*",
    "effect": "3.19.9",
    "typescript": "5.9.3",
    "eslint": "9.39.1"
  },
  "publishConfig": {
    "access": "public"
  },
  "sideEffects": false,
  "engines": {
    "node": ">=18.0.0"
  }
}
