{
  "name": "@event-driven-io/emmett",
  "type": "module",
  "version": "0.42.3",
  "description": "Emmett - Event Sourcing development made simple",
  "scripts": {
    "build": "tsup",
    "build:ts": "tsc",
    "build:ts:watch": "tsc -b --watch",
    "test": "run-s test:unit test:int test:e2e",
    "test:unit": "glob-bin -c \"node --import tsx --test\" **/*.unit.spec.ts",
    "test:int": "glob-bin -c \"node --import tsx --test\" **/*.int.spec.ts",
    "test:e2e": "glob-bin -c \"node --import tsx --test\" **/*.e2e.spec.ts",
    "test:watch": "node --import tsx --test --watch",
    "test:unit:watch": "glob-bin -c \"node --import tsx --test --watch\" **/*.unit.spec.ts",
    "test:int:watch": "glob-bin -c \"node --import tsx --test --watch\" **/*.int.spec.ts",
    "test:e2e:watch": "glob-bin -c \"node --import tsx --test --watch\" **/*.e2e.spec.ts"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/event-driven-io/emmett.git"
  },
  "keywords": [
    "Event Sourcing"
  ],
  "author": "Oskar Dudycz",
  "bugs": {
    "url": "https://github.com/event-driven-io/emmett/issues"
  },
  "homepage": "https://event-driven-io.github.io/emmett/",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    },
    "./cli": {
      "import": {
        "types": "./dist/cli.d.ts",
        "default": "./dist/cli.js"
      },
      "require": {
        "types": "./dist/cli.d.cts",
        "default": "./dist/cli.cjs"
      }
    }
  },
  "typesVersions": {
    "*": {
      ".": [
        "./dist/index.d.ts"
      ],
      "cli": [
        "./dist/cli.d.ts"
      ]
    }
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist"
  ],
  "bin": {
    "emmett": "dist/cli.js"
  },
  "peerDependencies": {
    "@types/async-retry": "^1.4.9",
    "async-retry": "^1.3.3",
    "commander": "^12.1.0",
    "uuid": "^10.0.0"
  }
}
