-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.03 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
{
"name": "@coolwallet/web3-subprovider",
"version": "0.1.0-beta.0",
"description": "Web3 wrapper on coolwallet sdk",
"main": "lib/index.js",
"scripts": {
"build:types": "tsc --emitDeclarationOnly",
"build:ts": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
"build": "npm run build:types && npm run build:ts"
},
"keywords": [
"hardware wallet",
"web3",
"coolwallet",
"ethereum",
"signing",
"coolbitx",
"subprovider",
"provider"
],
"author": "coolwallet-team",
"license": "ISC",
"dependencies": {
"hdkey": "^1.1.1",
"ethereumjs-util": "6.2.0",
"web3-provider-engine": "^15.0.4"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/preset-typescript": "^7.7.7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CoolBitX-Technology/coolwallet3-sdk.git"
},
"bugs": {
"url": "https://github.com/CoolBitX-Technology/coolwallet3-sdk/issues"
}
}