@juno-network/assets 0.7.5 → 0.8.0

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,12 +1,11 @@
1
1
  {
2
2
  "name": "@juno-network/assets",
3
- "version": "0.7.5",
3
+ "version": "0.8.0",
4
4
  "description": "Chain Registry info for Juno",
5
5
  "author": "Dan Lynch <pyramation@gmail.com>",
6
6
  "homepage": "https://github.com/CosmosContracts/typescript",
7
7
  "license": "SEE LICENSE IN LICENSE",
8
8
  "main": "main/index.js",
9
- "module": "module/index.js",
10
9
  "typings": "types/index.d.ts",
11
10
  "directories": {
12
11
  "lib": "src",
@@ -14,13 +13,10 @@
14
13
  },
15
14
  "files": [
16
15
  "types",
17
- "main",
18
- "module"
16
+ "main"
19
17
  ],
20
18
  "scripts": {
21
- "build:main": "cross-env BABEL_ENV=production babel src --out-dir main --delete-dir-on-start --extensions \".tsx,.ts,.js\"",
22
- "build:module": "cross-env MODULE=true babel src --out-dir module --delete-dir-on-start --extensions \".tsx,.ts,.js\"",
23
- "build": "npm run build:module && npm run build:main",
19
+ "build": "cross-env BABEL_ENV=production babel src --out-dir main --delete-dir-on-start --extensions \".tsx,.ts,.js\"",
24
20
  "build:ts": "tsc --project ./tsconfig.json",
25
21
  "buidl": "npm run build && npm run build:ts",
26
22
  "build:pkg": "babel-node ./scripts/build.js",
@@ -45,39 +41,39 @@
45
41
  },
46
42
  "devDependencies": {
47
43
  "@babel/cli": "7.18.10",
48
- "@babel/core": "7.19.0",
49
- "@babel/eslint-parser": "^7.18.2",
50
- "@babel/node": "^7.18.5",
44
+ "@babel/core": "7.19.1",
45
+ "@babel/eslint-parser": "^7.19.1",
46
+ "@babel/node": "^7.19.1",
51
47
  "@babel/plugin-proposal-class-properties": "7.18.6",
52
48
  "@babel/plugin-proposal-export-default-from": "7.18.10",
53
49
  "@babel/plugin-proposal-object-rest-spread": "7.18.9",
54
- "@babel/plugin-transform-runtime": "7.18.10",
55
- "@babel/preset-env": "7.19.0",
50
+ "@babel/plugin-transform-runtime": "7.19.1",
51
+ "@babel/preset-env": "7.19.1",
56
52
  "@babel/preset-typescript": "^7.17.12",
57
- "@chain-registry/utils": "^0.7.1",
58
- "@types/jest": "^29.0.0",
59
- "@typescript-eslint/eslint-plugin": "5.36.2",
60
- "@typescript-eslint/parser": "5.36.2",
53
+ "@chain-registry/utils": "^0.8.0",
54
+ "@types/jest": "^29.0.2",
55
+ "@typescript-eslint/eslint-plugin": "5.37.0",
56
+ "@typescript-eslint/parser": "5.37.0",
61
57
  "babel-core": "7.0.0-bridge.0",
62
- "babel-jest": "29.0.2",
58
+ "babel-jest": "29.0.3",
63
59
  "babel-watch": "^7.0.0",
64
- "chain-registry": "^0.10.0",
60
+ "chain-registry": "^0.11.0",
65
61
  "cross-env": "^7.0.2",
66
- "eslint": "8.23.0",
62
+ "eslint": "8.23.1",
67
63
  "eslint-config-prettier": "^8.5.0",
68
64
  "eslint-plugin-prettier": "^4.0.0",
69
65
  "eslint-plugin-simple-import-sort": "8.0.0",
70
66
  "eslint-plugin-unused-imports": "2.0.0",
71
- "jest": "^29.0.2",
67
+ "jest": "^29.0.3",
72
68
  "long": "^5.2.0",
73
69
  "prettier": "^2.7.0",
74
70
  "regenerator-runtime": "^0.13.7",
75
- "ts-jest": "^28.0.8",
76
- "typescript": "^4.8.2"
71
+ "ts-jest": "^29.0.1",
72
+ "typescript": "^4.8.3"
77
73
  },
78
74
  "dependencies": {
79
75
  "@babel/runtime": "^7.19.0",
80
- "@chain-registry/types": "0.7.0"
76
+ "@chain-registry/types": "0.8.0"
81
77
  },
82
- "gitHead": "2930e39bb093005886cb33b668cd1e503edf6eff"
78
+ "gitHead": "f0f12af5f93b00f2d48c5357613f3bb74f2b22d5"
83
79
  }
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
- 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;
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 };