@juno-network/assets 0.11.1 → 0.13.0

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "@juno-network/assets",
3
- "version": "0.11.1",
3
+ "version": "0.13.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",
9
10
  "typings": "types/index.d.ts",
10
11
  "directories": {
11
12
  "lib": "src",
@@ -13,11 +14,15 @@
13
14
  },
14
15
  "files": [
15
16
  "types",
17
+ "module",
18
+ "src",
16
19
  "main"
17
20
  ],
18
21
  "scripts": {
19
- "build": "cross-env BABEL_ENV=production babel src --out-dir main --delete-dir-on-start --extensions \".tsx,.ts,.js\"",
22
+ "build:main": "cross-env BABEL_ENV=production babel src --out-dir main --delete-dir-on-start --extensions \".tsx,.ts,.js\"",
23
+ "build:module": "cross-env MODULE=true babel src --out-dir module --delete-dir-on-start --extensions \".tsx,.ts,.js\"",
20
24
  "build:ts": "tsc --project ./tsconfig.json",
25
+ "build": "npm run build:module && npm run build:main",
21
26
  "buidl": "npm run build && npm run build:ts",
22
27
  "build:pkg": "babel-node ./scripts/build.js",
23
28
  "codegen": "npm run build:pkg && npm run format",
@@ -40,40 +45,40 @@
40
45
  "url": "https://github.com/CosmosContracts/typescript/issues"
41
46
  },
42
47
  "devDependencies": {
43
- "@babel/cli": "7.18.10",
44
- "@babel/core": "7.19.1",
48
+ "@babel/cli": "7.19.3",
49
+ "@babel/core": "7.19.3",
45
50
  "@babel/eslint-parser": "^7.19.1",
46
51
  "@babel/node": "^7.19.1",
47
52
  "@babel/plugin-proposal-class-properties": "7.18.6",
48
53
  "@babel/plugin-proposal-export-default-from": "7.18.10",
49
- "@babel/plugin-proposal-object-rest-spread": "7.18.9",
54
+ "@babel/plugin-proposal-object-rest-spread": "7.19.4",
50
55
  "@babel/plugin-transform-runtime": "7.19.1",
51
- "@babel/preset-env": "7.19.1",
56
+ "@babel/preset-env": "7.19.4",
52
57
  "@babel/preset-typescript": "^7.17.12",
53
58
  "@chain-registry/utils": "^1.0.0",
54
- "@types/jest": "^29.0.2",
55
- "@typescript-eslint/eslint-plugin": "5.37.0",
56
- "@typescript-eslint/parser": "5.37.0",
59
+ "@types/jest": "^29.1.2",
60
+ "@typescript-eslint/eslint-plugin": "5.40.0",
61
+ "@typescript-eslint/parser": "5.40.0",
57
62
  "babel-core": "7.0.0-bridge.0",
58
- "babel-jest": "29.0.3",
63
+ "babel-jest": "29.1.2",
59
64
  "babel-watch": "^7.0.0",
60
65
  "chain-registry": "^1.0.0",
61
66
  "cross-env": "^7.0.2",
62
- "eslint": "8.23.1",
67
+ "eslint": "8.25.0",
63
68
  "eslint-config-prettier": "^8.5.0",
64
69
  "eslint-plugin-prettier": "^4.0.0",
65
70
  "eslint-plugin-simple-import-sort": "8.0.0",
66
71
  "eslint-plugin-unused-imports": "2.0.0",
67
- "jest": "^29.0.3",
72
+ "jest": "^29.1.2",
68
73
  "long": "^5.2.0",
69
74
  "prettier": "^2.7.0",
70
75
  "regenerator-runtime": "^0.13.7",
71
- "ts-jest": "^29.0.1",
72
- "typescript": "^4.8.3"
76
+ "ts-jest": "^29.0.3",
77
+ "typescript": "^4.8.4"
73
78
  },
74
79
  "dependencies": {
75
- "@babel/runtime": "^7.19.0",
80
+ "@babel/runtime": "^7.19.4",
76
81
  "@chain-registry/types": "0.11.0"
77
82
  },
78
- "gitHead": "6cda1181da55359dceb211b734c91207548da992"
83
+ "gitHead": "b5b5e51ea4e5c4768bfc8ffceb5aab0a3329c140"
79
84
  }