-
Notifications
You must be signed in to change notification settings - Fork 121
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.45 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.45 KB
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
{
"name": "@lifi/widget-playground",
"version": "1.0.0",
"type": "module",
"main": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"scripts": {
"build": "pnpm clean && tsdown",
"clean": "rm -rf dist",
"check:types": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"check:circular-deps": "madge --circular $(find ./src -name '*.ts' -o -name '*.tsx')",
"check:circular-deps-graph": "madge --circular $(find ./src -name '*.ts' -o -name '*.tsx') --image graph.svg"
},
"exports": {
".": "./src/index.ts",
"./widget-config": "./src/defaultWidgetConfig.ts"
},
"dependencies": {
"@base-org/account": "~2.5.3",
"@bigmi/client": "^0.8.0",
"@bigmi/core": "^0.8.0",
"@bigmi/react": "^0.8.0",
"@coinbase/wallet-sdk": "~4.3.7",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@lifi/widget": "workspace:*",
"@lifi/widget-provider-bitcoin": "workspace:*",
"@lifi/widget-provider-ethereum": "workspace:*",
"@lifi/widget-provider-mesh": "workspace:*",
"@lifi/widget-provider-solana": "workspace:*",
"@lifi/widget-provider-sui": "workspace:*",
"@lifi/widget-provider-transak": "workspace:*",
"@lifi/widget-provider-tron": "workspace:*",
"@metamask/connect-evm": "^0.10.0",
"@monaco-editor/react": "^4.7.0",
"@mui/icons-material": "^9.0.0",
"@mui/lab": "9.0.0-beta.2",
"@mui/material": "^9.0.0",
"@mui/system": "^9.0.0",
"@reown/appkit": ">=1.8.18",
"@reown/appkit-adapter-bitcoin": "^1.8.19",
"@reown/appkit-adapter-solana": "^1.8.19",
"@reown/appkit-adapter-tron": "^1.8.19",
"@reown/appkit-adapter-wagmi": "^1.8.19",
"@reown/appkit-common": "^1.8.19",
"@reown/appkit-controllers": "^1.8.19",
"@tronweb3/tronwallet-abstract-adapter": "1.1.12",
"@tronweb3/tronwallet-adapter-react-hooks": "^1.1.11",
"@walletconnect/ethereum-provider": "~2.23.9",
"csstype": "^3.2.3",
"lodash.isequal": "^4.5.0",
"microdiff": "^1.5.0",
"porto": "^0.2.37",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"viem": "^2.47.11",
"wagmi": "^3.6.1",
"zustand": "^5.0.12"
},
"devDependencies": {
"@types/lodash.isequal": "^4.5.8",
"@types/node": "^25.5.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"madge": "^8.0.0",
"typescript": "^6.0.2",
"vitest": "^4.1.4"
},
"peerDependencies": {
"@tanstack/react-query": ">=5.90.0"
},
"private": true
}