@xyo-network/crypto-payload-plugins 2.29.0-rc.3
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/LICENSE +165 -0
- package/README.md +81 -0
- package/dist/cjs/index.d.ts +6 -0
- package/dist/cjs/index.d.ts.map +1 -0
- package/dist/cjs/index.js +12 -0
- package/dist/cjs/index.js.map +1 -0
- package/dist/docs.json +8362 -0
- package/dist/esm/index.d.ts +6 -0
- package/dist/esm/index.d.ts.map +1 -0
- package/dist/esm/index.js +8 -0
- package/dist/esm/index.js.map +1 -0
- package/package.json +53 -0
- package/src/index.ts +11 -0
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export * from '@xyo-network/crypto-cards-payload-plugins';
|
|
2
|
+
export * from '@xyo-network/crypto-market-payload-plugins';
|
|
3
|
+
import { XyoPayloadPluginFunc } from '@xyo-network/payload-plugin';
|
|
4
|
+
export declare const XyoCryptoPayloadPlugins: XyoPayloadPluginFunc[];
|
|
5
|
+
export default XyoCryptoPayloadPlugins;
|
|
6
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,2CAA2C,CAAA;AACzD,cAAc,4CAA4C,CAAA;AAI1D,OAAO,EAAE,oBAAoB,EAAE,MAAM,6BAA6B,CAAA;AAElE,eAAO,MAAM,uBAAuB,EAAE,oBAAoB,EAAwE,CAAA;AAGlI,eAAe,uBAAuB,CAAA"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export * from '@xyo-network/crypto-cards-payload-plugins';
|
|
2
|
+
export * from '@xyo-network/crypto-market-payload-plugins';
|
|
3
|
+
import { XyoCryptoCardsPayloadPlugins } from '@xyo-network/crypto-cards-payload-plugins';
|
|
4
|
+
import { XyoCryptoMarketPayloadPlugins } from '@xyo-network/crypto-market-payload-plugins';
|
|
5
|
+
export const XyoCryptoPayloadPlugins = [...XyoCryptoCardsPayloadPlugins, ...XyoCryptoMarketPayloadPlugins];
|
|
6
|
+
// eslint-disable-next-line import/no-default-export
|
|
7
|
+
export default XyoCryptoPayloadPlugins;
|
|
8
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,2CAA2C,CAAA;AACzD,cAAc,4CAA4C,CAAA;AAE1D,OAAO,EAAE,4BAA4B,EAAE,MAAM,2CAA2C,CAAA;AACxF,OAAO,EAAE,6BAA6B,EAAE,MAAM,4CAA4C,CAAA;AAG1F,MAAM,CAAC,MAAM,uBAAuB,GAA2B,CAAC,GAAG,4BAA4B,EAAE,GAAG,6BAA6B,CAAC,CAAA;AAElI,oDAAoD;AACpD,eAAe,uBAAuB,CAAA"}
|
package/package.json
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@xyo-network/crypto-payload-plugins",
|
|
3
|
+
"author": {
|
|
4
|
+
"email": "support@xyo.network",
|
|
5
|
+
"name": "XYO Development Team",
|
|
6
|
+
"url": "https://xyo.network"
|
|
7
|
+
},
|
|
8
|
+
"bugs": {
|
|
9
|
+
"email": "support@xyo.network",
|
|
10
|
+
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/issues"
|
|
11
|
+
},
|
|
12
|
+
"dependencies": {
|
|
13
|
+
"@xyo-network/crypto-cards-payload-plugins": "^2.29.0-rc.3",
|
|
14
|
+
"@xyo-network/crypto-market-payload-plugins": "^2.29.0-rc.3",
|
|
15
|
+
"@xyo-network/payload-plugin": "^2.29.0-rc.3",
|
|
16
|
+
"tslib": "^2.4.0"
|
|
17
|
+
},
|
|
18
|
+
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
19
|
+
"browser": "dist/esm/index.js",
|
|
20
|
+
"docs": "dist/docs.json",
|
|
21
|
+
"exports": {
|
|
22
|
+
".": {
|
|
23
|
+
"node": {
|
|
24
|
+
"import": "./dist/esm/index.js",
|
|
25
|
+
"require": "./dist/cjs/index.js"
|
|
26
|
+
},
|
|
27
|
+
"browser": {
|
|
28
|
+
"import": "./dist/esm/index.js",
|
|
29
|
+
"require": "./dist/cjs/index.js"
|
|
30
|
+
},
|
|
31
|
+
"default": "./dist/esm/index.js"
|
|
32
|
+
},
|
|
33
|
+
"./dist/docs.json": {
|
|
34
|
+
"default": "./dist/docs.json"
|
|
35
|
+
},
|
|
36
|
+
"./package.json": "./package.json"
|
|
37
|
+
},
|
|
38
|
+
"main": "dist/cjs/index.js",
|
|
39
|
+
"module": "dist/esm/index.js",
|
|
40
|
+
"homepage": "https://xyo.network",
|
|
41
|
+
"license": "LGPL-3.0-only",
|
|
42
|
+
"publishConfig": {
|
|
43
|
+
"access": "public"
|
|
44
|
+
},
|
|
45
|
+
"repository": {
|
|
46
|
+
"type": "git",
|
|
47
|
+
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js.git"
|
|
48
|
+
},
|
|
49
|
+
"sideEffects": false,
|
|
50
|
+
"types": "dist/esm/index.d.ts",
|
|
51
|
+
"version": "2.29.0-rc.3",
|
|
52
|
+
"stableVersion": "2.28.1"
|
|
53
|
+
}
|
package/src/index.ts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export * from '@xyo-network/crypto-cards-payload-plugins'
|
|
2
|
+
export * from '@xyo-network/crypto-market-payload-plugins'
|
|
3
|
+
|
|
4
|
+
import { XyoCryptoCardsPayloadPlugins } from '@xyo-network/crypto-cards-payload-plugins'
|
|
5
|
+
import { XyoCryptoMarketPayloadPlugins } from '@xyo-network/crypto-market-payload-plugins'
|
|
6
|
+
import { XyoPayloadPluginFunc } from '@xyo-network/payload-plugin'
|
|
7
|
+
|
|
8
|
+
export const XyoCryptoPayloadPlugins: XyoPayloadPluginFunc[] = [...XyoCryptoCardsPayloadPlugins, ...XyoCryptoMarketPayloadPlugins]
|
|
9
|
+
|
|
10
|
+
// eslint-disable-next-line import/no-default-export
|
|
11
|
+
export default XyoCryptoPayloadPlugins
|