Initial transfer API rail: client, router, docs fetcher, tests
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
49
package.json
Normal file
49
package.json
Normal file
@@ -0,0 +1,49 @@
|
||||
{
|
||||
"name": "api-transfer-joesph",
|
||||
"version": "1.0.0",
|
||||
"description": "ISO 20022 transfer API rail — single-point cash transfer credit messages (external API client + optional HTTP endpoint)",
|
||||
"main": "dist/index.js",
|
||||
"types": "dist/index.d.ts",
|
||||
"scripts": {
|
||||
"build": "tsc",
|
||||
"prepare": "npm run build",
|
||||
"test": "jest",
|
||||
"test:watch": "jest --watch",
|
||||
"start": "node dist/server.js"
|
||||
},
|
||||
"exports": {
|
||||
".": {
|
||||
"import": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"types": "./dist/index.d.ts"
|
||||
},
|
||||
"./client": {
|
||||
"import": "./dist/client.js",
|
||||
"require": "./dist/client.js",
|
||||
"types": "./dist/client.d.ts"
|
||||
},
|
||||
"./router": {
|
||||
"import": "./dist/router.js",
|
||||
"require": "./dist/router.js",
|
||||
"types": "./dist/router.d.ts"
|
||||
}
|
||||
},
|
||||
"keywords": ["iso20022", "transfer", "rail", "pacs.008", "banking"],
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"type": "commonjs",
|
||||
"dependencies": {
|
||||
"express": "^4.22.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/express": "^4.17.21",
|
||||
"@types/jest": "^29.5.14",
|
||||
"@types/node": "^22.10.1",
|
||||
"jest": "^29.7.0",
|
||||
"ts-jest": "^29.2.5",
|
||||
"typescript": "^5.6.3"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user