@walletconnect/ethereum-provider 1.6.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,76 @@
1
+ {
2
+ "name": "@walletconnect/ethereum-provider",
3
+ "version": "1.6.6",
4
+ "description": "Ethereum Provider for WalletConnect",
5
+ "scripts": {
6
+ "clean": "rm -rf dist",
7
+ "build:pre": "run-s clean",
8
+ "build:cjs": "npx tsc -p tsconfig.cjs.json",
9
+ "build:esm": "npx tsc -p tsconfig.esm.json",
10
+ "build:umd": "webpack",
11
+ "build": "run-s build:pre build:cjs build:esm build:umd",
12
+ "test": "env TS_NODE_PROJECT=\"tsconfig.cjs.json\" mocha -r ts-node/register ./test/**/*.spec.ts --exit"
13
+ },
14
+ "keywords": [
15
+ "wallet",
16
+ "walletconnect",
17
+ "ethereum",
18
+ "jsonrpc",
19
+ "mobile",
20
+ "qrcode",
21
+ "web3",
22
+ "crypto",
23
+ "cryptocurrency",
24
+ "dapp"
25
+ ],
26
+ "author": "WalletConnect <walletconnect.org>",
27
+ "homepage": "https://github.com/WalletConnect/walletconnect-monorepo/",
28
+ "license": "LGPL-3.0",
29
+ "main": "dist/cjs/index.js",
30
+ "browser": "dist/esm/index.js",
31
+ "types": "dist/cjs/index.d.ts",
32
+ "unpkg": "dist/umd/index.min.js",
33
+ "files": [
34
+ "dist"
35
+ ],
36
+ "repository": {
37
+ "type": "git",
38
+ "url": "git+https://github.com/walletconnect/walletconnect-monorepo.git"
39
+ },
40
+ "bugs": {
41
+ "url": "https://github.com/walletconnect/walletconnect-monorepo/issues"
42
+ },
43
+ "devDependencies": {
44
+ "@babel/cli": "7.8.3",
45
+ "@babel/core": "7.8.3",
46
+ "@babel/node": "7.8.3",
47
+ "@babel/polyfill": "7.8.3",
48
+ "@babel/preset-env": "7.8.3",
49
+ "@babel/preset-typescript": "7.8.3",
50
+ "@babel/register": "7.8.3",
51
+ "@types/chai": "4.2.14",
52
+ "@types/jest": "22.2.3",
53
+ "@types/mocha": "8.0.4",
54
+ "@types/node": "12.12.14",
55
+ "chai": "4.2.0",
56
+ "ethereum-test-network": "0.1.6",
57
+ "ethers": "5.3.1",
58
+ "mocha": "8.2.1",
59
+ "npm-run-all": "4.1.5",
60
+ "ts-node": "9.0.0",
61
+ "web3": "1.3.5",
62
+ "webpack": "4.41.5",
63
+ "webpack-cli": "3.3.10"
64
+ },
65
+ "dependencies": {
66
+ "@walletconnect/client": "^1.6.6",
67
+ "@walletconnect/jsonrpc-http-connection": "^1.0.0",
68
+ "@walletconnect/jsonrpc-provider": "^1.0.0",
69
+ "@walletconnect/signer-connection": "^1.6.6",
70
+ "@walletconnect/types": "^1.6.6",
71
+ "@walletconnect/utils": "^1.6.6",
72
+ "eip1193-provider": "1.0.1",
73
+ "eventemitter3": "4.0.7"
74
+ },
75
+ "gitHead": "165f7993c2acc907c653c02847fb02721052c6e7"
76
+ }