{
  "author": "l0gicgate",
  "bugs": {
    "url": "https://github.com/lgse/cqrs/issues"
  },
  "description": "CQRS components for TypeScript",
  "homepage": "https://github.com/lgse/cqrs#readme",
  "license": "MIT",
  "name": "@lgse/cqrs",
  "type": "module",
  "version": "1.0.0",
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.mjs",
  "types": "./dist/index.d.ts",
  "exports": {
    "import": "./dist/esm/index.mjs",
    "require": "./dist/cjs/index.js",
    "types": "./dist/types/index.d.ts"
  },
  "files": [
    "dist"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/lgse/cqrs.git"
  },
  "scripts": {
    "build": "npm run build:cjs && npm run build:esm",
    "build:cjs": "tsc -p tsconfig.cjs.json",
    "build:esm": "tsc -p tsconfig.esm.json && mv dist/esm/index.js dist/esm/index.mjs",
    "lint": "eslint src",
    "lint:fix": "eslint --fix src",
    "prebuild": "rimraf dist",
    "prepublishOnly": "bun run build",
    "test": "jest",
    "test:coverage": "jest --coverage",
    "type-check": "tsc --noEmit"
  },
  "dependencies": {
    "reflect-metadata": "^0.2.2"
  },
  "optionalDependencies": {
    "class-transformer": "^0.5.1",
    "class-validator": "^0.14.2",
    "typedi": "^0.10.0"
  },
  "devDependencies": {
    "@eslint/eslintrc": "^3",
    "@eslint/js": "^9",
    "@types/bun": "latest",
    "@types/jest": "^29.5.14",
    "@types/node": "^20",
    "class-transformer": "^0.5.1",
    "class-validator": "^0.14.2",
    "esbuild": "^0.25.5",
    "eslint": "^9",
    "eslint-config-next": "15.2.3",
    "eslint-plugin-perfectionist": "^4.6.0",
    "jest": "^29.7.0",
    "prettier": "^3.5.3",
    "rimraf": "^6.0.1",
    "ts-jest": "^29.1.0",
    "type-fest": "^4.41.0",
    "typedi": "^0.10.0",
    "typescript": "^5.8.3",
    "typescript-eslint": "^8.33.1"
  },
  "keywords": [
    "CQRS",
    "command",
    "bus",
    "event",
    "bus",
    "query",
    "bus"
  ]
}
