-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.58 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@relaycc/xmtp-hooks",
"version": "0.0.17",
"author": "relay.network",
"homepage": "https://github.com/relay-network/xmtp-hooks",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint *.ts",
"prettier": "prettier --check .",
"prettier:fix": "prettier . --write",
"typecheck": "tsc --emitDeclarationOnly false --noEmit",
"sanity": "npm run lint && npm run prettier && npm run typecheck && npm run build",
"patch": "npm version patch -m 'patch: Bump version to %s'",
"pub": "npm run sanity && npm run patch && npm publish --access public"
},
"dependencies": {
"@ethersproject/abstract-signer": "^5.7.0",
"@ethersproject/wallet": "^5.7.0",
"@rainbow-me/rainbowkit": "^1.0.8",
"@xmtp/xmtp-js": "^9.3.1",
"buffer": "^6.0.3",
"comlink": "^4.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"viem": "^1.6.0",
"wagmi": "^1.3.10",
"zod": "^3.21.4",
"zustand": "^4.3.2"
},
"devDependencies": {
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"@vitejs/plugin-react": "^3.0.0",
"autoprefixer": "^10.4.15",
"eslint": "^8.33.0",
"postcss": "^8.4.28",
"prettier": "^2.8.3",
"tailwindcss": "^3.3.3",
"typescript": "^5.1.6",
"vite": "^4.0.0",
"vite-plugin-dts": "^1.7.1"
},
"types": "dist/types/index.d.ts",
"module": "dist/xmtp-hooks.js",
"main": "dist/xmtp-hooks.umd.cjs",
"files": [
"dist"
]
}