@rhinestone/shared-configs 1.0.5 → 1.0.7

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.
Files changed (2) hide show
  1. package/dist/index.js +12 -5
  2. package/package.json +1 -3
package/dist/index.js CHANGED
@@ -1,5 +1,12 @@
1
- import chainRegistry from './configs/chains.json' with { type: 'json' };
2
- import providerRegistry from './configs/providers.json' with { type: 'json' };
3
- const chains = chainRegistry;
4
- const providers = providerRegistry;
5
- export { chains, providers };
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.providers = exports.chains = void 0;
7
+ const chains_json_1 = __importDefault(require("./configs/chains.json"));
8
+ const providers_json_1 = __importDefault(require("./configs/providers.json"));
9
+ const chains = chains_json_1.default;
10
+ exports.chains = chains;
11
+ const providers = providers_json_1.default;
12
+ exports.providers = providers;
package/package.json CHANGED
@@ -1,18 +1,16 @@
1
1
  {
2
2
  "name": "@rhinestone/shared-configs",
3
- "version": "1.0.5",
3
+ "version": "1.0.7",
4
4
  "description": "Reusable configuration files for Rhinestone services",
5
5
  "author": {
6
6
  "name": "Rhinestone",
7
7
  "url": "https://rhinestone.dev"
8
8
  },
9
- "module": "dist/index.js",
10
9
  "main": "dist/index.js",
11
10
  "types": "dist/index.d.ts",
12
11
  "exports": {
13
12
  ".": "./dist/index.js"
14
13
  },
15
- "type": "module",
16
14
  "files": [
17
15
  "dist"
18
16
  ],