{
  "name": "@mesh-sync/core-common-lib",
  "version": "0.3.1",
  "description": "Shared domain models and types for MeshSync platform",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "require": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./*": {
      "require": "./dist/*",
      "types": "./dist/*"
    }
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsc && tsc-alias",
    "type-check": "tsc --noEmit",
    "test": "node --max-old-space-size=2048 ./node_modules/jest/bin/jest.js --runInBand --logHeapUsage"
  },
  "keywords": [
    "mesh-sync",
    "domain-driven-design",
    "ddd",
    "shared-kernel",
    "value-objects",
    "aggregates"
  ],
  "author": "MeshSync Team",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/Mesh-Sync/core-common-lib.git",
    "directory": "."
  },
  "publishConfig": {
    "access": "public"
  },
  "peerDependencies": {
    "typeorm": "^0.3.0"
  },
  "devDependencies": {
    "typescript": "^5.9.0",
    "@types/node": "^20.0.0",
    "jest": "^29.0.0",
    "ts-jest": "^29.0.0",
    "@types/jest": "^29.0.0",
    "tsc-alias": "^1.8.0"
  },
  "jest": {
    "preset": "ts-jest",
    "testEnvironment": "node",
    "moduleNameMapper": {
      "^@domain/(.*)$": "<rootDir>/src/domain/$1",
      "^@generated/(.*)$": "<rootDir>/src/generated/$1"
    }
  }
}
