{
  "name": "@invoiceddd/domain",
  "version": "0.2.0",
  "description": "Domain layer for the InvoiceDDD system - business logic, entities, and domain services",
  "keywords": [
    "ddd",
    "domain-driven-design",
    "invoice",
    "domain",
    "typescript"
  ],
  "homepage": "https://github.com/benjamin-kraatz/invoiceddd#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/benjamin-kraatz/invoiceddd.git"
  },
  "bugs": {
    "url": "https://github.com/benjamin-kraatz/invoiceddd/issues"
  },
  "author": "Benjamin Kraatz <your-email@example.com>",
  "contributors": [
    "Your Name <your-email@example.com>"
  ],
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/benjamin-kraatz"
  },
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist"
  ],
  "sideEffects": false,
  "engines": {
    "node": ">=18.0.0"
  },
  "dependencies": {
    "@effect/sql-libsql": "^0.34.0",
    "@libsql/client": "0.15.10",
    "effect": "~3.17.5",
    "libsql": "0.5.17",
    "uuid": "^11.1.0"
  },
  "devDependencies": {
    "@effect/language-service": "~0.33.1",
    "@types/uuid": "^10.0.0",
    "eslint": "^9.15.0",
    "tsup": "^8.5.0",
    "typescript": "~5.8.2",
    "vitest": "^3.2.4"
  },
  "peerDependencies": {
    "effect": "^3.17.3"
  },
  "publishConfig": {
    "access": "public",
    "tag": "next"
  },
  "readme": "README.md",
  "changelog": "CHANGELOG.md",
  "typesVersions": {
    "*": {
      "*": [
        "dist/*"
      ]
    }
  },
  "private": false,
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "test": "vitest",
    "test:run": "vitest run",
    "type-check": "tsc --noEmit",
    "lint": "eslint src",
    "lint:fix": "eslint src --fix",
    "clean": "rm -rf dist"
  }
}