{
  "name": "@mfissehaye/cbe-utils",
  "version": "1.0.2",
  "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"
  ],
  "keywords": [
    "cbe",
    "commercial-bank-ethiopia",
    "payment-verification",
    "transaction-processing",
    "banking",
    "fintech",
    "ethiopia",
    "typescript",
    "utils"
  ],
  "author": "Merhawi Fissehaye",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/mfissehaye/cbe-utils.git"
  },
  "bugs": {
    "url": "https://github.com/mfissehaye/cbe-utils/issues"
  },
  "homepage": "https://github.com/mfissehaye/cbe-utils#readme",
  "engines": {
    "node": ">=18.0.0"
  },
  "devDependencies": {
    "@types/node": "^24.1.0",
    "@vitest/coverage-v8": "3.2.4",
    "@vitest/ui": "^3.2.4",
    "typescript": "^5.8.3",
    "vite": "^5.4.0",
    "vitest": "^3.2.4"
  },
  "dependencies": {
    "axios": "^1.11.0",
    "dayjs": "^1.11.13",
    "pdf-text-reader": "^5.1.0"
  },
  "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"
  }
}