@xyo-network/system-payload-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.
@@ -1,6 +1,5 @@
1
1
  export * from '@xyo-network/info-system-payload-plugins';
2
- import { PayloadPluginFunc } from '@xyo-network/payload-plugin';
3
-
4
- declare const SystemPlugins: PayloadPluginFunc[];
5
-
6
- export { SystemPlugins, SystemPlugins as default };
2
+ import type { PayloadPluginFunc } from '@xyo-network/payload-plugin';
3
+ export declare const SystemPlugins: PayloadPluginFunc[];
4
+ export default SystemPlugins;
5
+ //# sourceMappingURL=index.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xyo-network/system-payload-plugins",
3
- "version": "4.1.1",
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/info-system-payload-plugins": "^4.1.1",
33
- "@xyo-network/payload-plugin": "^4.1.7"
36
+ "@xyo-network/info-system-payload-plugins": "^5.0.0",
37
+ "@xyo-network/payload-plugin": "^5.0.0"
34
38
  },
35
39
  "devDependencies": {
36
- "@xylabs/ts-scripts-yarn3": "^7.0.0-rc.24",
37
- "@xylabs/tsconfig": "^7.0.0-rc.24",
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
@@ -1,5 +0,0 @@
1
- {
2
- "$schema": "https://typedoc.org/schema.json",
3
- "entryPoints": ["./src/index.ts"],
4
- "tsconfig": "./tsconfig.typedoc.json"
5
- }
package/xy.config.ts DELETED
@@ -1,10 +0,0 @@
1
- import type { XyTsupConfig } from '@xylabs/ts-scripts-yarn3'
2
- const config: XyTsupConfig = {
3
- compile: {
4
- browser: {},
5
- neutral: { src: true },
6
- node: {},
7
- },
8
- }
9
-
10
- export default config