UNPKG

@abstract-foundation/web3-react-agw

Version:
60 lines 1.81 kB
{ "name": "@abstract-foundation/web3-react-agw", "description": "Abstract Global Wallet for web3-react", "version": "1.7.8", "keywords": [ "eth", "ethereum", "smart-account", "abstract", "account-abstraction", "global-wallet", "wallet", "web3", "web3-react" ], "license": "MIT", "repository": { "type": "git", "url": "https://github.com/abstract-foundation/agw-sdk.git", "directory": "packages/web3-react-agw" }, "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js", "types": "./dist/types/index.d.ts", "typings": "./dist/types/index.d.ts", "exports": { ".": { "types": "./dist/types/index.d.ts", "import": "./dist/esm/index.js", "require": "./dist/cjs/index.js" } }, "files": [ "dist", "src", "package.json" ], "dependencies": { "@privy-io/cross-app-connect": "^0.2.2", "@web3-react/types": "^8.2.3", "@abstract-foundation/agw-client": "^1.9.0" }, "devDependencies": { "@tanstack/react-query": "^5.80.3", "react-dom": "^18", "@types/node": "^22.5.5", "@web3-react/core": "^8.2.3", "@web3-react/store": "^8.2.3", "viem": "^2.33.3", "wagmi": "^2.14.11" }, "scripts": { "build": "pnpm run clean && pnpm run build:esm+types && pnpm run build:cjs", "build:esm+types": "tsc --outDir ./dist/esm --declaration --declarationMap --declarationDir ./dist/types && printf '{\"type\":\"module\"}' > ./dist/esm/package.json", "build:cjs": "tsc -p tsconfig.cjs.json && printf '{\"type\":\"commonjs\"}' > ./dist/cjs/package.json", "clean": "rm -rf dist tsconfig.tsbuildinfo", "typecheck": "tsc --noEmit", "debug": "tsc-watch --sourceMap true --outDir ./dist/esm --declaration --declarationMap --declarationDir ./dist/types" } }