forked from thorswap/SwapKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.91 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
{
"author": "sequel",
"dependencies": {
"@sequelfinance/helpers": "workspace:*",
"@sequelfinance/swapkit-api": "workspace:*",
"@sequelfinance/swapkit-entities": "workspace:*",
"@sequelfinance/types": "workspace:*",
"base64-js": "1.5.1",
"bech32": "2.0.0",
"bech32-buffer": "0.2.1",
"bip32": "2.0.6",
"bip39": "3.1.0",
"bn.js": "5.2.1",
"crypto-js": "4.1.1",
"elliptic": "6.5.4",
"long": "4.0.0",
"protobufjs": "7.2.3",
"protocol-buffers-encodings": "1.2.0",
"tiny-secp256k1": "1.1.6"
},
"description": "Fork of THORSwap Lib toolbox-cosmos",
"devDependencies": {
"@cosmos-client/core": "0.45.13",
"@internal/config": "workspace:*",
"@types/crypto-js": "4.1.1",
"@types/elliptic": "6.4.14",
"@types/tiny-secp256k1": "1.0.0",
"@vitest/coverage-c8": "0.30.1",
"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/toolbox-cosmos",
"packageManager": "[email protected]",
"peerDependencies": {
"@cosmos-client/core": "^0.45.13"
},
"publishConfig": {
"access": "public"
},
"react-native": "./src/index.ts",
"repository": "https://github.com/SequelFinance/SwapKit.git",
"scripts": {
"build": "yarn clean; echo 'Build toolbox-cosmos 🛠'; vite build && echo 'Build succeeded toolbox-cosmos ✅\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",
"typings": "./dist/index.d.ts",
"version": "0.0.1-development.3"
}