@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.
75 lines • 1.86 kB
JSON
{
"name": "@keyban/sdk-react",
"version": "0.11.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",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@apollo/client": "^3.13.8",
"@keyban/sdk-base": "^0.11.0"
},
"peerDependencies": {
"react": ">=19"
},
"devDependencies": {
"@eslint/js": "^9.30.0",
"@types/node": "^22.15.32",
"@types/react": "^19.1.8",
"eslint": "^9.30.0",
"eslint-plugin-jsdoc": "^50.8.0",
"eslint-plugin-prettier": "^5.5.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^16.3.0",
"prettier": "^3.6.2",
"tsup": "^8.5.0",
"typedoc": "^0.28.7",
"typedoc-plugin-markdown": "^4.7.0",
"typedoc-plugin-merge-modules": "^6.1.0",
"typedoc-plugin-remark": "^1.3.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.1"
},
"scripts": {
"dev": "tsup --watch src",
"build": "tsup",
"lint": "eslint . --max-warnings 0",
"lint:fix": "pnpm lint --fix",
"generate-docs": "typedoc"
}
}