{
  "name": "@rmarinsky/wayforpay-mcp",
  "version": "1.0.0",
  "description": "Model Context Protocol (MCP) server for WayForPay — query merchant balance, transactions, regular payments, and trigger gated mutations (create invoice / refund / settle) from any MCP client (Claude Desktop, Claude Code, Cursor).",
  "license": "MIT",
  "author": "Roman Marinsky",
  "homepage": "https://github.com/rmarinsky/wayforpay-mcp#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/rmarinsky/wayforpay-mcp.git"
  },
  "bugs": {
    "url": "https://github.com/rmarinsky/wayforpay-mcp/issues"
  },
  "type": "module",
  "main": "./dist/index.js",
  "bin": {
    "wayforpay-mcp": "./dist/index.js"
  },
  "files": [
    "dist",
    "src",
    "README.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "engines": {
    "bun": ">=1.1.0",
    "node": ">=20"
  },
  "scripts": {
    "dev": "bun --watch src/index.ts",
    "start": "bun run src/index.ts",
    "build": "bun build src/index.ts --target=bun --outfile=dist/index.js",
    "compile": "bun run compile:darwin-arm64 && bun run compile:darwin-x64 && bun run compile:linux-x64",
    "compile:darwin-arm64": "bun build --compile --target=bun-darwin-arm64 src/index.ts --outfile dist/wayforpay-mcp-darwin-arm64",
    "compile:darwin-x64": "bun build --compile --target=bun-darwin-x64 src/index.ts --outfile dist/wayforpay-mcp-darwin-x64",
    "compile:linux-x64": "bun build --compile --target=bun-linux-x64 src/index.ts --outfile dist/wayforpay-mcp-linux-x64",
    "typecheck": "tsc --noEmit",
    "lint": "biome check src test",
    "lint:fix": "biome check --write src test",
    "format": "biome format --write src test",
    "test": "bun test",
    "validate": "bun run typecheck && bun run lint && bun test",
    "prepublishOnly": "bun run validate && bun run build"
  },
  "keywords": [
    "mcp",
    "model-context-protocol",
    "claude",
    "wayforpay",
    "payments",
    "ukraine",
    "merchant",
    "invoice",
    "refund"
  ],
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.18.0",
    "@toon-format/toon": "^2.1.0",
    "zod": "^3.23.8"
  },
  "devDependencies": {
    "@biomejs/biome": "^1.9.4",
    "@types/bun": "^1.1.13",
    "typescript": "^5.6.3"
  }
}
