forked from pancakeswap/pancake-frontend
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
91 lines (91 loc) · 2.71 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
90
91
{
"name": "@pancakeswap/wagmi",
"version": "1.0.0",
"license": "MIT",
"description": "wagmi adaptor for pancakeswap",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/pancakeswap/pancake-frontend.git",
"directory": "packages/wagmi"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepublishOnly": "pnpm run build",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
},
"peerDependencies": {
"wagmi": "^0.12.12",
"@wagmi/core": "^0.10.10",
"@blocto/sdk": "^0.3.1",
"@ethersproject/abi": "^5.0.0",
"@ethersproject/address": "^5.0.0",
"@ethersproject/bignumber": "^5.0.0",
"@ethersproject/bytes": "^5.0.0",
"@ethersproject/constants": "^5.0.0",
"@ethersproject/contracts": "^5.0.0",
"@ethersproject/providers": "^5.0.0",
"@ethersproject/strings": "^5.0.0",
"@ethersproject/units": "^5.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@types/react": "^18.0.17",
"wagmi": "^0.12.12",
"@wagmi/core": "^0.10.10",
"@blocto/sdk": "^0.3.1",
"@ethersproject/abi": "^5.0.0",
"@ethersproject/address": "^5.0.0",
"@ethersproject/bignumber": "^5.0.0",
"@ethersproject/bytes": "^5.0.0",
"@ethersproject/constants": "^5.0.0",
"@ethersproject/contracts": "^5.0.0",
"@ethersproject/providers": "^5.0.0",
"@ethersproject/strings": "^5.0.0",
"@ethersproject/units": "^5.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"@pancakeswap/tsconfig": "workspace:*",
"tsup": "^6.7.0"
},
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./connectors/miniProgram": {
"types": "./dist/connectors/miniProgram.d.ts",
"import": "./dist/connectors/miniProgram.mjs",
"require": "./dist/connectors/miniProgram.js"
},
"./connectors/binanceWallet": {
"types": "./dist/connectors/binanceWallet.d.ts",
"import": "./dist/connectors/binanceWallet.mjs",
"require": "./dist/connectors/binanceWallet.js"
},
"./connectors/blocto": {
"types": "./dist/connectors/blocto.d.ts",
"import": "./dist/connectors/blocto.mjs",
"require": "./dist/connectors/blocto.js"
},
"./connectors/trustWallet": {
"types": "./dist/connectors/trustWallet.d.ts",
"import": "./dist/connectors/trustWallet.mjs",
"require": "./dist/connectors/trustWallet.js"
}
},
"peerDependenciesMeta": {
"@blocto/sdk": {
"optional": true
},
"swr": {
"optional": true
}
}
}