49 lines
1.6 KiB
JSON
49 lines
1.6 KiB
JSON
{
|
|
"name": "@customer-portal/domain",
|
|
"version": "1.0.0",
|
|
"type": "commonjs",
|
|
"description": "Unified domain layer with contracts, schemas, and provider mappers",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": "./dist/index.js",
|
|
"./auth": "./dist/auth/index.js",
|
|
"./auth/*": "./dist/auth/*.js",
|
|
"./billing": "./dist/billing/index.js",
|
|
"./billing/*": "./dist/billing/*.js",
|
|
"./catalog": "./dist/catalog/index.js",
|
|
"./catalog/*": "./dist/catalog/*.js",
|
|
"./common": "./dist/common/index.js",
|
|
"./common/*": "./dist/common/*.js",
|
|
"./customer": "./dist/customer/index.js",
|
|
"./customer/*": "./dist/customer/*.js",
|
|
"./dashboard": "./dist/dashboard/index.js",
|
|
"./dashboard/*": "./dist/dashboard/*.js",
|
|
"./mappings": "./dist/mappings/index.js",
|
|
"./mappings/*": "./dist/mappings/*.js",
|
|
"./orders": "./dist/orders/index.js",
|
|
"./orders/*": "./dist/orders/*.js",
|
|
"./payments": "./dist/payments/index.js",
|
|
"./payments/*": "./dist/payments/*.js",
|
|
"./sim": "./dist/sim/index.js",
|
|
"./sim/*": "./dist/sim/*.js",
|
|
"./sim/providers/freebit": "./dist/sim/providers/freebit/index.js",
|
|
"./subscriptions": "./dist/subscriptions/index.js",
|
|
"./subscriptions/*": "./dist/subscriptions/*.js",
|
|
"./toolkit": "./dist/toolkit/index.js",
|
|
"./toolkit/*": "./dist/toolkit/*.js"
|
|
},
|
|
"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"
|
|
}
|
|
}
|