39 lines
1.1 KiB
JSON
Raw Normal View History

{
"name": "@customer-portal/domain",
"version": "1.0.0",
"description": "Unified domain layer with contracts, schemas, and provider mappers",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./billing": "./dist/billing/index.js",
"./billing/*": "./dist/billing/*",
"./subscriptions": "./dist/subscriptions/index.js",
"./subscriptions/*": "./dist/subscriptions/*",
"./payments": "./dist/payments/index.js",
"./payments/*": "./dist/payments/*",
"./sim": "./dist/sim/index.js",
"./sim/*": "./dist/sim/*",
"./orders": "./dist/orders/index.js",
"./orders/*": "./dist/orders/*",
"./catalog": "./dist/catalog/index.js",
"./catalog/*": "./dist/catalog/*",
"./common": "./dist/common/index.js",
"./common/*": "./dist/common/*",
"./toolkit": "./dist/toolkit/index.js",
"./toolkit/*": "./dist/toolkit/*"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.3.3"
}
}