{
  "name": "@vytches/ddd-testing",
  "version": "0.30.0",
  "description": "Test utilities and DDD-specific testing helpers",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    }
  },
  "sideEffects": false,
  "files": [
    "dist",
    "README.md",
    "LLMGUIDE.md"
  ],
  "keywords": [
    "ddd",
    "domain-driven-design",
    "typescript",
    "testing"
  ],
  "author": "VytchesDDD",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/vytches/ddd.git",
    "directory": "packages/testing"
  },
  "dependencies": {
    "@faker-js/faker": "^8.0.0",
    "@vytches/ddd-contracts": "0.30.0",
    "@vytches/ddd-domain-primitives": "0.30.0",
    "@vytches/ddd-messaging": "0.30.0",
    "@vytches/ddd-utils": "0.30.0"
  },
  "devDependencies": {
    "typescript": "^5.0.0",
    "vite": "^7.3.2",
    "vite-plugin-dts": "^4.0.0",
    "vitest": "^4.0.0"
  },
  "nx": {
    "tags": [
      "scope:testing",
      "type:lib",
      "layer:tooling"
    ]
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org",
    "access": "public"
  },
  "scripts": {
    "build": "vite build",
    "dev": "vite build --watch",
    "clean": "rm -rf dist .tsbuildinfo",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "lint": "eslint src --ext .ts",
    "type-check": "tsc --noEmit"
  }
}