-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.59 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.59 KB
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": "@walletconnect/jsonrpc-ws-connection",
"description": "WS Connection for JSON-RPC",
"version": "1.0.16",
"author": "WalletConnect, Inc. <walletconnect.com>",
"license": "MIT",
"homepage": "https://github.com/WalletConnect/walletconnect-utils/",
"repository": {
"type": "git",
"url": "git+https://github.com/WalletConnect/walletconnect-utils.git"
},
"bugs": {
"url": "https://github.com/WalletConnect/walletconnect-utils/issues"
},
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"browser": "dist/index.es.js",
"unpkg": "dist/index.umd.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"keywords": [
"json",
"rpc",
"jsonrpc",
"json-rpc",
"tools",
"types",
"utils",
"provider"
],
"scripts": {
"clean": "rm -rf dist",
"build:pre": "npm run clean",
"build:types": "tsc",
"build:source": "rollup --config rollup.config.js",
"build": "npm run build:pre && npm run build:source && npm run build:types",
"test": "env TS_NODE_PROJECT=\"tsconfig.cjs.json\" mocha --timeout 5000 --exit -r ts-node/register ./test/**/*.test.ts",
"lint": "eslint -c '../../.eslintrc' --fix './src/**/*.ts'",
"npm-publish:latest": "npm publish --access public --tag latest",
"npm-publish:canary": "npm publish --access public --tag canary",
"prepublishOnly": "npm run test && npm run build",
"prettier": "prettier --config ../../.prettierrc --check {src,test}/**/*.ts",
"format": "prettier --config ../../.prettierrc --write {src,test}/**/*.ts"
},
"dependencies": {
"@walletconnect/jsonrpc-utils": "^1.0.6",
"@walletconnect/safe-json": "^1.0.2",
"events": "^3.3.0",
"ws": "^8.0.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": "^26.0.15",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.7",
"@walletconnect/relay-auth": "^1.0.3",
"@walletconnect/utils": "^2.1.3",
"@walletconnect/relay-api": "^1.0.9",
"@walletconnect/safe-json": "^1.0.2",
"@walletconnect/time": "^1.0.2",
"@walletconnect/window-getters": "^1.0.1",
"@walletconnect/window-metadata": "^1.0.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"core-js": "^3.6.5",
"mocha": "^10.8.2",
"npm-run-all": "^4.1.5",
"webpack": "^5.103.0",
"webpack-cli": "^5.1.4"
}
}