@frak-labs/react-sdk
Version:
React SDK of the Frak wallet, low level library to interact directly with the frak ecosystem.
84 lines (83 loc) • 1.99 kB
JSON
{
"name": "@frak-labs/react-sdk",
"author": "Frak Labs",
"maintainers": [
{
"name": "srod",
"url": "https://twitter.com/srod"
},
{
"name": "Quentin Nivelais",
"url": "https://twitter.com/QNivelais"
}
],
"version": "0.0.14",
"description": "React SDK of the Frak wallet, low level library to interact directly with the frak ecosystem.",
"repository": {
"url": "https://github.com/frak-id/wallet",
"directory": "sdk/react"
},
"homepage": "https://docs.frak.id/wallet-sdk/overview",
"keywords": [
"frak-labs",
"frak-wallet",
"erc-4337",
"eip-4337",
"smart-wallet"
],
"license": "GNU GPL 3.0",
"sideEffects": false,
"private": false,
"publishConfig": {
"access": "public"
},
"type": "module",
"files": [
"/dist"
],
"main": "./dist/index.cjs",
"types": "./dist/index.d.cts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"scripts": {
"lint": "biome lint .",
"format:check": "biome check .",
"format": "biome check --write .",
"clean": "rimraf dist",
"build": "rslib build",
"build:watch": "rslib build --watch",
"check-exports": "attw --pack .",
"typecheck": "tsc --noEmit",
"prepublish": "bun run lint && bun run build",
"publish": "echo 'Publishing react...'"
},
"dependencies": {
"@frak-labs/core-sdk": "0.0.14"
},
"peerDependencies": {
"viem": "^2.x",
"@tanstack/react-query": ">=5.0.0",
"react": ">=18"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.4",
"@microsoft/api-extractor": "^7.52.1",
"@rsbuild/plugin-react": "^1.1.1",
"@rslib/core": "^0.5.5",
"@types/node": "^22",
"typescript": "^5"
},
"browserslist": [
"extends @frak-labs/browserslist-config"
]
}