@xyo-network/blockchain-plugins 4.1.1 → 5.0.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/dist/neutral/index.d.ts +4 -5
- package/package.json +9 -6
- package/typedoc.json +0 -5
- package/xy.config.ts +0 -10
package/dist/neutral/index.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
export * from '@xyo-network/ethereum-blockchain-plugins';
|
|
2
|
-
import { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
export { BlockchainPlugins, BlockchainPlugins as default };
|
|
2
|
+
import type { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin';
|
|
3
|
+
export declare const BlockchainPlugins: PayloadSetPluginFunc[];
|
|
4
|
+
export default BlockchainPlugins;
|
|
5
|
+
//# sourceMappingURL=index.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/blockchain-plugins",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0",
|
|
4
4
|
"description": "Typescript/Javascript Plugins for XYO Platform",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -28,14 +28,17 @@
|
|
|
28
28
|
},
|
|
29
29
|
"module": "dist/neutral/index.mjs",
|
|
30
30
|
"types": "dist/neutral/index.d.ts",
|
|
31
|
+
"files": [
|
|
32
|
+
"dist",
|
|
33
|
+
"src"
|
|
34
|
+
],
|
|
31
35
|
"dependencies": {
|
|
32
|
-
"@xyo-network/ethereum-blockchain-plugins": "^
|
|
33
|
-
"@xyo-network/payloadset-plugin": "^
|
|
36
|
+
"@xyo-network/ethereum-blockchain-plugins": "^5.0.0",
|
|
37
|
+
"@xyo-network/payloadset-plugin": "^5.0.0"
|
|
34
38
|
},
|
|
35
39
|
"devDependencies": {
|
|
36
|
-
"@xylabs/ts-scripts-yarn3": "^7.0.
|
|
37
|
-
"@xylabs/tsconfig": "^7.0.
|
|
38
|
-
"knip": "^5.62.0",
|
|
40
|
+
"@xylabs/ts-scripts-yarn3": "^7.0.2",
|
|
41
|
+
"@xylabs/tsconfig": "^7.0.2",
|
|
39
42
|
"typescript": "^5.8.3"
|
|
40
43
|
},
|
|
41
44
|
"publishConfig": {
|
package/typedoc.json
DELETED