-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.12 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
{
"name": "@killthebuddha/fig",
"version": "0.0.1",
"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"
},
"dependencies": {
"@ethersproject/abstract-signer": "^5.7.0",
"@ethersproject/wallet": "^5.7.0",
"@killthebuddha/brpc": "*",
"@xmtp/xmtp-js": "^9.3.1",
"buffer": "^6.0.3",
"comlink": "^4.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"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",
"eslint": "^8.33.0",
"prettier": "^2.8.3",
"typescript": "^5.1.6",
"vite": "^5.3.1",
"vite-plugin-dts": "^1.7.1"
},
"types": "dist/types/src/index.d.ts",
"module": "dist/fig.js",
"main": "dist/fig.umd.cjs",
"files": [
"dist"
]
}