@juno-network/assets 0.11.0 → 0.12.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.
- package/module/asset_list.js +2274 -0
- package/module/assets.js +385 -0
- package/module/chain.js +189 -0
- package/module/index.js +13 -0
- package/module/testnet.js +82 -0
- package/module/testnet_assets.js +24 -0
- package/package.json +8 -3
- package/src/asset_list.ts +2826 -0
- package/src/assets.ts +509 -0
- package/src/chain.ts +244 -0
- package/src/index.ts +15 -0
- package/src/testnet.ts +103 -0
- package/src/testnet_assets.ts +30 -0
- package/types/index.d.ts +5 -5
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@juno-network/assets",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.12.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",
|
|
@@ -75,5 +80,5 @@
|
|
|
75
80
|
"@babel/runtime": "^7.19.0",
|
|
76
81
|
"@chain-registry/types": "0.11.0"
|
|
77
82
|
},
|
|
78
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "b48c5381ae5cdf85fd8c469ab5a740cf9231cc06"
|
|
79
84
|
}
|