{
  "name": "@juandardilag/value-objects",
  "version": "3.0.1",
  "description": "DDD Value Objects Node/Typescript implementations (classes, types, operations, etc.)",
  "scripts": {
    "test": "vitest run",
    "build": "tsc",
    "create-index": "cti create -n ./src",
    "prepublish": "npm run create-index && npm run test && npx rimraf dist/ && npm run build",
    "pub": "npm i && git add -A && git commit --amend --no-edit && npm publish --access public && git push",
    "pub-alpha": "npm i && git add -A && git commit --amend --no-edit && npm publish --access public --tag alpha && git push"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "keywords": [
    "ddd",
    "domain-driven-design",
    "value-objects",
    "value-object",
    "typescript",
    "money",
    "price"
  ],
  "author": "Juan Diego Ardila",
  "license": "ISC",
  "engines": {
    "node": ">=20"
  },
  "repository": {
    "url": "git+https://github.com/JuanDArdilaG/value-objects.git",
    "type": "git"
  },
  "dependencies": {
    "bcrypt": "^6.0.0",
    "nanoid": "^3.3.8",
    "tslib": "^2.8.1",
    "uuid": "^14.0.0"
  },
  "devDependencies": {
    "@types/bcrypt": "^6.0.0",
    "@types/node": "^25.6.0",
    "create-ts-index": "^1.14.0",
    "rimraf": "^6.1.3",
    "typescript": "^6.0.3",
    "vitest": "^4.1.5"
  },
  "files": [
    "dist/**/*"
  ]
}
