UNPKG

@keyban/sdk-react

Version:

Keyban SDK React simplifies the integration of Keyban's MPC wallet in React apps with TypeScript support, flexible storage, and Ethereum blockchain integration.

73 lines 1.78 kB
{ "name": "@keyban/sdk-react", "version": "0.14.0", "description": "Keyban SDK React simplifies the integration of Keyban's MPC wallet in React apps with TypeScript support, flexible storage, and Ethereum blockchain integration.", "homepage": "https://docs.keyban.io/", "author": { "name": "Keyban", "email": "it@keyban.io", "url": "https://keyban.io" }, "keywords": [ "polygon", "ecdsa", "mpc", "tss", "crypto", "typescript", "ethereum", "react", "wallet" ], "license": "Apache-2.0", "type": "module", "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" }, "./package.json": "./package.json" }, "files": [ "dist", "LICENSE", "README.md" ], "publishConfig": { "access": "public" }, "dependencies": { "@apollo/client": "^4.0.5", "@keyban/sdk-base": "^0.14.0" }, "peerDependencies": { "react": ">=19" }, "devDependencies": { "@eslint/js": "^9.36.0", "@types/react": "^19.2.2", "eslint": "^9.36.0", "eslint-plugin-jsdoc": "^60.3.1", "eslint-plugin-prettier": "^5.5.4", "eslint-plugin-react-hooks": "^5.2.0", "eslint-plugin-simple-import-sort": "^12.1.1", "globals": "^16.4.0", "prettier": "^3.6.2", "tsup": "^8.5.0", "typedoc": "^0.28.13", "typedoc-plugin-markdown": "^4.9.0", "typedoc-plugin-merge-modules": "^7.0.0", "typedoc-plugin-remark": "^2.0.1", "typescript": "^5.9.2", "typescript-eslint": "^8.44.1" }, "scripts": { "dev": "tsup --watch src", "build": "tsup", "lint": "eslint . --max-warnings 0", "lint:fix": "pnpm lint --fix", "generate-docs": "typedoc" } }