This repository has been archived by the owner on Nov 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
111 lines (111 loc) · 3.2 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@dsrv/kms",
"version": "0.2.7",
"description": "blockchain key managament system",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"src/**/*",
"lib/**/*"
],
"scripts": {
"build": "tsc",
"prettier": "prettier --write --config ./.prettierrc \"**/*.{ts,tsx}\"",
"lint": "eslint './src/**/*.{ts,tsx}'",
"lint:fix": "eslint --fix './src/**/*.{ts,tsx}'"
},
"repository": "https://github.com/dsrvlabs/kms.git",
"keywords": [
"dsrv",
"blockchain",
"ledger",
"signer",
"kms",
"key management system",
"keystore",
"store",
"mnemonic",
"bip39",
"bip32",
"bip44"
],
"author": "daoauth",
"contributors": [
{
"name": "kwklly",
"url": "https://github.com/kwklly"
}
],
"license": "MIT",
"dependencies": {
"@cosmjs/amino": "^0.26.0",
"@cosmjs/encoding": "^0.26.5",
"@cosmjs/math": "^0.26.5",
"@cosmjs/proto-signing": "^0.26.4",
"@cosmjs/utils": "^0.26.5",
"@ethereumjs/tx": "^3.3.2",
"@ledgerhq/errors": "^6.2.0",
"@ledgerhq/hw-app-eth": "^6.14.0",
"@ledgerhq/hw-app-tezos": "^6.3.0",
"@ledgerhq/hw-transport": "^6.3.0",
"@ledgerhq/hw-transport-web-ble": "^6.3.0",
"@ledgerhq/hw-transport-webusb": "^6.3.0",
"@onflow/ledger": "^0.1.0",
"@onflow/util-encode-key": "^0.0.2",
"@polkadot/util-crypto": "^6.10.1",
"@solana/web3.js": "^1.20.0",
"@terra-money/ledger-terra-js": "^1.1.0",
"@terra-money/terra.js": "^3.0.1",
"@types/node-jose": "^1.1.7",
"@zondax/ledger-polkadot": "^0.14.0",
"argon2-browser": "^1.18.0",
"base58check": "^2.0.0",
"bech32": "^2.0.0",
"bignumber.js": "^9.0.1",
"bip32": "^2.0.6",
"bip39": "^3.0.4",
"blake2b": "^2.1.3",
"bn.js": "^5.2.0",
"bs58": "^4.0.1",
"bs58check": "^2.1.2",
"cosmjs-types": "^0.2.1",
"crypto-js": "^4.0.0",
"did-jwt": "^5.11.0",
"did-resolver": "^3.1.2",
"elliptic": "^6.5.4",
"ethereumjs-util": "^7.0.10",
"js-sha256": "^0.9.0",
"ledger-cosmos-js": "^2.1.8",
"long": "^5.2.0",
"near-api-js": "^0.41.0",
"near-hd-key": "^1.2.1",
"near-ledger-js": "^0.2.0",
"node-jose": "^2.0.0",
"secp256k1": "^4.0.2",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@celo-tools/celo-ethers-wrapper": "^0.0.5",
"@cosmjs/crypto": "^0.26.4",
"@cosmjs/stargate": "^0.26.4",
"@ledgerhq/hw-transport-node-hid": "^6.3.0",
"@types/argon2-browser": "^1.18.1",
"@types/bs58": "^4.0.1",
"@types/bs58check": "^2.1.0",
"@types/crypto-js": "^4.0.2",
"@types/elliptic": "^6.4.12",
"@types/ledgerhq__hw-transport-node-hid": "^4.22.2",
"@types/ledgerhq__hw-transport-webusb": "^4.70.1",
"@types/secp256k1": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^7.29.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"ethers": "^5.5.1",
"prettier": "^2.3.2",
"typescript": "^4.3.4"
}
}