@chainflip/utils 0.7.4 → 0.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -36,25 +36,40 @@ __export(chainflip_exports, {
36
36
  });
37
37
  module.exports = __toCommonJS(chainflip_exports);
38
38
  var chainflipAssets = [
39
+ // Ethereum
39
40
  "Usdc",
40
41
  "Usdt",
41
42
  "Flip",
42
- "Dot",
43
43
  "Eth",
44
+ // Polkadot
45
+ "Dot",
46
+ // Bitcoin
44
47
  "Btc",
48
+ // Arbitrum
45
49
  "ArbUsdc",
46
50
  "ArbEth",
51
+ // Solana
47
52
  "Sol",
48
- "SolUsdc"
53
+ "SolUsdc",
54
+ // Assethub
55
+ "HubDot",
56
+ "HubUsdt",
57
+ "HubUsdc"
49
58
  ];
50
59
  var rpcAssets = ["USDC", "USDT", "FLIP", "DOT", "ETH", "BTC", "SOL"];
51
60
  var baseChainflipAssets = chainflipAssets.filter(
52
61
  (asset) => asset !== "Usdc"
53
62
  );
54
63
  var chainflipEvmChains = ["Ethereum", "Arbitrum"];
55
- var chainflipChains = [...chainflipEvmChains, "Bitcoin", "Polkadot", "Solana"];
64
+ var chainflipChains = [
65
+ ...chainflipEvmChains,
66
+ "Bitcoin",
67
+ "Polkadot",
68
+ "Solana",
69
+ "Assethub"
70
+ ];
56
71
  var chainflipNetworks = ["backspin", "sisyphos", "perseverance", "mainnet"];
57
- var addressTypes = ["Eth", "Btc", "Dot", "Arb", "Sol"];
72
+ var addressTypes = ["Eth", "Btc", "Dot", "Arb", "Sol", "Hub"];
58
73
  function readAssetValue(map, asset) {
59
74
  const chainValues = map[assetConstants[asset].chain];
60
75
  return chainValues[assetConstants[asset].rpcAsset];
@@ -109,6 +124,21 @@ var assetConstants = {
109
124
  chain: "Solana",
110
125
  rpcAsset: "USDC",
111
126
  decimals: 6
127
+ },
128
+ HubDot: {
129
+ chain: "Assethub",
130
+ rpcAsset: "DOT",
131
+ decimals: 10
132
+ },
133
+ HubUsdc: {
134
+ chain: "Assethub",
135
+ rpcAsset: "USDC",
136
+ decimals: 6
137
+ },
138
+ HubUsdt: {
139
+ chain: "Assethub",
140
+ rpcAsset: "USDT",
141
+ decimals: 6
112
142
  }
113
143
  };
114
144
  var chainConstants = {
@@ -141,6 +171,12 @@ var chainConstants = {
141
171
  gasAsset: "Sol",
142
172
  addressType: "Sol",
143
173
  blockTimeSeconds: 0.8
174
+ },
175
+ Assethub: {
176
+ assets: ["HubDot", "HubUsdt", "HubUsdc"],
177
+ gasAsset: "HubDot",
178
+ addressType: "Hub",
179
+ blockTimeSeconds: 12
144
180
  }
145
181
  };
