forked from WalletConnect/walletconnect-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.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
{
"name": "@walletconnect/socket-transport",
"version": "1.8.0",
"description": "Socket Transport for WalletConnect",
"scripts": {
"clean": "rm -rf dist",
"build:pre": "run-s clean",
"build:cjs": "npx tsc -p tsconfig.cjs.json",
"build:esm": "npx tsc -p tsconfig.esm.json",
"build:umd": "webpack",
"build": "env NODE_OPTIONS=--openssl-legacy-provider run-s build:pre build:cjs build:esm build:umd",
"test": "env TS_NODE_PROJECT=\"tsconfig.cjs.json\" mocha -r ts-node/register ./test/**/*.spec.ts --exit"
},
"keywords": [
"wallet",
"walletconnect",
"ethereum",
"jsonrpc",
"mobile",
"qrcode",
"web3",
"crypto",
"cryptocurrency",
"dapp"
],
"author": "WalletConnect, Inc. <walletconnect.com>",
"homepage": "https://github.com/WalletConnect/walletconnect-monorepo/",
"license": "Apache-2.0",
"main": "dist/cjs/index.js",
"browser": "dist/esm/index.js",
"types": "dist/cjs/index.d.ts",
"unpkg": "dist/umd/index.min.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/awesome-algorand/walletconnect-socket-transport.git"
},
"bugs": {
"url": "https://github.com/awesome-algorand/walletconnect-socket-transport/issues"
},
"devDependencies": {
"@babel/cli": "7.8.3",
"@babel/core": "7.18.6",
"@babel/node": "7.8.3",
"@babel/polyfill": "7.8.3",
"@babel/preset-env": "7.8.3",
"@babel/preset-typescript": "7.8.3",
"@babel/register": "7.8.3",
"@types/chai": "4.2.14",
"@types/jest": "22.2.3",
"@types/lodash.isnumber": "3.0.6",
"@types/mocha": "8.0.4",
"@types/node": "12.12.14",
"chai": "4.2.0",
"mocha": "10.5.2",
"npm-run-all": "4.1.5",
"ts-node": "10.8.1",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"@walletconnect/types": "^1.8.0",
"@walletconnect/utils": "^1.8.0",
"ws": "7.5.10"
}
}