@xyo-network/crypto-cards-plugins 2.42.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/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 +9424 -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 +52 -0
- package/src/index.ts +11 -0
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export * from '@xyo-network/crypto-cards-game-plugin';
|
|
2
|
+
export * from '@xyo-network/crypto-cards-move-plugin';
|
|
3
|
+
import { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin';
|
|
4
|
+
export declare const XyoCryptoCardsPlugins: PayloadSetPluginFunc[];
|
|
5
|
+
export default XyoCryptoCardsPlugins;
|
|
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,uCAAuC,CAAA;AACrD,cAAc,uCAAuC,CAAA;AAIrD,OAAO,EAAE,oBAAoB,EAAE,MAAM,gCAAgC,CAAA;AAErE,eAAO,MAAM,qBAAqB,EAAE,oBAAoB,EAAyD,CAAA;AAGjH,eAAe,qBAAqB,CAAA"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export * from '@xyo-network/crypto-cards-game-plugin';
|
|
2
|
+
export * from '@xyo-network/crypto-cards-move-plugin';
|
|
3
|
+
import { XyoCryptoCardsGamePlugin } from '@xyo-network/crypto-cards-game-plugin';
|
|
4
|
+
import { XyoCryptoCardsMovePlugin } from '@xyo-network/crypto-cards-move-plugin';
|
|
5
|
+
export const XyoCryptoCardsPlugins = [XyoCryptoCardsGamePlugin, XyoCryptoCardsMovePlugin];
|
|
6
|
+
// eslint-disable-next-line import/no-default-export
|
|
7
|
+
export default XyoCryptoCardsPlugins;
|
|
8
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,uCAAuC,CAAA;AACrD,cAAc,uCAAuC,CAAA;AAErD,OAAO,EAAE,wBAAwB,EAAE,MAAM,uCAAuC,CAAA;AAChF,OAAO,EAAE,wBAAwB,EAAE,MAAM,uCAAuC,CAAA;AAGhF,MAAM,CAAC,MAAM,qBAAqB,GAA2B,CAAC,wBAAwB,EAAE,wBAAwB,CAAC,CAAA;AAEjH,oDAAoD;AACpD,eAAe,qBAAqB,CAAA"}
|
package/package.json
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@xyo-network/crypto-cards-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-game-plugin": "^2.42.0",
|
|
14
|
+
"@xyo-network/crypto-cards-move-plugin": "^2.42.0",
|
|
15
|
+
"@xyo-network/payloadset-plugin": "^2.42.0",
|
|
16
|
+
"tslib": "^2.4.1"
|
|
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.42.0"
|
|
52
|
+
}
|
package/src/index.ts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export * from '@xyo-network/crypto-cards-game-plugin'
|
|
2
|
+
export * from '@xyo-network/crypto-cards-move-plugin'
|
|
3
|
+
|
|
4
|
+
import { XyoCryptoCardsGamePlugin } from '@xyo-network/crypto-cards-game-plugin'
|
|
5
|
+
import { XyoCryptoCardsMovePlugin } from '@xyo-network/crypto-cards-move-plugin'
|
|
6
|
+
import { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin'
|
|
7
|
+
|
|
8
|
+
export const XyoCryptoCardsPlugins: PayloadSetPluginFunc[] = [XyoCryptoCardsGamePlugin, XyoCryptoCardsMovePlugin]
|
|
9
|
+
|
|
10
|
+
// eslint-disable-next-line import/no-default-export
|
|
11
|
+
export default XyoCryptoCardsPlugins
|