-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 3.03 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": "@walletconnect/sign-client",
"description": "Sign Client for WalletConnect Protocol",
"version": "2.0.0-beta.101",
"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"
],
"keywords": [
"wallet",
"walletconnect"
],
"scripts": {
"clean": "rm -rf dist",
"build:pre": "run-s clean",
"help": "tsc --help",
"build:cjs": "npx tsc -p tsconfig.cjs.json",
"build:umd": "webpack",
"build:esm": "npx tsc -p tsconfig.esm.json",
"build": "run-s build:pre build:cjs build:esm build:umd",
"test:pre": "rm -rf ./test/test.db",
"test:run": "env TS_NODE_PROJECT=\"tsconfig.cjs.json\" mocha --parallel --timeout 10000 --exit --r ts-node/register ./test/**/*.spec.ts",
"test": "run-s test:pre test:run",
"watch": "tsc -p tsconfig.json --watch",
"lint": "eslint -c '../../.eslintrc' --fix './src/**/*.ts'"
},
"dependencies": {
"@walletconnect/core": "^2.0.0-beta.101",
"@walletconnect/encoding": "^1.0.1",
"@walletconnect/events": "^1.0.0",
"@walletconnect/heartbeat": "^1.0.0",
"@walletconnect/jsonrpc-provider": "^1.0.3",
"@walletconnect/jsonrpc-utils": "^1.0.1",
"@walletconnect/jsonrpc-ws-connection": "git+https://github.com/lautaro-osacar/jsonrpc-ws-connection.git#maxListeners",
"@walletconnect/keyvaluestorage": "^1.0.0",
"@walletconnect/logger": "^1.0.0",
"@walletconnect/relay-api": "^1.0.2",
"@walletconnect/safe-json": "^1.0.0",
"@walletconnect/time": "^1.0.1",
"@walletconnect/types": "^2.0.0-beta.101",
"@walletconnect/utils": "^2.0.0-beta.101",
"ws": "^8.3.0"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/node": "^7.12.1",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@babel/register": "^7.12.1",
"@types/chai": "^4.2.14",
"@types/chai-as-promised": "^7.1.0",
"@types/jest": "^22.2.3",
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.2",
"@types/pino": "^6.3.3",
"@types/sinon": "^4.3.1",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"better-sqlite3": "7.5.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"core-js": "^3.6.5",
"eslint": "^5.16.0",
"eslint-config-prettier": "^6.10.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^8.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"sinon": "^9.2.2",
"ts-node": "^9.0.0",
"typescript": "^3.7.5",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
}
}