-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.19 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
{
"name": "tnb-hd-wallet",
"version": "1.1.3",
"description": "A hd wallet that derives public and private keys from a 12 word mnemonic phrase with support",
"files": [
"/dist"
],
"main": "./dist/cjs/index.js",
"types": "./dist/cjs/index.d.ts",
"module": "./dist/esm/index.js",
"scripts": {
"prepublishOnly": "tsc",
"tsc": "rm -rvf dist/cjs && tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/tomijaga/Tnb-HD-Wallet.git"
},
"bugs": {
"url": "https://github.com/tomijaga/Tnb-HD-Wallet/issues"
},
"keywords": [
"thenewboston",
"bitcoin",
"ethereum",
"slip10",
"bip32",
"bip44",
"mnemonic",
"hd",
"wallet",
"hierarchical",
"deterministic",
"crypto"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^15.12.2",
"jest": "^27.0.4",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"typescript": "^4.3.4"
},
"dependencies": {
"axios": "^0.21.1",
"bip32": "^2.0.6",
"bip39": "^3.0.4",
"bs58check-ts": "0.0.7",
"ed25519-hd-key": "^1.2.0",
"ethereum-public-key-to-address": "0.0.5"
}
}