{
  "name": "archstone",
  "version": "1.5.4",
  "author": {
    "name": "João Henrique Benatti Coimbra",
    "url": "https://github.com/joao-coimbra"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/joao-coimbra/archstone.git"
  },
  "module": "./dist/index.js",
  "devDependencies": {
    "@biomejs/biome": "2.4.5",
    "@types/bun": "latest",
    "bunup": "^0.16.31",
    "husky": "^9.1.7",
    "ultracite": "7.3.0"
  },
  "peerDependencies": {
    "typescript": "^5"
  },
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      }
    },
    "./core": {
      "import": {
        "types": "./dist/core/index.d.ts",
        "default": "./dist/core/index.js"
      }
    },
    "./domain": {
      "import": {
        "types": "./dist/domain/index.d.ts",
        "default": "./dist/domain/index.js"
      }
    },
    "./domain/application": {
      "import": {
        "types": "./dist/domain/application/index.d.ts",
        "default": "./dist/domain/application/index.js"
      }
    },
    "./domain/enterprise": {
      "import": {
        "types": "./dist/domain/enterprise/index.d.ts",
        "default": "./dist/domain/enterprise/index.js"
      }
    },
    "./package.json": "./package.json"
  },
  "bugs": {
    "url": "https://github.com/joao-coimbra/archstone/issues"
  },
  "description": "TypeScript architecture foundation for backend services based on Domain-Driven Design and Clean Architecture",
  "files": [
    "dist",
    "README.md"
  ],
  "homepage": "https://github.com/joao-coimbra/archstone#readme",
  "keywords": [
    "ddd",
    "domain-driven-design",
    "clean-architecture",
    "typescript",
    "entity",
    "aggregate",
    "value-object",
    "either",
    "domain-events",
    "repository",
    "use-case",
    "bun"
  ],
  "license": "MIT",
  "private": false,
  "scripts": {
    "build": "bunup",
    "dev": "bunup --watch",
    "test": "bun test",
    "check": "ultracite check",
    "fix": "ultracite fix",
    "release": "bun publish --access public",
    "prepublishOnly": "bun run build",
    "prepare": "bunx husky"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org/",
    "access": "public"
  },
  "type": "module",
  "types": "./dist/index.d.ts",
  "dependencies": {
    "failcraft": "^1.4.3"
  }
}
