{
  "name": "@scpdemo/test-sdk-card",
  "version": "1.6.0",
  "description": "React hook + iframe wrapper for the Scallop card SDK",
  "license": "MIT",
  "type": "module",
  "main": "dist/index.cjs",
  "module": "dist/index.js",
  "types": "dist/types/index.d.ts",
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist",
    "README.md"
  ],
  "keywords": [
    "react",
    "sdk",
    "scallop",
    "card",
    "widget",
    "fintech",
    "payment"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/your-username/scallop-card-sdk.git",
    "directory": "sdk/packages/react-wrapper"
  },
  "homepage": "https://github.com/your-username/scallop-card-sdk#readme",
  "bugs": {
    "url": "https://github.com/your-username/scallop-card-sdk/issues"
  },
  "exports": {
    ".": {
      "types": "./dist/types/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    }
  },
  "scripts": {
    "build": "tsup src/index.ts --format cjs,esm --external react,react-dom,axios && tsc -p tsconfig.build.json",
    "dev": "tsup src/index.ts --format cjs,esm --external react,react-dom,axios --watch",
    "start": "vite --config vite.config.ts --open --port 5173",
    "lint": "eslint src --ext .ts,.tsx",
    "test": "vitest run"
  },
  "peerDependencies": {
    "react": ">=18.0.0"
  },
  "dependencies": {
    "axios": "^1.6.0"
  },
  "devDependencies": {
    "@vitejs/plugin-react": "^4.3.1",
    "@types/react": "^18.3.8",
    "@types/react-dom": "^18.3.0",
    "react": "^18.3.1",
    "react-dom": "^18.3.1",
    "tslib": "2.8.0",
    "vite": "5.4.8"
  }
}
