forked from blocknative/web3-onboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.91 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": "bnc-onboard",
"version": "1.30.0",
"description": "Onboard users to web3 by allowing them to select a wallet, get that wallet ready to transact and have access to synced wallet state.",
"keywords": [
"ethereum",
"web3",
"blocknative",
"wallet"
],
"main": "dist/cjs/onboard.js",
"module": "dist/esm/onboard.js",
"typings": "dist/src/onboard.d.ts",
"files": [
"dist"
],
"author": "Aaron Barnard <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/blocknative/onboard"
},
"license": "MIT",
"scripts": {
"build": "rimraf dist && rollup -c && babel dist/cjs --out-dir dist/cjs && babel dist/esm --out-dir dist/esm",
"test": "echo \"TBD\" && exit 0",
"prepare": "npm run build",
"lint": "eslint 'src/**/*.ts' && prettier --check {'src/**/*.ts','src/**/*.svelte'}",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"format": "prettier --write {'src/**/*.ts','src/**/*.svelte'}"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@pyoner/svelte-ts-preprocess": "^1.2.1",
"@rollup/plugin-image": "^2.0.4",
"@rollup/plugin-json": "^4.0.0",
"@rollup/plugin-node-resolve": "^7.1.1",
"@types/node": "^13.5.1",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"babel-plugin-external-helpers": "^6.18.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.0.5",
"prettier-plugin-svelte": "^2.2.0",
"rimraf": "^3.0.0",
"rollup": "^1.27.5",
"rollup-plugin-svelte": "^6.1.1",
"rollup-plugin-typescript2": "0.21.0",
"svelte": "^3.12.1",
"svelte-i18n": "^1.1.2-beta",
"typescript": "^3.6.4"
},
"dependencies": {
"@cvbb/eth-keyring": "^1.1.0",
"@gnosis.pm/safe-apps-provider": "^0.5.0",
"@gnosis.pm/safe-apps-sdk": "^3.0.0",
"@ledgerhq/hw-app-eth": "^5.49.0",
"@ledgerhq/hw-transport-u2f": "^5.21.0",
"@ledgerhq/hw-transport-webusb": "5.53.0",
"@portis/web3": "^4.0.0",
"@shapeshiftoss/hdwallet-core": "^1.15.2",
"@shapeshiftoss/hdwallet-keepkey": "^1.15.2",
"@shapeshiftoss/hdwallet-keepkey-webusb": "^1.15.2",
"@toruslabs/torus-embed": "^1.10.11",
"@walletconnect/web3-provider": "^1.4.1",
"authereum": "^0.1.12",
"bignumber.js": "^9.0.0",
"bnc-sdk": "^3.4.1",
"bowser": "^2.10.0",
"eth-lattice-keyring": "^0.2.7",
"eth-provider": "^0.6.1",
"eth-sig-util": "^3.0.1",
"ethereumjs-tx": "^2.1.2",
"ethereumjs-util": "^7.0.3",
"fortmatic": "^2.2.1",
"hdkey": "^2.0.1",
"regenerator-runtime": "^0.13.7",
"trezor-connect": "^8.1.9",
"walletlink": "^2.1.0",
"web3-provider-engine": "^15.0.4"
},
"resolutions": {
"authereum/web3-utils/underscore": "^1.12.1",
"authereum/ethers/elliptic": "^6.5.3",
"@portis/web3/pocket-js-core/axios": "^0.21.1"
}
}