{
  "name": "@tagadapay/plugin-sdk",
  "version": "4.0.0",
  "description": "Modern React SDK for building Tagada Pay plugins",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "sideEffects": false,
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.js"
    },
    "./react": {
      "types": "./dist/react/index.d.ts",
      "import": "./dist/react/index.js",
      "require": "./dist/react/index.js"
    },
    "./v2": {
      "types": "./dist/v2/index.d.ts",
      "import": "./dist/v2/index.js",
      "require": "./dist/v2/index.js"
    },
    "./v2/standalone": {
      "types": "./dist/v2/standalone/index.d.ts",
      "import": "./dist/v2/standalone/index.js",
      "require": "./dist/v2/standalone/index.js"
    },
    "./external-tracker": {
      "browser": "./dist/external-tracker.min.js",
      "default": "./dist/external-tracker.min.js"
    }
  },
  "scripts": {
    "build": "tsc && npm run build:cdn",
    "build:cdn": "node build-cdn.js",
    "build:ts": "tsc",
    "clean": "rm -rf dist",
    "lint": "echo \"No linting configured\"",
    "test": "jest --no-watchman",
    "test:watch": "jest --watch --no-watchman",
    "test:coverage": "jest --coverage --no-watchman",
    "dev": "tsc --watch",
    "prepublishOnly": "npm run clean && npm run build",
    "publish:patch": "npm version patch && npm publish",
    "publish:minor": "npm version minor && npm publish",
    "publish:major": "npm version major && npm publish",
    "publish:beta": "npm version prerelease --preid=beta && npm publish --tag beta",
    "publish:alpha": "npm version prerelease --preid=alpha && npm publish --tag alpha",
    "version:patch": "npm version patch",
    "version:minor": "npm version minor",
    "version:major": "npm version major",
    "version:beta": "npm version prerelease --preid=beta",
    "version:alpha": "npm version prerelease --preid=alpha",
    "version:check": "node version-sync.js check",
    "version:sync": "node version-sync.js sync",
    "version:list": "node version-sync.js list",
    "version:next": "node version-sync.js next",
    "postversion": "echo \"✅ Version updated to $(node -p 'require(\"./package.json\").version')\" && (git push && git push --tags || echo \"⚠️ Git push failed - you may need to pull and push manually\")"
  },
  "keywords": [
    "tagadapay",
    "cms",
    "plugin",
    "sdk",
    "react",
    "typescript"
  ],
  "author": "Tagada Pay",
  "license": "MIT",
  "dependencies": {
    "@basis-theory/apple-pay-js": "^2.0.2",
    "@basis-theory/basis-theory-js": "^4.30.0",
    "@basis-theory/basis-theory-react": "^1.32.5",
    "@basis-theory/web-threeds": "^1.0.1",
    "@google-pay/button-react": "^3.0.10",
    "@stripe/react-stripe-js": "^5.6.1",
    "@stripe/stripe-js": "^8.11.0",
    "@tagadapay/core-js": "workspace:*",
    "@tagadapay/plugin-sdk": "link:",
    "@tanstack/react-query": "^5.90.2",
    "@whop/checkout": "^0.0.40",
    "axios": "^1.10.0",
    "path-to-regexp": "^8.2.0",
    "react-intl": "^7.1.11",
    "swr": "^2.3.6"
  },
  "devDependencies": {
    "@types/jest": "^29.5.0",
    "@types/node": "^18.19.130",
    "@types/react": "^19",
    "@types/react-dom": "^19",
    "esbuild": "^0.24.2",
    "jest": "^29.5.0",
    "ts-jest": "^29.1.0",
    "typescript": "^5.0.0"
  },
  "peerDependencies": {
    "react": "^18.0.0 || ^19.0.0",
    "react-dom": "^18.0.0 || ^19.0.0"
  },
  "files": [
    "dist/**/*",
    "README.md",
    "build-cdn.js"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/tagadapay/plugin-sdk.git"
  },
  "bugs": {
    "url": "https://github.com/tagadapay/plugin-sdk/issues"
  },
  "homepage": "https://github.com/tagadapay/plugin-sdk#readme"
}
