@xyo-network/plugins 2.82.1 → 2.83.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/README.md CHANGED
@@ -81,10 +81,10 @@ yarn xy compile
81
81
  [npm-badge]: https://img.shields.io/npm/v/@xyo-network/plugins.svg
82
82
  [npm-link]: https://www.npmjs.com/package/@xyo-network/plugins
83
83
 
84
- [codacy-badge]: https://app.codacy.com/project/badge/Grade/ba1f344ae34e4bfe999331cf4e27b9f5
84
+ [codacy-badge]: https://app.codacy.com/project/badge/Grade/a373daece4d749d8a347f102114005ec
85
85
  [codacy-link]: https://www.codacy.com/gh/XYOracleNetwork/plugins/dashboard?utm_source=github.com&utm_medium=referral&utm_content=XYOracleNetwork/plugins&utm_campaign=Badge_Grade
86
86
 
87
- [codeclimate-badge]: https://api.codeclimate.com/v1/badges/0e76349c9541f3866948/maintainability
87
+ [codeclimate-badge]: https://api.codeclimate.com/v1/badges/4cf4262de096948cae12/maintainability
88
88
  [codeclimate-link]: https://codeclimate.com/github/XYOracleNetwork/plugins/maintainability
89
89
 
90
90
  [snyk-badge]: https://snyk.io/test/github/XYOracleNetwork/plugins/badge.svg?targetFile=package.json
package/package.json CHANGED
@@ -13,17 +13,17 @@
13
13
  "packages/**/*"
14
14
  ],
15
15
  "dependencies": {
16
- "@xyo-network/payload-plugins": "~2.82.1",
17
- "@xyo-network/payloadset-plugins": "~2.82.1"
16
+ "@xyo-network/payload-plugins": "~2.83.0",
17
+ "@xyo-network/payloadset-plugins": "~2.83.0"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@babel/core": "^7.23.5",
21
21
  "@babel/preset-env": "^7.23.5",
22
22
  "@babel/preset-typescript": "^7.23.3",
23
- "@types/jest": "^29.5.10",
23
+ "@types/jest": "^29.5.11",
24
24
  "@types/supertest": "^2.0.16",
25
- "@typescript-eslint/eslint-plugin": "^6.13.1",
26
- "@typescript-eslint/parser": "^6.13.1",
25
+ "@typescript-eslint/eslint-plugin": "^6.13.2",
26
+ "@typescript-eslint/parser": "^6.13.2",
27
27
  "@xylabs/eslint-config": "^3.2.10",
28
28
  "@xylabs/forget": "^2.13.20",
29
29
  "@xylabs/ts-scripts-yarn3": "^3.2.10",
@@ -47,7 +47,8 @@
47
47
  "supertest": "^6.3.3",
48
48
  "ts-jest": "^29.1.1",
49
49
  "ts-node": "^10.9.1",
50
- "typescript": "^5.3.2"
50
+ "typedoc": "^0.25.4",
51
+ "typescript": "^5.3.3"
51
52
  },
52
53
  "resolutions": {
53
54
  "axios": "^1",
@@ -102,10 +103,10 @@
102
103
  "lint-pkg": "npmPkgJsonLint .",
103
104
  "test-esm": "node $(yarn jest --no-cache --forceExit)",
104
105
  "test": "jest --no-cache --forceExit",
105
- "build-typedoc-site": "xy gen-docs @xyo-network/plugins"
106
+ "build-typedoc-site": "typedoc"
106
107
  },
107
108
  "sideEffects": false,
108
- "version": "2.82.1",
109
+ "version": "2.83.0",
109
110
  "packageManager": "yarn@4.0.2",
110
111
  "volta": {
111
112
  "node": "18.17.1",
package/typedoc.json CHANGED
@@ -2,9 +2,11 @@
2
2
  "$schema": "https://typedoc.org/schema.json",
3
3
  "entryPointStrategy": "packages",
4
4
  "entryPoints": [
5
- "**/packages/*"
5
+ "./**/packages/*",
6
+ "."
6
7
  ],
8
+ "exclude": ["**/*.d.ts"],
7
9
  "includeVersion": true,
8
- "name": "XYO Plugins",
10
+ "name": "XYO Platform Plugins",
9
11
  "tsconfig": "./tsconfig.typedoc.json"
10
12
  }