@xyo-network/crypto-market-plugins 3.0.3 → 3.0.4

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.
@@ -1,8 +1,7 @@
1
1
  export * from '@xyo-network/coingecko-crypto-market-plugin';
2
2
  export * from '@xyo-network/crypto-asset-plugin';
3
3
  export * from '@xyo-network/uniswap-crypto-market-plugin';
4
- import { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin';
5
-
6
- declare const CryptoMarketPlugins: PayloadSetPluginFunc[];
7
-
8
- export { CryptoMarketPlugins, CryptoMarketPlugins as default };
4
+ import type { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin';
5
+ export declare const CryptoMarketPlugins: PayloadSetPluginFunc[];
6
+ export default CryptoMarketPlugins;
7
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,6CAA6C,CAAA;AAC3D,cAAc,kCAAkC,CAAA;AAChD,cAAc,2CAA2C,CAAA;AAIzD,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,gCAAgC,CAAA;AAG1E,eAAO,MAAM,mBAAmB,EAAE,oBAAoB,EAAsF,CAAA;AAG5I,eAAe,mBAAmB,CAAA"}
package/package.json CHANGED
@@ -1,27 +1,24 @@
1
1
  {
2
2
  "name": "@xyo-network/crypto-market-plugins",
3
- "author": {
4
- "email": "support@xyo.network",
5
- "name": "XYO Development Team",
6
- "url": "https://xyo.network"
7
- },
3
+ "version": "3.0.4",
4
+ "description": "Typescript/Javascript Plugins for XYO Platform",
5
+ "homepage": "https://xyo.network",
8
6
  "bugs": {
9
- "email": "support@xyo.network",
10
- "url": "git+https://github.com/XYOracleNetwork/plugins/issues"
7
+ "url": "git+https://github.com/XYOracleNetwork/plugins/issues",
8
+ "email": "support@xyo.network"
11
9
  },
12
- "dependencies": {
13
- "@xyo-network/coingecko-crypto-market-plugin": "^3.0.3",
14
- "@xyo-network/crypto-asset-plugin": "^3.0.3",
15
- "@xyo-network/payloadset-plugin": "^3.0.3",
16
- "@xyo-network/uniswap-crypto-market-plugin": "^3.0.3"
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "git+https://github.com/XYOracleNetwork/plugins.git"
17
13
  },
18
- "devDependencies": {
19
- "@xylabs/ts-scripts-yarn3": "^4.0.0-rc.20",
20
- "@xylabs/tsconfig": "^4.0.0-rc.20",
21
- "typescript": "^5.5.4"
14
+ "license": "LGPL-3.0-only",
15
+ "author": {
16
+ "name": "XYO Development Team",
17
+ "email": "support@xyo.network",
18
+ "url": "https://xyo.network"
22
19
  },
23
- "description": "Typescript/Javascript Plugins for XYO Platform",
24
- "types": "dist/neutral/index.d.ts",
20
+ "sideEffects": false,
21
+ "type": "module",
25
22
  "exports": {
26
23
  ".": {
27
24
  "types": "./dist/neutral/index.d.ts",
@@ -30,16 +27,19 @@
30
27
  "./package.json": "./package.json"
31
28
  },
32
29
  "module": "dist/neutral/index.mjs",
33
- "homepage": "https://xyo.network",
34
- "license": "LGPL-3.0-only",
35
- "publishConfig": {
36
- "access": "public"
30
+ "types": "dist/neutral/index.d.ts",
31
+ "dependencies": {
32
+ "@xyo-network/coingecko-crypto-market-plugin": "^3.0.4",
33
+ "@xyo-network/crypto-asset-plugin": "^3.0.4",
34
+ "@xyo-network/payloadset-plugin": "^3.0.10",
35
+ "@xyo-network/uniswap-crypto-market-plugin": "^3.0.4"
37
36
  },
38
- "repository": {
39
- "type": "git",
40
- "url": "git+https://github.com/XYOracleNetwork/plugins.git"
37
+ "devDependencies": {
38
+ "@xylabs/ts-scripts-yarn3": "^4.0.7",
39
+ "@xylabs/tsconfig": "^4.0.7",
40
+ "typescript": "^5.5.4"
41
41
  },
42
- "sideEffects": false,
43
- "version": "3.0.3",
44
- "type": "module"
42
+ "publishConfig": {
43
+ "access": "public"
44
+ }
45
45
  }
package/xy.config.ts CHANGED
@@ -3,9 +3,7 @@ const config: XyTsupConfig = {
3
3
  compile: {
4
4
  browser: {},
5
5
  node: {},
6
- neutral: {
7
- src: true,
8
- },
6
+ neutral: { src: true },
9
7
  },
10
8
  }
11
9