Initial implementation: Brazil SWIFT Operations Platform
- Complete monorepo structure with pnpm workspaces and Turborepo
- All packages implemented: types, utils, rules-engine, iso20022, treasury, risk-models, audit
- React web application with TypeScript and Tailwind CSS
- Full Brazil regulatory compliance (BCB requirements)
- ISO 20022 message support (pacs.008, pacs.009, pain.001)
- Treasury and subledger management
- Risk, capital, and liquidity stress allocation
- Audit logging and BCB reporting
- E&O +10% uplift implementation
2026-01-23 14:51:10 -08:00
|
|
|
{
|
|
|
|
|
"name": "@brazil-swift-ops/rules-engine",
|
|
|
|
|
"version": "1.0.0",
|
|
|
|
|
"main": "./dist/index.js",
|
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
|
"scripts": {
|
|
|
|
|
"build": "tsc",
|
|
|
|
|
"dev": "tsc --watch",
|
|
|
|
|
"type-check": "tsc --noEmit",
|
2026-01-23 16:32:41 -08:00
|
|
|
"test": "vitest run",
|
|
|
|
|
"test:watch": "vitest",
|
Initial implementation: Brazil SWIFT Operations Platform
- Complete monorepo structure with pnpm workspaces and Turborepo
- All packages implemented: types, utils, rules-engine, iso20022, treasury, risk-models, audit
- React web application with TypeScript and Tailwind CSS
- Full Brazil regulatory compliance (BCB requirements)
- ISO 20022 message support (pacs.008, pacs.009, pain.001)
- Treasury and subledger management
- Risk, capital, and liquidity stress allocation
- Audit logging and BCB reporting
- E&O +10% uplift implementation
2026-01-23 14:51:10 -08:00
|
|
|
"clean": "rm -rf dist"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"@brazil-swift-ops/types": "workspace:*",
|
|
|
|
|
"@brazil-swift-ops/utils": "workspace:*",
|
|
|
|
|
"decimal.js": "^10.4.3"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-01-23 16:32:41 -08:00
|
|
|
"typescript": "^5.3.3",
|
|
|
|
|
"vitest": "^1.0.0"
|
Initial implementation: Brazil SWIFT Operations Platform
- Complete monorepo structure with pnpm workspaces and Turborepo
- All packages implemented: types, utils, rules-engine, iso20022, treasury, risk-models, audit
- React web application with TypeScript and Tailwind CSS
- Full Brazil regulatory compliance (BCB requirements)
- ISO 20022 message support (pacs.008, pacs.009, pain.001)
- Treasury and subledger management
- Risk, capital, and liquidity stress allocation
- Audit logging and BCB reporting
- E&O +10% uplift implementation
2026-01-23 14:51:10 -08:00
|
|
|
}
|
|
|
|
|
}
|