{
  "name": "@haskou/value-objects",
  "version": "7.1.0",
  "description": "TypeScript value objects for validated, immutable primitive values and small domain-safe data structures.",
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.mts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.mts",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist"
  ],
  "sideEffects": false,
  "license": "MIT",
  "keywords": [
    "value-object",
    "value-objects",
    "typescript",
    "validation",
    "validated-types",
    "immutable",
    "immutability",
    "type-safety",
    "domain-primitives",
    "primitive-obsession",
    "ddd",
    "domain-driven-design",
    "email-validation",
    "uuid",
    "hash"
  ],
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/haskou/value-objects.git"
  },
  "bugs": {
    "url": "https://github.com/haskou/value-objects/issues"
  },
  "homepage": "https://haskou.github.io/value-objects/",
  "scripts": {
    "lint": "eslint ./src --ext .ts",
    "lint:fix": "eslint ./src --ext .ts --fix",
    "test": "yarn lint && yarn test:unit",
    "test:unit": "jest --runInBand",
    "test:coverage": "NODE_ENV=test jest --collect-coverage",
    "build": "tsc -p tsconfig.build.json --noEmit && tsdown && node scripts/verify-distribution.cjs",
    "check:distribution": "node scripts/verify-distribution.cjs",
    "docs:dev": "vitepress dev docs",
    "docs:build": "vitepress build docs",
    "docs:preview": "vitepress build docs && vitepress preview docs"
  },
  "dependencies": {
    "buffer": "^6.0.3",
    "uuid": "^11.1.1"
  },
  "devDependencies": {
    "@arethetypeswrong/core": "^0.18.5",
    "@haskou/eslint-config": "^0.2.2",
    "@types/jest": "^30.0.0",
    "@types/node": "^26.6.1",
    "eslint": "^10.10.0",
    "jest": "^30.5.1",
    "jest-extended": "^7.0.0",
    "prettier": "^3.9.7",
    "publint": "^0.3.24",
    "ts-jest": "^29.4.12",
    "tsdown": "^0.23.0",
    "typescript": "^6.0.3",
    "vitepress": "^1.6.4",
    "vue": "^3.5.42"
  }
}
