{ "name": "@customer-portal/domain", "version": "1.0.0", "description": "Pure domain models and types for customer portal (framework-agnostic)", "main": "dist/index.js", "types": "dist/index.d.ts", "private": true, "sideEffects": false, "files": [ "dist" ], "exports": { ".": { "types": "./dist/index.d.ts", "default": "./dist/index.js" } }, "scripts": { "build": "tsc -b", "dev": "tsc -b -w --preserveWatchOutput", "clean": "rm -rf dist", "type-check": "NODE_OPTIONS=\"--max-old-space-size=2048 --max-semi-space-size=128\" tsc --project tsconfig.json --noEmit", "test": "echo \"No tests specified for shared package\"", "lint": "eslint .", "lint:fix": "eslint . --fix" }, "devDependencies": { "typescript": "^5.9.2" }, "dependencies": { "zod": "^4.1.9" } }