-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
130 lines (130 loc) · 3.5 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"version": "0.8.70",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"gendocs": "typedoc",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "@routerprotocol/router-chain-sdk-ts",
"author": "Lord Venky",
"module": "dist/router-chain-ts-sdk.esm.js",
"size-limit": [
{
"path": "dist/router-chain-ts-sdk.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/router-chain-ts-sdk.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "^8.0.1",
"@types/google-protobuf": "^3.15.6",
"@types/pako": "^2.0.0",
"@types/secp256k1": "^4.0.3",
"@types/text-encoding": "^0.0.36",
"husky": "^8.0.1",
"size-limit": "^8.0.1",
"ts-node": "^10.9.1",
"tsdx": "^0.14.1",
"tslib": "^2.4.0",
"typedoc": "^0.23.23",
"typedoc-plugin-markdown": "^3.14.0",
"typescript": "^4.8.2"
},
"dependencies": {
"@alch/alchemy-web3": "1.4.7",
"@apollo/client": "^3.5.8",
"@bufbuild/protobuf": "^1.0.0",
"@cosmjs/amino": "^0.29.0",
"@cosmjs/crypto": "^0.29.2",
"@cosmjs/launchpad": "0.27.1",
"@cosmjs/proto-signing": "0.28.4",
"@cosmjs/stargate": "^0.29.2",
"@cosmostation/extension-client": "^0.1.11-alpha.0",
"@ethereumjs/common": "^2.6.3",
"@ethereumjs/tx": "^3.5.1",
"@ethersproject/bytes": "^5.7.0",
"@improbable-eng/grpc-web": "^0.15.0",
"@improbable-eng/grpc-web-node-http-transport": "^0.15.0",
"@keplr-wallet/cosmos": "^0.11.17",
"@keplr-wallet/types": "^0.11.17",
"@ledgerhq/hw-app-eth": "6.27.1",
"@ledgerhq/hw-transport": "6.27.1",
"@ledgerhq/hw-transport-u2f": "^5.36.0-deprecated",
"@ledgerhq/hw-transport-webhid": "6.27.1",
"@ledgerhq/hw-transport-webusb": "6.27.1",
"@metamask/eth-sig-util": "^7.0.3",
"@routerprotocol/chain-api": "^1.2.3",
"@types/eth-sig-util": "^2.1.1",
"@types/ethereumjs-util": "^6.1.0",
"@types/hdkey": "^2.0.1",
"@types/ledgerhq__hw-transport-webusb": "^4.70.1",
"@types/lodash.values": "^4.3.6",
"@walletconnect/web3-provider": "^1.7.8",
"axios": "^0.21.1",
"bech32": "^2.0.0",
"bignumber.js": "^9.0.1",
"bip39": "^3.0.4",
"copyfiles": "^2.4.1",
"cosmjs-types": "^0.7.1",
"crypto": "^1.0.1",
"eip1193-provider": "^1.0.1",
"eth-sig-util": "^3.0.1",
"ethereumjs-abi": "^0.6.8",
"ethereumjs-util": "^7.1.4",
"ethers": "^5.6.4",
"ethjs-util": "^0.1.6",
"fs": "^0.0.1-security",
"google-protobuf": "^3.20.1",
"graphql": "^16.3.0",
"graphql-tag": "^2.12.6",
"hdkey": "^2.0.1",
"http-status-codes": "^2.2.0",
"js-sha3": "^0.8.0",
"jscrypto": "1.0.3",
"jsonschema": "^1.4.0",
"keccak256": "^1.0.6",
"link-module-alias": "^1.2.0",
"lodash": "^4.17.21",
"lodash.values": "^4.3.0",
"pako": "^2.0.4",
"rxjs": "^7.5.5",
"secp256k1": "^4.0.3",
"sha3": "^2.1.4",
"shx": "^0.3.2",
"snakecase-keys": "^5.4.1",
"store2": "^2.12.0",
"text-encoding": "^0.7.0",
"util": "^0.12.4",
"web3": "^1.8.1",
"web3-core": "^1.8.1"
}
}