{
  "name": "paypay-ao-sdk",
  "version": "2.0.0",
  "description": "SDK oficial para integração de pagamentos PayPay AO - TypeScript",
  "main": "./lib/cjs/index.js",
  "module": "./lib/esm/index.js",
  "types": "./lib/types/index.d.ts",
  "exports": {
    ".": {
      "import": "./lib/esm/index.js",
      "require": "./lib/cjs/index.js",
      "types": "./lib/types/index.d.ts"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "lib/**/*",
    "README.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "scripts": {
    "start": "node src/app.js",
    "dev": "nodemon src/app.js",
    "build": "npm run build:clean && npm run build:cjs && npm run build:esm && npm run build:types",
    "build:clean": "rimraf lib",
    "build:cjs": "tsc -p tsconfig.cjs.json",
    "build:esm": "tsc -p tsconfig.esm.json",
    "build:types": "tsc -p tsconfig.json --declaration --emitDeclarationOnly --outDir lib/types",
    "build:watch": "tsc -p tsconfig.json --watch",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "test:types": "tsc --noEmit",
    "lint": "eslint src/**/*.ts",
    "lint:fix": "eslint src/**/*.ts --fix",
    "format": "prettier --write src/**/*.ts",
    "docs": "jsdoc lib/**/*.js -d docs",
    "prepare": "npm run build",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "paypay",
    "payment",
    "angola",
    "multicaixa",
    "sdk",
    "payments",
    "gateway",
    "api",
    "fintech",
    "mobile-payment",
    "typescript",
    "node",
    "multicaixa-express",
    "paypay-app"
  ],
  "author": {
    "name": "ANTONIO MANTENTE",
    "email": "anvimaa@gmail.com",
    "url": "https://anvima.vercel.app"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/anvimaa/paypay-ao-sdk.git"
  },
  "bugs": {
    "url": "https://github.com/anvimaa/paypay-ao-sdk/issues"
  },
  "homepage": "https://portal.paypayafrica.com/passport/apidoc/guide",
  "engines": {
    "node": ">=16.0.0",
    "npm": ">=8.0.0"
  },
  "dependencies": {
    "axios": "^1.10.0",
    "node-forge": "^1.3.1",
    "qs": "^6.14.0",
    "validator": "^13.15.15"
  },
  "peerDependencies": {
    "crypto": "^1.0.1",
    "uuid": "^11.1.0"
  },
  "devDependencies": {
    "@types/jest": "^29.5.0",
    "@types/node": "^20.0.0",
    "@types/node-forge": "^1.3.0",
    "@types/qs": "^6.14.0",
    "@types/validator": "^13.11.0",
    "@typescript-eslint/eslint-plugin": "^6.0.0",
    "@typescript-eslint/parser": "^6.0.0",
    "cors": "^2.8.5",
    "dotenv": "^17.2.1",
    "eslint": "^8.57.0",
    "express": "^5.1.0",
    "jest": "^29.7.0",
    "jsdoc": "^4.0.2",
    "nodemon": "^3.1.10",
    "prettier": "^3.0.0",
    "rimraf": "^5.0.0",
    "ts-jest": "^29.0.0",
    "typescript": "^5.0.0"
  },
  "publishConfig": {
    "access": "public"
  }
}