54 lines
1.3 KiB
JSON
54 lines
1.3 KiB
JSON
{
|
|
"name": "@customer-portal/schemas",
|
|
"version": "0.1.0",
|
|
"description": "Runtime validation schemas for customer portal domain and integrations.",
|
|
"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"
|
|
},
|
|
"./billing": {
|
|
"types": "./dist/billing/index.d.ts",
|
|
"default": "./dist/billing/index.js"
|
|
},
|
|
"./subscriptions": {
|
|
"types": "./dist/subscriptions/index.d.ts",
|
|
"default": "./dist/subscriptions/index.js"
|
|
},
|
|
"./payments": {
|
|
"types": "./dist/payments/index.d.ts",
|
|
"default": "./dist/payments/index.js"
|
|
},
|
|
"./sim": {
|
|
"types": "./dist/sim/index.d.ts",
|
|
"default": "./dist/sim/index.js"
|
|
},
|
|
"./integrations": {
|
|
"types": "./dist/integrations/index.d.ts",
|
|
"default": "./dist/integrations/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc -b",
|
|
"dev": "tsc -b -w --preserveWatchOutput",
|
|
"clean": "rm -rf dist",
|
|
"type-check": "tsc --project tsconfig.json --noEmit",
|
|
"test": "echo \"No tests for schemas package\"",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.9.2"
|
|
},
|
|
"dependencies": {
|
|
"zod": "^4.1.9"
|
|
}
|
|
}
|