@openpkg-ts/fumadocs-adapter 0.6.8 → 0.6.9

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/index.d.ts CHANGED
@@ -37,8 +37,8 @@ interface OpenpkgPluginOptions {
37
37
  * ```
38
38
  */
39
39
  declare function openpkgPlugin(options?: OpenpkgPluginOptions): LoaderPlugin;
40
- import { Source } from "fumadocs-core/source";
41
40
  import { DocsInstance, OpenPkg, SpecExport } from "@openpkg-ts/doc-generator";
41
+ import { Source } from "fumadocs-core/source";
42
42
  interface OpenPkgSourceOptions {
43
43
  /** OpenPkg spec or DocsInstance */
44
44
  spec: OpenPkg | DocsInstance;
package/dist/index.js CHANGED
@@ -110,14 +110,7 @@ function openpkgPlugin(options = {}) {
110
110
  }
111
111
  // src/source.ts
112
112
  import { createDocs } from "@openpkg-ts/doc-generator";
113
- var KIND_ORDER = [
114
- "function",
115
- "class",
116
- "interface",
117
- "type",
118
- "enum",
119
- "variable"
120
- ];
113
+ var KIND_ORDER = ["function", "class", "interface", "type", "enum", "variable"];
121
114
  var KIND_LABELS = {
122
115
  function: "Functions",
123
116
  class: "Classes",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openpkg-ts/fumadocs-adapter",
3
- "version": "0.6.8",
3
+ "version": "0.6.9",
4
4
  "description": "Fumadocs integration for OpenPkg API documentation",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -28,8 +28,9 @@
28
28
  "typecheck": "tsc --noEmit"
29
29
  },
30
30
  "dependencies": {
31
- "@openpkg-ts/ui": "^0.1.1",
32
- "@openpkg-ts/doc-generator": "^0.6.5"
31
+ "@openpkg-ts/ui": "workspace:*",
32
+ "@openpkg-ts/doc-generator": "workspace:*",
33
+ "@openpkg-ts/spec": "workspace:*"
33
34
  },
34
35
  "peerDependencies": {
35
36
  "fumadocs-core": "^16.0.0",