@frak-labs/react-sdk
Version:
React SDK of the Frak wallet, low level library to interact directly with the frak ecosystem.
101 lines (100 loc) • 2.6 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": "1.3.0",
"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",
"/src"
],
"main": "./dist/index.cjs",
"types": "./dist/index.d.cts",
"exports": {
".": {
"development": "./src/index.ts",
"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": "tsdown",
"build:watch": "tsdown --watch",
"check-exports": "attw --pack .",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"prepublish": "bun run lint && bun run build",
"publish": "echo 'Publishing react...'"
},
"dependencies": {
"@frak-labs/core-sdk": "1.3.0",
"@frak-labs/frame-connector": "1.3.0"
},
"peerDependencies": {
"viem": "^2.x",
"@tanstack/react-query": ">=5.0.0",
"react": ">=18"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.5",
"@frak-labs/test-foundation": "0.1.0",
"@frak-labs/wallet-shared": "0.0.16",
"@tanstack/react-query": "^5.101.4",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.2",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.6.1",
"@types/jsdom": "^28.0.3",
"@types/node": "^25.9.5",
"@types/react": "19.2.17",
"@typescript/native": "npm:typescript@^7.0.2",
"@vitest/coverage-v8": "^4.1.10",
"@vitest/ui": "^4.1.10",
"jsdom": "^29.1.1",
"react": "^19.2.8",
"tsdown": "^0.22.14",
"typescript": "^6.0.3",
"viem": "^2.55.10",
"vitest": "^4.1.10"
}
}