{ "name": "@customer-portal/integrations-whmcs", "version": "0.1.0", "description": "WHMCS integration helpers (mappers, utilities).", "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" }, "./mappers": { "types": "./dist/mappers/index.d.ts", "default": "./dist/mappers/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 WHMCS integration package\"", "lint": "eslint .", "lint:fix": "eslint . --fix" }, "devDependencies": { "typescript": "^5.9.2" }, "dependencies": { "@customer-portal/contracts": "workspace:*", "@customer-portal/schemas": "workspace:*" } }