This repository has been archived by the owner on Aug 27, 2021. It is now read-only.
forked from blocknative/web3-onboard
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
82 lines (82 loc) · 2.49 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
{
"name": "@matterlabs/zk-wallet-onboarding",
"version": "1.18.5",
"description": "Onboard zkSync users users to web3 by allowing them to select a wallet, get that wallet ready to transact and have access to synced wallet state. Forked from @bnc-onboard",
"keywords": [
"zksync",
"ethereum",
"web3",
"zkwallet",
"wallet"
],
"main": "dist/cjs/onboard.js",
"module": "dist/esm/onboard.js",
"typings": "dist/src/onboard.d.ts",
"files": [
"dist"
],
"author": {
"name": "Matter Labs",
"email": "s.beresnev@matterlabs.dev",
"url": "https://zksync.io/contact.html"
},
"homepage": "https://zksync.io/",
"repository": {
"type": "git",
"url": "https://github.com/matter-labs/onboard"
},
"license": "MIT",
"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": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"prettier": "^2.0.5",
"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": {
"@ledgerhq/hw-app-eth": "^5.21.0",
"@ledgerhq/hw-transport-u2f": "^5.36.0-deprecated",
"@portis/web3": "^2.0.0-beta.57",
"@toruslabs/torus-embed": "^1.9.2",
"@unilogin/provider": "^0.6.1",
"@walletconnect/web3-provider": "^1.3.1",
"authereum": "^0.1.12",
"bignumber.js": "^9.0.0",
"bnc-sdk": "^2.1.4",
"bowser": "^2.10.0",
"eth-lattice-keyring": "^0.2.4",
"ethereumjs-tx": "^2.1.2",
"ethereumjs-util": "^7.0.3",
"fortmatic": "^2.2.1",
"generator-svelte": "2.2.9",
"hdkey": "^2.0.1",
"node-fetch": "^2.6.1",
"regenerator-runtime": "^0.13.7",
"squarelink": "^1.1.4",
"trezor-connect": "^8.1.9",
"walletlink": "^2.0.2",
"web3-provider-engine": "^15.0.4"
},
"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"
}
}