Initial commit: AS4/411 directory and discovery service for Sankofa Marketplace
Some checks failed
CI / lint (push) Has been cancelled
CI / build (push) Has been cancelled

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
defiQUG
2026-02-08 08:44:20 -08:00
commit c24ae925cf
109 changed files with 7222 additions and 0 deletions

25
package.json Normal file
View File

@@ -0,0 +1,25 @@
{
"name": "as4-411",
"version": "0.1.0",
"private": true,
"description": "Directory and discovery service for AS4, SS7, and messaging gateways",
"scripts": {
"build": "pnpm -r run build",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write \"**/*.{ts,tsx,json,md,yaml,yml}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,json,md,yaml,yml}\"",
"test": "pnpm -r run test"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18"
}
}