38 lines
918 B
JSON
38 lines
918 B
JSON
{
|
|
"name": "@customer-portal/integrations-freebit",
|
|
"version": "0.1.0",
|
|
"description": "Freebit 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 Freebit integration package\"",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.9.2"
|
|
},
|
|
"dependencies": {
|
|
"@customer-portal/domain": "workspace:*"
|
|
}
|
|
}
|