-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathpackage.json
54 lines (54 loc) · 1.52 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": "@xmtp/xmtp.chat",
"version": "0.0.0",
"private": true,
"type": "module",
"exports": {
".": "./src/index.ts"
},
"main": "src/index.ts",
"scripts": {
"build": "vite build",
"clean": "rm -rf .turbo && rm -rf node_modules && yarn clean:dist",
"clean:dist": "rm -rf dist",
"dev": "vite",
"typecheck": "tsc"
},
"dependencies": {
"@mantine/core": "^7.16.0",
"@mantine/form": "^7.16.0",
"@mantine/hooks": "^7.16.0",
"@mantine/modals": "^7.16.0",
"@mantine/notifications": "^7.16.0",
"@tanstack/react-query": "^5.61.5",
"@xmtp/browser-sdk": "^0.0.17",
"@xmtp/content-type-group-updated": "^2.0.0",
"@xmtp/content-type-primitives": "^2.0.0",
"@xmtp/content-type-reaction": "^2.0.0",
"@xmtp/content-type-remote-attachment": "^2.0.0",
"@xmtp/content-type-reply": "^2.0.0",
"@xmtp/content-type-text": "^2.0.0",
"date-fns": "^4.1.0",
"plausible-tracker": "^0.3.9",
"react": "^18.3.1",
"react-18-blockies": "^1.0.6",
"react-dom": "^18.3.1",
"react-router": "^7.1.1",
"react-virtuoso": "^4.12.3",
"uint8array-extras": "^1.4.0",
"viem": "^2.21.52",
"wagmi": "^2.13.2"
},
"devDependencies": {
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"postcss": "^8.5.1",
"postcss-preset-mantine": "^1.17.0",
"postcss-simple-vars": "^7.0.1",
"tsconfig": "workspace:*",
"typescript": "^5.7.3",
"vite": "^6.0.7",
"vite-tsconfig-paths": "npm:^5.1.4"
}
}