@juno-network/assets 0.7.1 → 0.7.2
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.
- package/package.json +18 -18
- package/types/index.d.ts +5 -5
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@juno-network/assets",
|
3
|
-
"version": "0.7.
|
3
|
+
"version": "0.7.2",
|
4
4
|
"description": "Chain Registry info for Juno",
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
6
6
|
"homepage": "https://github.com/CosmosContracts/typescript",
|
@@ -44,26 +44,26 @@
|
|
44
44
|
"url": "https://github.com/CosmosContracts/typescript/issues"
|
45
45
|
},
|
46
46
|
"devDependencies": {
|
47
|
-
"@babel/cli": "7.
|
48
|
-
"@babel/core": "7.18.
|
47
|
+
"@babel/cli": "7.18.10",
|
48
|
+
"@babel/core": "7.18.13",
|
49
49
|
"@babel/eslint-parser": "^7.18.2",
|
50
50
|
"@babel/node": "^7.18.5",
|
51
|
-
"@babel/plugin-proposal-class-properties": "7.
|
52
|
-
"@babel/plugin-proposal-export-default-from": "7.
|
53
|
-
"@babel/plugin-proposal-object-rest-spread": "7.18.
|
54
|
-
"@babel/plugin-transform-runtime": "7.18.
|
55
|
-
"@babel/preset-env": "7.18.
|
51
|
+
"@babel/plugin-proposal-class-properties": "7.18.6",
|
52
|
+
"@babel/plugin-proposal-export-default-from": "7.18.10",
|
53
|
+
"@babel/plugin-proposal-object-rest-spread": "7.18.9",
|
54
|
+
"@babel/plugin-transform-runtime": "7.18.10",
|
55
|
+
"@babel/preset-env": "7.18.10",
|
56
56
|
"@babel/preset-typescript": "^7.17.12",
|
57
|
-
"@chain-registry/utils": "^0.5.
|
58
|
-
"@types/jest": "^28.1.
|
59
|
-
"@typescript-eslint/eslint-plugin": "5.
|
60
|
-
"@typescript-eslint/parser": "5.
|
57
|
+
"@chain-registry/utils": "^0.5.1",
|
58
|
+
"@types/jest": "^28.1.7",
|
59
|
+
"@typescript-eslint/eslint-plugin": "5.34.0",
|
60
|
+
"@typescript-eslint/parser": "5.34.0",
|
61
61
|
"babel-core": "7.0.0-bridge.0",
|
62
|
-
"babel-jest": "28.1.
|
62
|
+
"babel-jest": "28.1.3",
|
63
63
|
"babel-watch": "^7.0.0",
|
64
|
-
"chain-registry": "^0.8.
|
64
|
+
"chain-registry": "^0.8.1",
|
65
65
|
"cross-env": "^7.0.2",
|
66
|
-
"eslint": "8.
|
66
|
+
"eslint": "8.22.0",
|
67
67
|
"eslint-config-prettier": "^8.5.0",
|
68
68
|
"eslint-plugin-prettier": "^4.0.0",
|
69
69
|
"eslint-plugin-simple-import-sort": "7.0.0",
|
@@ -72,12 +72,12 @@
|
|
72
72
|
"long": "^5.2.0",
|
73
73
|
"prettier": "^2.7.0",
|
74
74
|
"regenerator-runtime": "^0.13.7",
|
75
|
-
"ts-jest": "^28.0.
|
75
|
+
"ts-jest": "^28.0.8",
|
76
76
|
"typescript": "^4.7.3"
|
77
77
|
},
|
78
78
|
"dependencies": {
|
79
79
|
"@babel/runtime": "^7.18.3",
|
80
|
-
"@chain-registry/types": "0.
|
80
|
+
"@chain-registry/types": "0.6.0"
|
81
81
|
},
|
82
|
-
"gitHead": "
|
82
|
+
"gitHead": "73fceefed53a113cac7b9d7923a2f63ecee32bf1"
|
83
83
|
}
|
package/types/index.d.ts
CHANGED
@@ -4,11 +4,11 @@ import chain from './chain';
|
|
4
4
|
import testnet from './testnet';
|
5
5
|
import testnet_assets from './testnet_assets';
|
6
6
|
declare const _default: {
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
7
|
+
chain: import("@chain-registry/types").Chain;
|
8
|
+
assets: import("@chain-registry/types").AssetList;
|
9
|
+
asset_list: import("@chain-registry/types").AssetList;
|
10
|
+
testnet: import("@chain-registry/types").Chain;
|
11
|
+
testnet_assets: import("@chain-registry/types").AssetList;
|
12
12
|
};
|
13
13
|
export default _default;
|
14
14
|
export { asset_list, assets, chain, testnet, testnet_assets };
|