@xyo-network/crypto-cards-plugins 2.83.0 → 2.84.1
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/dist/node/index.cjs +40 -0
- package/dist/node/{index.mjs.map → index.cjs.map} +1 -1
- package/dist/node/index.js +8 -36
- package/dist/node/index.js.map +1 -1
- package/package.json +12 -12
- package/dist/node/index.mjs +0 -12
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
19
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
20
|
+
|
|
21
|
+
// src/index.ts
|
|
22
|
+
var src_exports = {};
|
|
23
|
+
__export(src_exports, {
|
|
24
|
+
CryptoCardsPlugins: () => CryptoCardsPlugins,
|
|
25
|
+
default: () => src_default
|
|
26
|
+
});
|
|
27
|
+
module.exports = __toCommonJS(src_exports);
|
|
28
|
+
__reExport(src_exports, require("@xyo-network/crypto-cards-game-plugin"), module.exports);
|
|
29
|
+
__reExport(src_exports, require("@xyo-network/crypto-cards-move-plugin"), module.exports);
|
|
30
|
+
var import_crypto_cards_game_plugin = require("@xyo-network/crypto-cards-game-plugin");
|
|
31
|
+
var import_crypto_cards_move_plugin = require("@xyo-network/crypto-cards-move-plugin");
|
|
32
|
+
var CryptoCardsPlugins = [import_crypto_cards_game_plugin.CryptoCardsGamePlugin, import_crypto_cards_move_plugin.CryptoCardsMovePlugin];
|
|
33
|
+
var src_default = CryptoCardsPlugins;
|
|
34
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
35
|
+
0 && (module.exports = {
|
|
36
|
+
CryptoCardsPlugins,
|
|
37
|
+
...require("@xyo-network/crypto-cards-game-plugin"),
|
|
38
|
+
...require("@xyo-network/crypto-cards-move-plugin")
|
|
39
|
+
});
|
|
40
|
+
//# sourceMappingURL=index.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xyo-network/crypto-cards-game-plugin'\nexport * from '@xyo-network/crypto-cards-move-plugin'\n\nimport { CryptoCardsGamePlugin } from '@xyo-network/crypto-cards-game-plugin'\nimport { CryptoCardsMovePlugin } from '@xyo-network/crypto-cards-move-plugin'\nimport { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin'\n\nexport const CryptoCardsPlugins: PayloadSetPluginFunc[] = [CryptoCardsGamePlugin, CryptoCardsMovePlugin]\n\n// eslint-disable-next-line import/no-default-export\nexport default CryptoCardsPlugins\n"],"mappings":";AAAA
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xyo-network/crypto-cards-game-plugin'\nexport * from '@xyo-network/crypto-cards-move-plugin'\n\nimport { CryptoCardsGamePlugin } from '@xyo-network/crypto-cards-game-plugin'\nimport { CryptoCardsMovePlugin } from '@xyo-network/crypto-cards-move-plugin'\nimport { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin'\n\nexport const CryptoCardsPlugins: PayloadSetPluginFunc[] = [CryptoCardsGamePlugin, CryptoCardsMovePlugin]\n\n// eslint-disable-next-line import/no-default-export\nexport default CryptoCardsPlugins\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,wBAAc,kDAAd;AACA,wBAAc,kDADd;AAGA,sCAAsC;AACtC,sCAAsC;AAG/B,IAAM,qBAA6C,CAAC,uDAAuB,qDAAqB;AAGvG,IAAO,cAAQ;","names":[]}
|
package/dist/node/index.js
CHANGED
|
@@ -1,40 +1,12 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __defProp = Object.defineProperty;
|
|
3
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __export = (target, all) => {
|
|
7
|
-
for (var name in all)
|
|
8
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
-
};
|
|
10
|
-
var __copyProps = (to, from, except, desc) => {
|
|
11
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
-
for (let key of __getOwnPropNames(from))
|
|
13
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
-
}
|
|
16
|
-
return to;
|
|
17
|
-
};
|
|
18
|
-
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
19
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
20
|
-
|
|
21
1
|
// src/index.ts
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
module.exports = __toCommonJS(src_exports);
|
|
28
|
-
__reExport(src_exports, require("@xyo-network/crypto-cards-game-plugin"), module.exports);
|
|
29
|
-
__reExport(src_exports, require("@xyo-network/crypto-cards-move-plugin"), module.exports);
|
|
30
|
-
var import_crypto_cards_game_plugin = require("@xyo-network/crypto-cards-game-plugin");
|
|
31
|
-
var import_crypto_cards_move_plugin = require("@xyo-network/crypto-cards-move-plugin");
|
|
32
|
-
var CryptoCardsPlugins = [import_crypto_cards_game_plugin.CryptoCardsGamePlugin, import_crypto_cards_move_plugin.CryptoCardsMovePlugin];
|
|
2
|
+
export * from "@xyo-network/crypto-cards-game-plugin";
|
|
3
|
+
export * from "@xyo-network/crypto-cards-move-plugin";
|
|
4
|
+
import { CryptoCardsGamePlugin } from "@xyo-network/crypto-cards-game-plugin";
|
|
5
|
+
import { CryptoCardsMovePlugin } from "@xyo-network/crypto-cards-move-plugin";
|
|
6
|
+
var CryptoCardsPlugins = [CryptoCardsGamePlugin, CryptoCardsMovePlugin];
|
|
33
7
|
var src_default = CryptoCardsPlugins;
|
|
34
|
-
|
|
35
|
-
0 && (module.exports = {
|
|
8
|
+
export {
|
|
36
9
|
CryptoCardsPlugins,
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
});
|
|
10
|
+
src_default as default
|
|
11
|
+
};
|
|
40
12
|
//# sourceMappingURL=index.js.map
|
package/dist/node/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xyo-network/crypto-cards-game-plugin'\nexport * from '@xyo-network/crypto-cards-move-plugin'\n\nimport { CryptoCardsGamePlugin } from '@xyo-network/crypto-cards-game-plugin'\nimport { CryptoCardsMovePlugin } from '@xyo-network/crypto-cards-move-plugin'\nimport { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin'\n\nexport const CryptoCardsPlugins: PayloadSetPluginFunc[] = [CryptoCardsGamePlugin, CryptoCardsMovePlugin]\n\n// eslint-disable-next-line import/no-default-export\nexport default CryptoCardsPlugins\n"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xyo-network/crypto-cards-game-plugin'\nexport * from '@xyo-network/crypto-cards-move-plugin'\n\nimport { CryptoCardsGamePlugin } from '@xyo-network/crypto-cards-game-plugin'\nimport { CryptoCardsMovePlugin } from '@xyo-network/crypto-cards-move-plugin'\nimport { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin'\n\nexport const CryptoCardsPlugins: PayloadSetPluginFunc[] = [CryptoCardsGamePlugin, CryptoCardsMovePlugin]\n\n// eslint-disable-next-line import/no-default-export\nexport default CryptoCardsPlugins\n"],"mappings":";AAAA,cAAc;AACd,cAAc;AAEd,SAAS,6BAA6B;AACtC,SAAS,6BAA6B;AAG/B,IAAM,qBAA6C,CAAC,uBAAuB,qBAAqB;AAGvG,IAAO,cAAQ;","names":[]}
|
package/package.json
CHANGED
|
@@ -10,17 +10,16 @@
|
|
|
10
10
|
"url": "https://github.com/XYOracleNetwork/plugins/issues"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@xyo-network/crypto-cards-game-plugin": "~2.
|
|
14
|
-
"@xyo-network/crypto-cards-move-plugin": "~2.
|
|
15
|
-
"@xyo-network/payloadset-plugin": "^2.
|
|
13
|
+
"@xyo-network/crypto-cards-game-plugin": "~2.84.1",
|
|
14
|
+
"@xyo-network/crypto-cards-move-plugin": "~2.84.1",
|
|
15
|
+
"@xyo-network/payloadset-plugin": "^2.84.3"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@xylabs/ts-scripts-yarn3": "^3.2.
|
|
19
|
-
"@xylabs/tsconfig": "^3.2.
|
|
18
|
+
"@xylabs/ts-scripts-yarn3": "^3.2.19",
|
|
19
|
+
"@xylabs/tsconfig": "^3.2.19",
|
|
20
20
|
"typescript": "^5.3.3"
|
|
21
21
|
},
|
|
22
22
|
"description": "Typescript/Javascript Plugins for XYO Platform",
|
|
23
|
-
"docs": "dist/docs.json",
|
|
24
23
|
"types": "dist/node/index.d.ts",
|
|
25
24
|
"exports": {
|
|
26
25
|
".": {
|
|
@@ -36,19 +35,19 @@
|
|
|
36
35
|
},
|
|
37
36
|
"node": {
|
|
38
37
|
"require": {
|
|
39
|
-
"types": "./dist/node/index.d.
|
|
40
|
-
"default": "./dist/node/index.
|
|
38
|
+
"types": "./dist/node/index.d.cts",
|
|
39
|
+
"default": "./dist/node/index.cjs"
|
|
41
40
|
},
|
|
42
41
|
"import": {
|
|
43
42
|
"types": "./dist/node/index.d.mts",
|
|
44
|
-
"default": "./dist/node/index.
|
|
43
|
+
"default": "./dist/node/index.js"
|
|
45
44
|
}
|
|
46
45
|
}
|
|
47
46
|
},
|
|
48
47
|
"./package.json": "./package.json"
|
|
49
48
|
},
|
|
50
|
-
"main": "dist/node/index.
|
|
51
|
-
"module": "dist/node/index.
|
|
49
|
+
"main": "dist/node/index.cjs",
|
|
50
|
+
"module": "dist/node/index.js",
|
|
52
51
|
"homepage": "https://xyo.network",
|
|
53
52
|
"license": "LGPL-3.0-only",
|
|
54
53
|
"publishConfig": {
|
|
@@ -59,5 +58,6 @@
|
|
|
59
58
|
"url": "https://github.com/XYOracleNetwork/plugins.git"
|
|
60
59
|
},
|
|
61
60
|
"sideEffects": false,
|
|
62
|
-
"version": "2.
|
|
61
|
+
"version": "2.84.1",
|
|
62
|
+
"type": "module"
|
|
63
63
|
}
|
package/dist/node/index.mjs
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
// src/index.ts
|
|
2
|
-
export * from "@xyo-network/crypto-cards-game-plugin";
|
|
3
|
-
export * from "@xyo-network/crypto-cards-move-plugin";
|
|
4
|
-
import { CryptoCardsGamePlugin } from "@xyo-network/crypto-cards-game-plugin";
|
|
5
|
-
import { CryptoCardsMovePlugin } from "@xyo-network/crypto-cards-move-plugin";
|
|
6
|
-
var CryptoCardsPlugins = [CryptoCardsGamePlugin, CryptoCardsMovePlugin];
|
|
7
|
-
var src_default = CryptoCardsPlugins;
|
|
8
|
-
export {
|
|
9
|
-
CryptoCardsPlugins,
|
|
10
|
-
src_default as default
|
|
11
|
-
};
|
|
12
|
-
//# sourceMappingURL=index.mjs.map
|