-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.54 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "mycel-widget",
"version": "0.1.4",
"type": "module",
"description": "Widget powered by mycel",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"build:vercel": "vite build --mode vercel",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"browserslist": "> 0.5%, last 2 versions, not dead",
"dependencies": {
"@cosmjs/crypto": "^0.31.1",
"@cosmjs/encoding": "^0.31.1",
"@cosmjs/math": "^0.31.1",
"@cosmjs/utils": "^0.31.1",
"@ethersproject/abstract-provider": "^5.7.0",
"@mysten/sui.js": "^0.42.0",
"@radix-ui/react-checkbox": "^1.0.1",
"@radix-ui/react-radio-group": "^1.1.1",
"@radix-ui/react-switch": "^1.0.1",
"@radix-ui/react-tooltip": "^1.0.2",
"@solana/web3.js": "^1.67.2",
"@stitches/react": "^1.2.8",
"@types/react-color": "^3.0.6",
"@uniswap/token-lists": "^1.0.0-beta.33",
"@vitejs/plugin-react": "^4.1.0",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"aptos": "^1.20.0",
"bignumber.js": "^9.1.1",
"copy-to-clipboard": "^3.3.3",
"dayjs": "^1.11.7",
"eth-rpc-errors": "^4.0.3",
"ethers": "^5.7.2",
"immer": "^9.0.19",
"mitt": "^3.0.0",
"mycel-client-ts": "^0.0.11",
"react": "^18.2.0",
"react-color": "^2.19.3",
"react-dom": "^18.2.0",
"react-router-dom": "^6.8.0",
"react-virtualized-auto-sizer": "^1.0.7",
"react-window": "^1.8.8",
"react-window-infinite-loader": "^1.0.8",
"rgb-hex": "^4.0.1",
"values.js": "2.1.1",
"vite-plugin-node-polyfills": "^0.8.2",
"zustand": "^4.3.2"
},
"devDependencies": {
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-virtualized-auto-sizer": "^1.0.1",
"@types/react-window": "^1.8.5",
"@types/react-window-infinite-loader": "^1.0.6",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"babel-loader": "^9.1.0",
"eslint": "^8.38.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"husky": "^8.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"tsdx": "^0.14.1",
"tslib": "^2.4.1",
"typescript": "^5.0.2",
"vite": "^4.3.2"
},
"publishConfig": {
"access": "public"
}
}