{
  "name": "inflowpay-js",
  "version": "0.7.0",
  "description": "InflowPay JavaScript SDK with React components",
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs",
      "types": "./dist/index.d.ts"
    },
    "./react": {
      "import": "./dist/react/index.mjs",
      "require": "./dist/react/index.cjs",
      "types": "./dist/react/index.d.ts"
    }
  },
  "files": [
    "dist",
    "templates",
    "README.md",
    "QUICK_START.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "scripts": {
    "dev": "vite build --watch",
    "build": "tsc && vite build && npm run fix-types",
    "fix-types": "mkdir -p dist/react && [ -f dist/react.d.ts ] && mv dist/react.d.ts dist/react/index.d.ts || true",
    "lint": "eslint src --ext .ts",
    "format": "prettier --write \"src/**/*.ts\"",
    "typecheck": "tsc --noEmit",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "inflowpay",
    "payment",
    "sdk",
    "payments",
    "typescript"
  ],
  "author": "inflowpay",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/inflowpay/sdk.git"
  },
  "bugs": {
    "url": "https://github.com/inflowpay/sdk/issues"
  },
  "homepage": "https://github.com/inflowpay/sdk#readme",
  "peerDependencies": {
    "react": ">=16.8.0",
    "react-dom": ">=16.8.0"
  },
  "devDependencies": {
    "@types/node": "^20.0.0",
    "@types/react": "^18.0.0",
    "@types/react-dom": "^18.0.0",
    "@typescript-eslint/eslint-plugin": "^6.0.0",
    "@typescript-eslint/parser": "^6.0.0",
    "eslint": "^8.0.0",
    "prettier": "^3.0.0",
    "typescript": "^5.0.0",
    "vite": "^5.0.0",
    "vite-plugin-dts": "^3.0.0"
  },
  "engines": {
    "node": ">=16.0.0"
  }
}
