forked from blocknative/web3-onboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.11 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
{
"name": "web3-onboard-monorepo",
"version": "2.24.19",
"private": true,
"workspaces": {
"packages": [
"./packages/*"
],
"nohoist": [
"**/react",
"**/react-dom",
"**/csstype"
]
},
"description": "Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.",
"keywords": [
"Ethereum",
"Web3",
"EVM",
"dapp",
"Multichain",
"Wallet",
"Transaction",
"Provider",
"Hardware Wallet",
"Notifications",
"React",
"Svelte",
"Vue",
"Next",
"Nuxt",
"MetaMask",
"Coinbase",
"WalletConnect",
"Ledger",
"Trezor",
"Connect Wallet",
"Ethereum Hooks",
"Blocknative",
"Mempool",
"pending",
"confirmed",
"Injected Wallet",
"Crypto",
"Crypto Wallet",
"Sequence"
],
"repository": {
"type": "git",
"url": "https://github.com/blocknative/web3-onboard.git",
"directory": "packages/core"
},
"homepage": "https://onboard.blocknative.com",
"bugs": "https://github.com/blocknative/web3-onboard/issues",
"scripts": {
"install-m1-mac": "yarn install --ignore-optional",
"format": "prettier --write 'packages/**/*.ts'",
"dev": "yarn wsrun dev",
"build": "yarn wsrun --serial build",
"type-check": "yarn wsrun type-check",
"file-check": "yarn install --check-files",
"check-all": "yarn build && yarn file-check && yarn type-check",
"test-playwright": "cd test && yarn && yarn playwright test"
},
"devDependencies": {
"prettier": "^2.4.1",
"prettier-plugin-svelte": "^2.4.0",
"typescript": "^4.5.5"
},
"dependencies": {
"wsrun": "^5.2.4"
},
"resolutions": {
"minimist": "^1.2.6",
"axios": "^0.21.2",
"async": "^2.6.4",
"follow-redirects": "1.14.9",
"ansi-regex": "^4.1.1",
"got": "^11.8.5"
}
}