-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
48 lines (48 loc) · 1.28 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/torus-connector",
"version": "0.4.9",
"description": "Package for connecting with Ethereum wallets for dApp",
"keywords": [
"ethereum",
"web3",
"dapp",
"torus"
],
"author": "akropolis.io",
"homepage": "https://github.com/akropolisio/web3-wallets-kit/tree/master/packages/torus-connector#readme",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/torus-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": {
"@toruslabs/torus-embed": "^1.13.6",
"@types/create-hash": "^1.0.0",
"@types/keccak": "^3.0.1",
"@types/readable-stream": "^2.0.0",
"@web3-wallets-kit/abstract-connector": "^0.3.9",
"@web3-wallets-kit/types": "^0.5.9"
},
"devDependencies": {
"@types/web3": "1.0.20"
}
}