-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.21 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
{
"name": "@killthebuddha/fig",
"version": "0.0.1",
"type": "module",
"types": "./dist/fig.d.ts",
"files": [
"dist"
],
"main": "./dist/fig.umd.cjs",
"module": "./dist/fig.js",
"exports": {
".": {
"import": "./dist/fig.js",
"require": "./dist/fig.umd.cjs"
}
},
"scripts": {
"dev": "vite build --watch",
"build": "vite build && tsc --project ./tsconfig.app.json",
"lint": "eslint .",
"preview": "vite preview"
},
"dependencies": {
"@ethersproject/abstract-signer": "^5.7.0",
"@ethersproject/wallet": "^5.7.0",
"@xmtp/xmtp-js": "latest",
"buffer": "^6.0.3",
"comlink": "^4.3.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"uuid": "^10.0.0",
"zod": "^3.21.4",
"zustand": "^4.3.2"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^9.9.0",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.9",
"globals": "^15.9.0",
"typescript": "^5.5.3",
"typescript-eslint": "^8.0.1",
"vite": "^5.4.1",
"vite-plugin-dts": "^4.0.3"
}
}