moonchute
Version:
React hook for account abstraction
91 lines (90 loc) • 2.12 kB
JSON
{
"name": "moonchute",
"description": "React hook for account abstraction",
"author": "MoonChute",
"version": "0.0.8",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"@tanstack/query-sync-storage-persister": "^4.35.7",
"@tanstack/react-query": "^4.35.7",
"@tanstack/react-query-persist-client": "^4.35.7",
"axios": "^1.5.1",
"use-sync-external-store": "^1.2.0",
"wagmi": "^1.4.3",
"zustand": "^4.4.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^13.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.13",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/use-sync-external-store": "^0.0.4",
"execa": "^8.0.1",
"msw": "^1.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"tsup": "^7.2.0",
"typescript": "^5.0.2",
"vitest": "^0.34.6",
"web-vitals": "^2.1.0"
},
"peerDependencies": {
"react": ">=18.2.0",
"typescript": ">=4.4.2",
"wagmi": "~1.0.1 || ~1.1.0 || ~1.2.0 || ~1.3.0 || ~1.4.0",
"@wagmi/core": "~1.0.1 || ~1.1.0 || ~1.2.0 || ~1.3.0 || ~1.4.0"
},
"scripts": {
"build": "tsup",
"clean": "rimraf src/_esm src/_cjs src/_types",
"test": "vitest",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"keywords": [
"eth",
"ethereum",
"blockchain",
"dapps",
"wallet",
"web3",
"account abstraction",
"smart accounts",
"erc-4337",
"erc-6900"
],
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"/dist"
]
}