{
  "name": "@wallethero/sdk",
  "version": "3.7.5",
  "description": "TypeScript SDK for WalletHero API - manage pass templates and passes for Apple Wallet and Google Pay",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsup src/index.ts --format cjs,esm --dts",
    "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
    "test": "vitest",
    "typecheck": "tsc --noEmit",
    "lint": "eslint src/**/*.ts",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "wallet",
    "apple-wallet",
    "google-pay",
    "passes",
    "sdk",
    "typescript",
    "api"
  ],
  "author": "WalletHero",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/wallethero/sdk.git"
  },
  "bugs": {
    "url": "https://github.com/wallethero/sdk/issues"
  },
  "homepage": "https://github.com/wallethero/sdk#readme",
  "devDependencies": {
    "@types/node": "^20.0.0",
    "@typescript-eslint/eslint-plugin": "^6.0.0",
    "@typescript-eslint/parser": "^6.0.0",
    "eslint": "^8.0.0",
    "tsup": "^8.0.0",
    "typescript": "^5.0.0",
    "vitest": "^1.0.0"
  },
  "dependencies": {
    "@types/qrcode": "^1.5.5",
    "qrcode": "^1.5.4"
  },
  "peerDependencies": {
    "typescript": ">=4.0.0"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    }
  }
}
