UNPKG

cbe-utils

Version:

A TypeScript utility library for CBE (Commercial Bank of Ethiopia) payment verification and transaction processing

68 lines (67 loc) 1.67 kB
{ "name": "cbe-utils", "version": "1.0.0", "description": "A TypeScript utility library for CBE (Commercial Bank of Ethiopia) payment verification and transaction processing", "main": "dist/index.cjs", "module": "dist/index.js", "types": "dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.cjs" } }, "files": [ "dist", "README.md", "LICENSE" ], "scripts": { "dev": "vite --mode development", "build": "vite build && tsc --emitDeclarationOnly --outDir dist", "test": "vitest", "test:ui": "vitest --ui", "test:run": "vitest run", "coverage": "vitest run --coverage", "prepublishOnly": "pnpm build && pnpm test:run" }, "keywords": [ "cbe", "commercial-bank-ethiopia", "payment-verification", "transaction-processing", "banking", "fintech", "ethiopia", "typescript", "utils" ], "author": "Your Name <your.email@example.com>", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/yourusername/cbe-utils.git" }, "bugs": { "url": "https://github.com/yourusername/cbe-utils/issues" }, "homepage": "https://github.com/yourusername/cbe-utils#readme", "engines": { "node": ">=18.0.0" }, "packageManager": "pnpm@10.13.1", "devDependencies": { "@types/node": "^24.1.0", "@vitest/coverage-v8": "3.2.4", "@vitest/ui": "^3.2.4", "typescript": "^5.8.3", "vite": "^7.0.6", "vitest": "^3.2.4" }, "dependencies": { "axios": "^1.11.0", "dayjs": "^1.11.13", "pdf-text-reader": "^5.1.0" } }