@xyo-network/network 2.20.19 → 2.20.22

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/package.json +7 -58
  2. package/rollup.config.js +0 -5
package/package.json CHANGED
@@ -9,81 +9,30 @@
9
9
  "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/issues"
10
10
  },
11
11
  "dependencies": {
12
- "@ethersproject/providers": "^5.6.5",
13
- "@xylabs/sdk-js": "^2.5.5",
14
- "@xyo-network/core": "^2.20.19",
15
- "@xyo-network/ethers-wrappers": "^2.6.17",
16
- "@xyo-network/sdk-xyo-mongo-js": "^2.2.7",
17
- "@xyo-network/sdk-xyo-typechain": "^1.0.3",
18
- "ajv": "^8.11.0",
19
- "axios": "^0.27.2",
20
- "bn.js": "^5.2.0",
21
- "bowser": "^2.11.0",
22
- "elliptic": "^6.5.4",
23
- "keccak256": "^1.0.6",
24
- "lodash": "^4.17.21",
25
- "lru-cache": "^7.10.1",
26
- "mongodb": "^4.6.0",
27
- "neo4j-driver": "^4.4.5",
28
- "neo4j-driver-core": "^4.4.5",
29
- "pako": "^2.0.4",
30
- "randombytes": "^2.1.0",
31
- "sha.js": "^2.4.11",
32
- "systeminformation": "^5.11.15",
33
- "ua-parser-js": "^1.0.2",
34
- "uuid": "^8.3.2"
12
+ "@xylabs/sdk-js": "^2.5.5"
35
13
  },
36
14
  "description": "Primary SDK for using XYO Protocol 2.0",
37
15
  "devDependencies": {
38
16
  "@babel/core": "^7.17.10",
39
17
  "@babel/preset-env": "^7.17.10",
40
- "@types/bn.js": "^5.1.0",
41
- "@types/elliptic": "^6.4.14",
42
- "@types/jest": "^27.5.1",
43
- "@types/json-schema": "^7.0.11",
44
- "@types/lodash": "^4.14.182",
45
- "@types/lru-cache": "^7.6.1",
46
- "@types/node": "^17.0.32",
47
- "@types/pako": "^1.0.3",
48
- "@types/randombytes": "^2.0.0",
49
- "@types/sha.js": "^2.4.0",
50
- "@types/ua-parser-js": "^0.7.36",
51
- "@types/uuid": "^8.3.4",
52
18
  "@xylabs/eslint-config": "^2.3.22",
53
- "@xylabs/rollup-config": "^1.1.17",
54
19
  "@xylabs/ts-scripts": "^1.0.66",
55
20
  "@xylabs/tsconfig": "^1.0.13",
56
- "babel-jest": "^28.1.0",
57
- "copyfiles": "^2.4.1",
58
- "dotenv": "^16.0.1",
59
- "eslint": "^8.15.0",
60
- "ethers": "^5.6.5",
61
- "jest": "^28.1.0",
62
- "jest-environment-jsdom": "^28.1.0",
63
- "jest-sorted": "^1.0.14",
64
21
  "license-checker": "^25.0.1",
65
- "npm-package-json-lint": "^6.3.0",
66
- "npm-package-json-lint-config-default": "^5.0.0",
67
- "rimraf": "^3.0.2",
68
- "rollbar": "^2.25.0",
69
- "rollup": "^2.72.1",
70
- "ts-jest": "^28.0.2",
71
- "ts-node": "^10.7.0",
72
22
  "tslib": "^2.4.0",
73
- "typedoc": "^0.22.15",
74
23
  "typescript": "^4.6.4"
75
24
  },
76
- "browser": "dist/esm/browserIndex.js",
25
+ "browser": "dist/esm/index.js",
77
26
  "docs": "dist/docs.json",
78
27
  "exports": {
79
28
  ".": {
80
29
  "node": {
81
- "import": "./dist/esm/nodeIndex.js",
82
- "require": "./dist/cjs/nodeIndex.js"
30
+ "import": "./dist/esm/index.js",
31
+ "require": "./dist/cjs/index.js"
83
32
  },
84
33
  "browser": {
85
- "import": "./dist/esm/browserIndex.js",
86
- "require": "./dist/cjs/browserIndex.js"
34
+ "import": "./dist/esm/index.js",
35
+ "require": "./dist/cjs/index.js"
87
36
  },
88
37
  "default": "./dist/esm/index.js"
89
38
  },
@@ -113,6 +62,6 @@
113
62
  },
114
63
  "sideEffects": true,
115
64
  "types": "dist/esm/index.d.ts",
116
- "version": "2.20.19",
65
+ "version": "2.20.22",
117
66
  "packageManager": "yarn@3.1.1"
118
67
  }
package/rollup.config.js DELETED
@@ -1,5 +0,0 @@
1
- import { getRollupConfig } from '@xylabs/rollup-config'
2
-
3
- import pkg from './package.json'
4
-
5
- export default getRollupConfig({pkg, browserIndex: './src/browserIndex.ts', nodeIndex: './src/nodeIndex.ts', bundlePrefix: 'bundle/', outputs: ['cjs5', 'node', 'node-esm']})