forked from kaonone/web3-wallets-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.21 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
{
"name": "@web3-wallets-kit/bitski-connector",
"version": "0.0.10",
"description": "Package for connecting with Ethereum wallets for dApp",
"keywords": [
"ethereum",
"web3",
"dapp",
"rxjs",
"walletconnect",
"metamask",
"bitski",
"fortmatic"
],
"author": "Dmitriy Serdtsev <[email protected]>",
"homepage": "https://github.com/akropolisio/web3-wallets-kit/tree/master/packages/bitski-connector#readme",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/bitski-connector.esm.js",
"files": [
"dist",
"assets",
"src"
],
"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",
"prepare": "yarn build"
},
"bugs": {
"url": "https://github.com/akropolisio/web3-wallets-kit/issues"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@web3-wallets-kit/abstract-connector": "^0.1.0",
"@web3-wallets-kit/types": "^0.2.0",
"bitski": "^0.10.6"
}
}