-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
46 lines (46 loc) · 1.26 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
{
"name": "@uauth/web3-onboard",
"version": "3.0.1",
"type": "module",
"exports": {
"import": "./build/index.module.mjs",
"require": "./build/index.cjs"
},
"main": "./build/index.cjs",
"module": "./build/index.module.mjs",
"source": "./src/index.ts",
"types": "./build/index.d.ts",
"files": [
"build"
],
"scripts": {
"build": "yarn export-version; microbundle",
"dev": "yarn export-version; microbundle watch",
"typecheck": "tsc --noEmit",
"export-version": "node -p \"'export const VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > ./src/version.ts"
},
"dependencies": {
"@uauth/js": "workspace:*"
},
"devDependencies": {
"@ethersproject/providers": "5.5.0",
"@walletconnect/client": "^1.6",
"@walletconnect/qrcode-modal": "^1.6",
"@walletconnect/types": "^1.6",
"@web3-onboard/common": "^2.0",
"microbundle": "^0.14.2",
"rxjs": "^7.5.5"
},
"peerDependencies": {
"@ethersproject/providers": "5.5.0",
"@walletconnect/client": "^1.6",
"@walletconnect/qrcode-modal": "^1.6",
"@walletconnect/types": "^1.6",
"@web3-onboard/common": "^2.0",
"rxjs": "^7.5.5"
},
"publishConfig": {
"access": "public"
},
"amdName": "UAuthWeb3Onboard"
}