-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
43 lines (43 loc) · 1.17 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
{
"name": "@web3-wallets-kit/connect-wallet-connector",
"version": "0.3.9",
"description": "Package for connecting with Ethereum wallets for dApp",
"keywords": [
"ethereum",
"web3",
"dapp",
"rxjs",
"walletconnect"
],
"author": "akropolis.io",
"homepage": "https://github.com/akropolisio/web3-wallets-kit/tree/master/packages/connect-wallet-connector#readme",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/connect-wallet-connector.esm.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/akropolisio/web3-wallets-kit.git"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "jest -c ../../jest.config.js",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx && tsc --noEmit --pretty --incremental false",
"prepare": "yarn build"
},
"bugs": {
"url": "https://github.com/akropolisio/web3-wallets-kit/issues"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@walletconnect/web3-provider": "^1.6.6",
"@web3-wallets-kit/abstract-connector": "^0.3.9",
"@web3-wallets-kit/types": "^0.5.9"
}
}