-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.09 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": "@alephium/walletconnect-ethereum-provider",
"description": "Ethereum Provider for WalletConnect Protocol",
"version": "0.1.1",
"author": "WalletConnect, Inc. <walletconnect.com>",
"homepage": "https://github.com/alephium/walletconnect-ethereum-provider/",
"repository": {
"type": "git",
"url": "https://github.com/alephium/walletconnect-ethereum-provider",
"directory": "."
},
"license": "Apache-2.0",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"unpkg": "dist/index.umd.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"module": "./dist/index.es.js",
"default": "./dist/index.cjs.js"
}
},
"files": [
"dist"
],
"keywords": [
"wallet",
"walletconnect"
],
"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:pre": "rm -rf ./test/tmp && mkdir ./test/tmp",
"test": "npm run test:pre; vitest run --dir test",
"lint": "eslint -c '../../.eslintrc' --fix './src/**/*.ts'",
"prettier": "prettier --check '{src,test}/**/*.{js,ts,jsx,tsx}'"
},
"dependencies": {
"@walletconnect/jsonrpc-http-connection": "^1.0.7",
"@walletconnect/jsonrpc-provider": "1.0.13",
"@walletconnect/jsonrpc-types": "^1.0.2",
"@walletconnect/jsonrpc-utils": "^1.0.7",
"@walletconnect/logger": "^2.0.1",
"@walletconnect/modal": "2.4.3",
"@walletconnect/sign-client": "2.10.6",
"@walletconnect/types": "2.10.6",
"@walletconnect/utils": "2.10.6",
"events": "^3.3.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "22.0.2",
"@rollup/plugin-node-resolve": "13.3.0",
"@types/lodash": "^4.14.202",
"cosmos-wallet": "^1.2.0",
"ethereum-test-network": "0.1.6",
"ethers": "5.7.0",
"rollup": "2.78.0",
"rollup-plugin-esbuild": "4.9.3",
"typescript": "4.7.4",
"uint8arrays": "^3.0.0",
"web3": "1.7.5",
"vitest": "^0.22.1"
}
}