{
  "name": "@rotorsoft/act",
  "type": "module",
  "version": "1.31.23",
  "description": "act core library",
  "keywords": [
    "typescript",
    "event-sourcing",
    "cqrs",
    "ddd",
    "framework",
    "actor",
    "agent"
  ],
  "author": "rotorsoft",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Rotorsoft/act-root.git",
    "directory": "libs/act"
  },
  "homepage": "https://github.com/Rotorsoft/act-root/tree/master/libs/act#readme",
  "bugs": {
    "url": "https://github.com/Rotorsoft/act-root/issues"
  },
  "files": [
    "dist"
  ],
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/@types/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/@types/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./types": {
      "types": "./dist/@types/types/index.d.ts",
      "import": "./dist/types/index.js",
      "require": "./dist/types/index.cjs"
    },
    "./test": {
      "types": "./dist/@types/test/index.d.ts",
      "import": "./dist/test/index.js",
      "require": "./dist/test/index.cjs"
    }
  },
  "engines": {
    "node": ">=22.23.2"
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@rotorsoft/act-patch": "^1.2.9"
  },
  "peerDependencies": {
    "zod": "^4.5.4",
    "vitest": "^5.0.1"
  },
  "devDependencies": {
    "@stryker-mutator/core": "^10.0.0",
    "@stryker-mutator/vitest-runner": "^10.0.0"
  },
  "peerDependenciesMeta": {
    "vitest": {
      "optional": true
    }
  },
  "scripts": {
    "clean": "rm -rf dist",
    "types": "tsc --build tsconfig.build.json --emitDeclarationOnly",
    "build": "pnpm clean && tsup && pnpm types",
    "mutation": "stryker run",
    "bench:run": "NODE_ENV=test LOG_LEVEL=fatal tsx scripts/perf-bench.ts > perf-result.json",
    "bench:check": "tsx scripts/perf-check.ts",
    "bench:update": "NODE_ENV=test LOG_LEVEL=fatal tsx scripts/perf-bench.ts > perf-baseline.json",
    "bench:realistic": "NODE_ENV=test LOG_LEVEL=fatal tsx scripts/realistic-bench.ts > realistic-result.json"
  }
}