forked from thorswap/SwapKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.14 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
{
"author": "sequel",
"dependencies": {
"@ledgerhq/hw-app-btc": "8.1.1",
"@ledgerhq/hw-app-cosmos": "6.27.13",
"@ledgerhq/hw-app-eth": "6.33.1",
"@ledgerhq/hw-transport": "6.28.2",
"@ledgerhq/hw-transport-webusb": "6.27.13",
"@sequelfinance/helpers": "workspace:*",
"@sequelfinance/swapkit-entities": "workspace:*",
"@sequelfinance/types": "workspace:*",
"base64-js": "1.5.1",
"bech32": "2.0.0",
"bn.js": "5.2.1",
"crypto-js": "4.1.1",
"long": "4.0.0",
"ripemd160": "2.0.2",
"secp256k1": "5.0.0",
"sort-keys": "5.0.0"
},
"description": "Fork of THORSwap Lib ledger",
"devDependencies": {
"@cosmos-client/core": "0.45.13",
"@ethersproject/abstract-signer": "5.7.0",
"@ethersproject/bignumber": "5.7.0",
"@ethersproject/bytes": "5.7.0",
"@ethersproject/contracts": "5.7.0",
"@ethersproject/properties": "5.7.0",
"@ethersproject/providers": "5.7.2",
"@ethersproject/transactions": "5.7.0",
"@internal/config": "workspace:*",
"@sequelfinance/toolbox-cosmos": "workspace:*",
"@sequelfinance/toolbox-evm": "workspace:*",
"@sequelfinance/toolbox-utxo": "workspace:*",
"@types/bchaddrjs": "0.4.0",
"@types/bn.js": "5.1.1",
"@types/crypto-js": "4.1.1",
"@types/elliptic": "6.4.14",
"@types/node": "18.16.1",
"@types/ripemd160": "2.0.0",
"@vitest/coverage-c8": "0.30.1",
"bchaddrjs": "0.5.2",
"bitcoinjs-lib": "5.2.0",
"coininfo": "5.2.1",
"cosmos-client": "0.39.2",
"elliptic": "6.5.4",
"vite": "4.3.3",
"vitest": "0.30.1"
},
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"src/",
"dist/"
],
"homepage": "https://github.com/SequelFinance/SwapKit",
"license": "MIT",
"main": "./dist/index.cjs",
"module": "./dist/index.es.js",
"name": "@sequelfinance/ledger",
"packageManager": "[email protected]",
"peerDependencies": {
"@cosmos-client/core": "0.45.13",
"@ethersproject/abstract-signer": "^5.7.0",
"@ethersproject/bignumber": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/contracts": "^5.7.0",
"@ethersproject/properties": "^5.7.0",
"@ethersproject/providers": "^5.7.0",
"@ethersproject/transactions": "^5.7.0",
"@sequelfinance/toolbox-cosmos": "workspace:*",
"@sequelfinance/toolbox-evm": "workspace:*",
"@sequelfinance/toolbox-utxo": "workspace:*",
"@types/bchaddrjs": "0.4.0",
"bchaddrjs": "0.5.2",
"bitcoinjs-lib": "5.2.0",
"coininfo": "^5.2.1",
"cosmos-client": "0.39.2",
"elliptic": "^6.5.4"
},
"publishConfig": {
"access": "public"
},
"react-native": "./src/index.ts",
"repository": "https://github.com/SequqlFinance/SwapKit.git",
"scripts": {
"build": "yarn clean; echo 'Build ledger 🛠'; vite build; echo 'Build succeeded ledger ✅\n'",
"clean": "rm -rf dist",
"lint": "eslint ./ --ext .ts,.tsx --fix; tsc --noEmit",
"test": "echo 'vitest'",
"test:coverage": "echo 'vitest run --coverage'"
},
"type": "module",
"types": "./dist/index.d.ts",
"version": "0.0.1-development.11"
}