- Add Foundry project configuration (foundry.toml, foundry.lock) - Add Solidity contracts (TokenFactory138, BridgeVault138, ComplianceRegistry, etc.) - Add API definitions (OpenAPI, GraphQL, gRPC, AsyncAPI) - Add comprehensive test suite (unit, integration, fuzz, invariants) - Add API services (REST, GraphQL, orchestrator, packet service) - Add documentation (ISO20022 mapping, runbooks, adapter guides) - Add development tools (RBC tool, Swagger UI, mock server) - Update OpenZeppelin submodules to v5.0.0
61 lines
1.4 KiB
JSON
61 lines
1.4 KiB
JSON
{
|
|
"name": "railbridge-composer",
|
|
"version": "1.0.0",
|
|
"description": "RailBridge Composer - Bank-grade instruction packet generator for non-scheme participants",
|
|
"main": "dist/cli.js",
|
|
"bin": {
|
|
"rbc": "./dist/cli.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start": "node dist/cli.js",
|
|
"start:api": "node dist/api/server.js",
|
|
"dev": "ts-node src/cli.ts",
|
|
"dev:api": "ts-node src/api/server.ts",
|
|
"test": "jest",
|
|
"lint": "eslint src --ext .ts",
|
|
"format": "prettier --write \"src/**/*.ts\""
|
|
},
|
|
"keywords": [
|
|
"banking",
|
|
"payment-instructions",
|
|
"pdf",
|
|
"as4",
|
|
"email",
|
|
"blockchain"
|
|
],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"commander": "^11.1.0",
|
|
"dotenv": "^16.3.1",
|
|
"ethers": "^6.9.0",
|
|
"express": "^4.18.2",
|
|
"fastify": "^4.24.3",
|
|
"handlebars": "^4.7.8",
|
|
"node-forge": "^1.3.1",
|
|
"openpgp": "^5.11.0",
|
|
"pdfkit": "^0.14.0",
|
|
"pug": "^3.0.3",
|
|
"qrcode": "^1.5.3",
|
|
"sha3": "^2.1.4",
|
|
"xml-crypto": "^3.2.0",
|
|
"xmldom": "^0.6.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.21",
|
|
"@types/node": "^20.10.5",
|
|
"@types/node-forge": "^1.3.11",
|
|
"@types/pdfkit": "^0.13.4",
|
|
"@types/qrcode": "^1.5.5",
|
|
"@typescript-eslint/eslint-plugin": "^6.15.0",
|
|
"@typescript-eslint/parser": "^6.15.0",
|
|
"eslint": "^8.56.0",
|
|
"jest": "^29.7.0",
|
|
"prettier": "^3.1.1",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.3.3"
|
|
}
|
|
}
|
|
|