146
182
  var internalAssetToRpcAsset = {
@@ -153,14 +189,18 @@ var internalAssetToRpcAsset = {
153
189
  ArbUsdc: { chain: "Arbitrum", asset: "USDC" },
154
190
  ArbEth: { chain: "Arbitrum", asset: "ETH" },
155
191
  Sol: { chain: "Solana", asset: "SOL" },
156
- SolUsdc: { chain: "Solana", asset: "USDC" }
192
+ SolUsdc: { chain: "Solana", asset: "USDC" },
193
+ HubDot: { chain: "Assethub", asset: "DOT" },
194
+ HubUsdt: { chain: "Assethub", asset: "USDT" },
195
+ HubUsdc: { chain: "Assethub", asset: "USDC" }
157
196
  };
158
197
  var chainContractId = {
159
198
  Ethereum: 1,
160
199
  Polkadot: 2,
161
200
  Bitcoin: 3,
162
201
  Arbitrum: 4,
163
- Solana: 5
202
+ Solana: 5,
203
+ Assethub: 6
164
204
  };
165
205
  var assetContractId = {
166
206
  Eth: 1,
@@ -172,7 +212,10 @@ var assetContractId = {
172
212
  ArbEth: 6,
173
213
  ArbUsdc: 7,
174
214
  Sol: 9,
175
- SolUsdc: 10
215
+ SolUsdc: 10,
216
+ HubDot: 11,
217
+ HubUsdt: 12,
218
+ HubUsdc: 13
176
219
  };
177
220
  // Annotate the CommonJS export names for ESM import in node:
178
221
  0 && (module.exports = {
@@ -1,15 +1,16 @@
1
- declare const chainflipAssets: readonly ["Usdc", "Usdt", "Flip", "Dot", "Eth", "Btc", "ArbUsdc", "ArbEth", "Sol", "SolUsdc"];
1
+ declare const chainflipAssets: readonly ["Usdc", "Usdt", "Flip", "Eth", "Dot", "Btc", "ArbUsdc", "ArbEth", "Sol", "SolUsdc", "HubDot", "HubUsdt", "HubUsdc"];
2
2
  type ChainflipAsset = (typeof chainflipAssets)[number];
3
3
  declare const rpcAssets: readonly ["USDC", "USDT", "FLIP", "DOT", "ETH", "BTC", "SOL"];
4
+ type RpcAsset = (typeof rpcAssets)[number];
4
5
  type BaseChainflipAsset = Exclude<ChainflipAsset, 'Usdc'>;
5
6
  declare const baseChainflipAssets: BaseChainflipAsset[];
6
7
  declare const chainflipEvmChains: readonly ["Ethereum", "Arbitrum"];
7
8
  type ChainflipEvmChain = (typeof chainflipEvmChains)[number];
8
- declare const chainflipChains: readonly ["Ethereum", "Arbitrum", "Bitcoin", "Polkadot", "Solana"];
9
+ declare const chainflipChains: readonly ["Ethereum", "Arbitrum", "Bitcoin", "Polkadot", "Solana", "Assethub"];
9
10
  type ChainflipChain = (typeof chainflipChains)[number];
10
11
  declare const chainflipNetworks: readonly ["backspin", "sisyphos", "perseverance", "mainnet"];
11
12
  type ChainflipNetwork = (typeof chainflipNetworks)[number];
12
- declare const addressTypes: readonly ["Eth", "Btc", "Dot", "Arb", "Sol"];
13
+ declare const addressTypes: readonly ["Eth", "Btc", "Dot", "Arb", "Sol", "Hub"];
13
14
  type AddressType = (typeof addressTypes)[number];
14
15
  type AssetOfChain<C extends ChainflipChain> = (typeof chainConstants)[C]['assets'][number];
15
16
  type ChainAssetMap<T> = {
@@ -28,6 +29,10 @@ type AssetAndChain = {
28
29
  asset: keyof ChainAssetMap<unknown>[C];
29
30
  };
30
31
  }[ChainflipChain];
32
+ type UncheckedAssetAndChain = {
33
+ chain: ChainflipChain;
34
+ asset: RpcAsset;
35
+ };
31
36
  declare function readAssetValue<T>(map: ChainAssetMap<T>, asset: ChainflipAsset | BaseChainflipAsset): T;
32
37
  declare function readAssetValue<T>(map: BaseChainAssetMap<T>, asset: BaseChainflipAsset): T;
33
38
  declare function readAssetValue<T>(map: ChainAssetMap<T> | BaseChainAssetMap<T>, asset: BaseChainflipAsset): T;
@@ -82,6 +87,21 @@ declare const assetConstants: {
82
87
  readonly rpcAsset: "USDC";
83
88
  readonly decimals: 6;
84
89
  };
90
+ readonly HubDot: {
91
+ readonly chain: "Assethub";
92
+ readonly rpcAsset: "DOT";
93
+ readonly decimals: 10;
94
+ };
95
+ readonly HubUsdc: {
96
+ readonly chain: "Assethub";
97
+ readonly rpcAsset: "USDC";
98
+ readonly decimals: 6;
99
+ };
100
+ readonly HubUsdt: {
101
+ readonly chain: "Assethub";
102
+ readonly rpcAsset: "USDT";
103
+ readonly decimals: 6;
104
+ };
85
105
  };
86
106
  declare const chainConstants: {
87
107
  readonly Ethereum: {
@@ -114,9 +134,15 @@ declare const chainConstants: {
114
134
  readonly addressType: "Sol";
115
135
  readonly blockTimeSeconds: 0.8;
116
136
  };
137
+ readonly Assethub: {
138
+ readonly assets: ["HubDot", "HubUsdt", "HubUsdc"];
139
+ readonly gasAsset: "HubDot";
140
+ readonly addressType: "Hub";
141
+ readonly blockTimeSeconds: 12;
142
+ };
117
143
  };
118
144
  declare const internalAssetToRpcAsset: Record<ChainflipAsset, AssetAndChain>;
119
145
  declare const chainContractId: Record<ChainflipChain, number>;
120
146
  declare const assetContractId: Record<ChainflipAsset, number>;
121
147
 
122
- export { type AddressType, type AssetOfChain, type BaseChainAssetMap, type BaseChainflipAsset, type ChainAssetMap, type ChainflipAsset, type ChainflipChain, type ChainflipEvmChain, type ChainflipNetwork, addressTypes, assetConstants, assetContractId, baseChainflipAssets, chainConstants, chainContractId, chainflipAssets, chainflipChains, chainflipEvmChains, chainflipNetworks, internalAssetToRpcAsset, readAssetValue, rpcAssets };
148
+ export { type AddressType, type AssetAndChain, type AssetOfChain, type BaseChainAssetMap, type BaseChainflipAsset, type ChainAssetMap, type ChainflipAsset, type ChainflipChain, type ChainflipEvmChain, type ChainflipNetwork, type UncheckedAssetAndChain, addressTypes, assetConstants, assetContractId, baseChainflipAssets, chainConstants, chainContractId, chainflipAssets, chainflipChains, chainflipEvmChains, chainflipNetworks, internalAssetToRpcAsset, readAssetValue, rpcAssets };
@@ -1,15 +1,16 @@
1
- declare const chainflipAssets: readonly ["Usdc", "Usdt", "Flip", "Dot", "Eth", "Btc", "ArbUsdc", "ArbEth", "Sol", "SolUsdc"];
1
+ declare const chainflipAssets: readonly ["Usdc", "Usdt", "Flip", "Eth", "Dot", "Btc", "ArbUsdc", "ArbEth", "Sol", "SolUsdc", "HubDot", "HubUsdt", "HubUsdc"];
2
2
  type ChainflipAsset = (typeof chainflipAssets)[number];
3
3
  declare const rpcAssets: readonly ["USDC", "USDT", "FLIP", "DOT", "ETH", "BTC", "SOL"];
4
+ type RpcAsset = (typeof rpcAssets)[number];
4
5
  type BaseChainflipAsset = Exclude<ChainflipAsset, 'Usdc'>;
5
6
  declare const baseChainflipAssets: BaseChainflipAsset[];
6
7
  declare const chainflipEvmChains: readonly ["Ethereum", "Arbitrum"];
7
8
  type ChainflipEvmChain = (typeof chainflipEvmChains)[number];
8
- declare const chainflipChains: readonly ["Ethereum", "Arbitrum", "Bitcoin", "Polkadot", "Solana"];
9
+ declare const chainflipChains: readonly ["Ethereum", "Arbitrum", "Bitcoin", "Polkadot", "Solana", "Assethub"];
9
10
  type ChainflipChain = (typeof chainflipChains)[number];
10
11
  declare const chainflipNetworks: readonly ["backspin", "sisyphos", "perseverance", "mainnet"];
11
12
  type ChainflipNetwork = (typeof chainflipNetworks)[number];
12
- declare const addressTypes: readonly ["Eth", "Btc", "Dot", "Arb", "Sol"];
13
+ declare const addressTypes: readonly ["Eth", "Btc", "Dot", "Arb", "Sol", "Hub"];
13
14
  type AddressType = (typeof addressTypes)[number];
14
15
  type AssetOfChain<C extends ChainflipChain> = (typeof chainConstants)[C]['assets'][number];
15
16
  type ChainAssetMap<T> = {
@@ -28,6 +29,10 @@ type AssetAndChain = {
28
29
  asset: keyof ChainAssetMap<unknown>[C];
29
30
  };
30
31
  }[ChainflipChain];
32
+ type UncheckedAssetAndChain = {
33
+ chain: ChainflipChain;
34
+ asset: RpcAsset;
35
+ };
31
36
  declare function readAssetValue<T>(map: ChainAssetMap<T>, asset: ChainflipAsset | BaseChainflipAsset): T;
32
37
  declare function readAssetValue<T>(map: BaseChainAssetMap<T>, asset: BaseChainflipAsset): T;
33
38
  declare function readAssetValue<T>(map: ChainAssetMap<T> | BaseChainAssetMap<T>, asset: BaseChainflipAsset): T;
@@ -82,6 +87,21 @@ declare const assetConstants: {
82
87
  readonly rpcAsset: "USDC";
83
88
  readonly decimals: 6;
84
89
  };
90
+ readonly HubDot: {
91
+ readonly chain: "Assethub";
92
+ readonly rpcAsset: "DOT";
93
+ readonly decimals: 10;
94
+ };
95
+ readonly HubUsdc: {
96
+ readonly chain: "Assethub";
97
+ readonly rpcAsset: "USDC";
98
+ readonly decimals: 6;
99
+ };
100
+ readonly HubUsdt: {
101
+ readonly chain: "Assethub";
102
+ readonly rpcAsset: "USDT";
103
+ readonly decimals: 6;
104
+ };
85
105
  };
86
106
  declare const chainConstants: {
87
107
  readonly Ethereum: {
@@ -114,9 +134,15 @@ declare const chainConstants: {
114
134
  readonly addressType: "Sol";
115
135
  readonly blockTimeSeconds: 0.8;
116
136
  };
137
+ readonly Assethub: {
138
+ readonly assets: ["HubDot", "HubUsdt", "HubUsdc"];
139
+ readonly gasAsset: "HubDot";
140
+ readonly addressType: "Hub";
141
+ readonly blockTimeSeconds: 12;
142
+ };
117
143
  };
118
144
  declare const internalAssetToRpcAsset: Record<ChainflipAsset, AssetAndChain>;
119
145
  declare const chainContractId: Record<ChainflipChain, number>;
120
146
  declare const assetContractId: Record<ChainflipAsset, number>;
121
147
 
122
- export { type AddressType, type AssetOfChain, type BaseChainAssetMap, type BaseChainflipAsset, type ChainAssetMap, type ChainflipAsset, type ChainflipChain, type ChainflipEvmChain, type ChainflipNetwork, addressTypes, assetConstants, assetContractId, baseChainflipAssets, chainConstants, chainContractId, chainflipAssets, chainflipChains, chainflipEvmChains, chainflipNetworks, internalAssetToRpcAsset, readAssetValue, rpcAssets };
148
+ export { type AddressType, type AssetAndChain, type AssetOfChain, type BaseChainAssetMap, type BaseChainflipAsset, type ChainAssetMap, type ChainflipAsset, type ChainflipChain, type ChainflipEvmChain, type ChainflipNetwork, type UncheckedAssetAndChain, addressTypes, assetConstants, assetContractId, baseChainflipAssets, chainConstants, chainContractId, chainflipAssets, chainflipChains, chainflipEvmChains, chainflipNetworks, internalAssetToRpcAsset, readAssetValue, rpcAssets };
package/dist/chainflip.js CHANGED
@@ -12,7 +12,7 @@ import {
12
12
  internalAssetToRpcAsset,
13
13
  readAssetValue,
14
14
  rpcAssets
15
- } from "./chunk-YOAHWTE7.js";
15
+ } from "./chunk-SAV2D2GE.js";
16
16
  export {
17
17
  addressTypes,
18
18
  assetConstants,
@@ -1,24 +1,39 @@
1
1
  // src/chainflip.ts
2
2
  var chainflipAssets = [
3
+ // Ethereum
3
4
  "Usdc",
4
5
  "Usdt",
5
6
  "Flip",
6
- "Dot",
7
7
  "Eth",
8
+ // Polkadot
9
+ "Dot",
10
+ // Bitcoin
8
11
  "Btc",
12
+ // Arbitrum
9
13
  "ArbUsdc",
10
14
  "ArbEth",
15
+ // Solana
11
16
  "Sol",
12
- "SolUsdc"
17
+ "SolUsdc",
18
+ // Assethub
19
+ "HubDot",
20
+ "HubUsdt",
21
+ "HubUsdc"
13
22
  ];
14
23
  var rpcAssets = ["USDC", "USDT", "FLIP", "DOT", "ETH", "BTC", "SOL"];
15
24
  var baseChainflipAssets = chainflipAssets.filter(
16
25
  (asset) => asset !== "Usdc"
17
26
  );
18
27
  var chainflipEvmChains = ["Ethereum", "Arbitrum"];
19
- var chainflipChains = [...chainflipEvmChains, "Bitcoin", "Polkadot", "Solana"];
28
+ var chainflipChains = [
29
+ ...chainflipEvmChains,
30
+ "Bitcoin",
31
+ "Polkadot",
32
+ "Solana",
33
+ "Assethub"
34
+ ];
20
35
  var chainflipNetworks = ["backspin", "sisyphos", "perseverance", "mainnet"];
21
- var addressTypes = ["Eth", "Btc", "Dot", "Arb", "Sol"];
36
+ var addressTypes = ["Eth", "Btc", "Dot", "Arb", "Sol", "Hub"];
22
37
  function readAssetValue(map, asset) {
23
38
  const chainValues = map[assetConstants[asset].chain];
24
39
  return chainValues[assetConstants[asset].rpcAsset];
@@ -73,6 +88,21 @@ var assetConstants = {
73
88
  chain: "Solana",
74
89
  rpcAsset: "USDC",
75
90
  decimals: 6
91
+ },
92
+ HubDot: {
93
+ chain: "Assethub",
94
+ rpcAsset: "DOT",
95
+ decimals: 10
96
+ },
97
+ HubUsdc: {
98
+ chain: "Assethub",
99
+ rpcAsset: "USDC",
100
+ decimals: 6
101
+ },
102
+ HubUsdt: {
103
+ chain: "Assethub",
104
+ rpcAsset: "USDT",
105
+ decimals: 6
76
106
  }
77
107
  };
78
108
  var chainConstants = {
@@ -105,6 +135,12 @@ var chainConstants = {
105
135
  gasAsset: "Sol",
106
136
  addressType: "Sol",
107
137
  blockTimeSeconds: 0.8
138
+ },
139
+ Assethub: {
140
+ assets: ["HubDot", "HubUsdt", "HubUsdc"],
141
+ gasAsset: "HubDot",
142
+ addressType: "Hub",
143
+ blockTimeSeconds: 12
108
144
  }
109
145
  };
110
146
  var internalAssetToRpcAsset = {
@@ -117,14 +153,18 @@ var internalAssetToRpcAsset = {
117
153
  ArbUsdc: { chain: "Arbitrum", asset: "USDC" },
118
154
  ArbEth: { chain: "Arbitrum", asset: "ETH" },
119
155
  Sol: { chain: "Solana", asset: "SOL" },
120
- SolUsdc: { chain: "Solana", asset: "USDC" }
156
+ SolUsdc: { chain: "Solana", asset: "USDC" },
157
+ HubDot: { chain: "Assethub", asset: "DOT" },
158
+ HubUsdt: { chain: "Assethub", asset: "USDT" },
159
+ HubUsdc: { chain: "Assethub", asset: "USDC" }
121
160
  };
122
161
  var chainContractId = {
123
162
  Ethereum: 1,
124
163
  Polkadot: 2,
125
164
  Bitcoin: 3,
126
165
  Arbitrum: 4,
127
- Solana: 5
166
+ Solana: 5,
167
+ Assethub: 6
128
168
  };
129
169
  var assetContractId = {
130
170
  Eth: 1,
@@ -136,7 +176,10 @@ var assetContractId = {
136
176
  ArbEth: 6,
137
177
  ArbUsdc: 7,
138
178
  Sol: 9,
139
- SolUsdc: 10
179
+ SolUsdc: 10,
180
+ HubDot: 11,
181
+ HubUsdt: 12,
182
+ HubUsdc: 13
140
183
  };
141
184
 
142
185
  export {
package/dist/consts.cjs CHANGED
@@ -149,6 +149,10 @@ var brokerAliasMap = {
149
149
  cFP82c86HiP35H7TwYziqnmUjSym3YdT3U2HwgrqN7krTyyih: {
150
150
  name: "Moca",
151
151
  twitter: "@moca_app"
152
+ },
153
+ cFPD5DrrsHb7Wi5nmBcFuPDcGRsWhv5Bz6vvzGqFYPFhbR3Sw: {
154
+ name: "Squid",
155
+ twitter: "@squidrouter"
152
156
  }
153
157
  };
154
158
  var lpAliasMap = {
package/dist/consts.js CHANGED
@@ -115,6 +115,10 @@ var brokerAliasMap = {
115
115
  cFP82c86HiP35H7TwYziqnmUjSym3YdT3U2HwgrqN7krTyyih: {
116
116
  name: "Moca",
117
117
  twitter: "@moca_app"
118
+ },
119
+ cFPD5DrrsHb7Wi5nmBcFuPDcGRsWhv5Bz6vvzGqFYPFhbR3Sw: {
120
+ name: "Squid",
121
+ twitter: "@squidrouter"
118
122
  }
119
123
  };
120
124
  var lpAliasMap = {
package/dist/tickMath.cjs CHANGED
@@ -33,22 +33,37 @@ var import_bignumber = require("bignumber.js");
33
33
 
34
34
  // src/chainflip.ts
35
35
  var chainflipAssets = [
36
+ // Ethereum
36
37
  "Usdc",
37
38
  "Usdt",
38
39
  "Flip",
39
- "Dot",
40
40
  "Eth",
41
+ // Polkadot
42
+ "Dot",
43
+ // Bitcoin
41
44
  "Btc",
45
+ // Arbitrum
42
46
  "ArbUsdc",
43
47
  "ArbEth",
48
+ // Solana
44
49
  "Sol",
45
- "SolUsdc"
50
+ "SolUsdc",
51
+ // Assethub
52
+ "HubDot",
53
+ "HubUsdt",
54
+ "HubUsdc"
46
55
  ];
47
56
  var baseChainflipAssets = chainflipAssets.filter(
48
57
  (asset) => asset !== "Usdc"
49
58
  );
50
59
  var chainflipEvmChains = ["Ethereum", "Arbitrum"];
51
- var chainflipChains = [...chainflipEvmChains, "Bitcoin", "Polkadot", "Solana"];
60
+ var chainflipChains = [
61
+ ...chainflipEvmChains,
62
+ "Bitcoin",
63
+ "Polkadot",
64
+ "Solana",
65
+ "Assethub"
66
+ ];
52
67
  var assetConstants = {
53
68
  Eth: {
54
69
  chain: "Ethereum",
@@ -99,6 +114,21 @@ var assetConstants = {
99
114
  chain: "Solana",
100
115
  rpcAsset: "USDC",
101
116
  decimals: 6
117
+ },
118
+ HubDot: {
119
+ chain: "Assethub",
120
+ rpcAsset: "DOT",
121
+ decimals: 10
122
+ },
123
+ HubUsdc: {
124
+ chain: "Assethub",
125
+ rpcAsset: "USDC",
126
+ decimals: 6
127
+ },
128
+ HubUsdt: {
129
+ chain: "Assethub",
130
+ rpcAsset: "USDT",
131
+ decimals: 6
102
132
  }
103
133
  };
104
134
  var chainConstants = {
@@ -131,6 +161,12 @@ var chainConstants = {
131
161
  gasAsset: "Sol",
132
162
  addressType: "Sol",
133
163
  blockTimeSeconds: 0.8
164
+ },
165
+ Assethub: {
166
+ assets: ["HubDot", "HubUsdt", "HubUsdc"],
167
+ gasAsset: "HubDot",
168
+ addressType: "Hub",
169
+ blockTimeSeconds: 12
134
170
  }
135
171
  };
136
172
 
package/dist/tickMath.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  assetConstants
3
- } from "./chunk-YOAHWTE7.js";
3
+ } from "./chunk-SAV2D2GE.js";
4
4
 
5
5
  // src/tickMath.ts
6
6
  import { BigNumber } from "bignumber.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chainflip/utils",
3
- "version": "0.7.4",
3
+ "version": "0.8.0",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist",