{
  "name": "@mbanq/core-sdk-js",
  "version": "0.51.0",
  "description": "A comprehensive JavaScript SDK for interacting with the Mbanq payment API. Features type-safe payment operations, multi-tenant support, and Zod validation.",
  "main": "dist/index.js",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/types/types.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    },
    "./command": {
      "types": "./dist/commands/index.d.ts",
      "import": "./dist/commands/index.mjs",
      "require": "./dist/commands/index.js"
    },
    "./client": {
      "types": "./dist/client/index.d.ts",
      "import": "./dist/client/index.mjs",
      "require": "./dist/client/index.js"
    },
    "./types": {
      "types": "./dist/types/types.d.ts"
    },
    "./types/command": {
      "types": "./dist/commands/index.d.ts"
    },
    "./types/client": {
      "types": "./dist/client/index.d.ts"
    },
    "./types/zod": {
      "types": "./dist/zod/index.d.ts",
      "import": "./dist/zod/index.mjs",
      "require": "./dist/zod/index.js"
    }
  },
  "files": [
    "dist/**"
  ],
  "scripts": {
    "dev": "tsup --watch",
    "semantic-release": "semantic-release",
    "build": "tsup",
    "build:public": "tsup --config tsup.config.public.ts && node scripts/strip-internal.js && node scripts/filter-changelog.js",
    "build:internal": "tsup",
    "test": "vitest run --coverage",
    "test:ci": "vitest run --coverage --reporter=default --reporter=junit --outputFile=junit.xml",
    "lint": "eslint '*/**/*.{js,ts}' --fix"
  },
  "repository": {
    "type": "git",
    "url": "git@github.com:Mbanq/core-sdk-js-internal.git"
  },
  "homepage": "https://github.com/Mbanq/core-sdk-js-internal",
  "bugs": {
    "url": "https://github.com/Mbanq/core-sdk-js-internal/issues"
  },
  "keywords": [
    "core",
    "sdk",
    "javascript"
  ],
  "author": "MbanqCloud",
  "license": "MIT",
  "devDependencies": {
    "@babel/eslint-plugin": "^7.27.1",
    "@semantic-release/changelog": "^6.0.3",
    "@semantic-release/git": "^10.0.1",
    "@semantic-release/github": "^11.0.4",
    "@semantic-release/npm": "^12.0.2",
    "@types/jsonwebtoken": "^9.0.10",
    "@types/node": "^24.2.1",
    "@typescript-eslint/eslint-plugin": "^8.39.1",
    "@typescript-eslint/parser": "^8.39.1",
    "@vitest/coverage-istanbul": "^3.2.4",
    "eslint": "^9.33.0",
    "eslint-plugin-import": "^2.32.0",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-security": "^3.0.1",
    "globals": "^16.3.0",
    "semantic-release": "^24.2.7",
    "semantic-release-slack-bot": "^4.0.2",
    "tsup": "^8.5.0",
    "typescript": "^5.9.2",
    "vitest": "^3.2.4"
  },
  "dependencies": {
    "axios": "^1.11.0",
    "graphql": "^16.11.0",
    "jsonwebtoken": "^9.0.2",
    "moment-timezone": "^0.6.0",
    "uuid": "^11.1.0",
    "zod": "^3.25.76"
  }
}