rspress-plugin-api-extractor 0.3.2 → 0.3.3
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/index.d.ts +30 -30
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -63,8 +63,8 @@ declare const DEFAULT_CATEGORIES: Record<string, CategoryConfig>;
|
|
|
63
63
|
* @public
|
|
64
64
|
*/
|
|
65
65
|
declare const VersionConfig: Schema.mutable<Schema.Struct<{
|
|
66
|
-
/** Path or loader for the `.api.json` model file for this version. */model: Schema.declare<string | ((...args: Array<unknown>) => unknown) | URL
|
|
67
|
-
packageJson: Schema.optional<Schema.declare<string | ((...args: Array<unknown>) => unknown) | URL
|
|
66
|
+
/** Path or loader for the `.api.json` model file for this version. */model: Schema.declare<string | URL | ((...args: Array<unknown>) => unknown), string | URL | ((...args: Array<unknown>) => unknown), readonly [], never>; /** Path or loader for the `package.json` for this version. */
|
|
67
|
+
packageJson: Schema.optional<Schema.declare<string | URL | ((...args: Array<unknown>) => unknown), string | URL | ((...args: Array<unknown>) => unknown), readonly [], never>>; /** Category overrides for this version. */
|
|
68
68
|
categories: Schema.optional<Schema.mutable<Schema.Record$<typeof Schema.String, Schema.mutable<Schema.Struct<{
|
|
69
69
|
/** Human-readable plural display name shown in the sidebar. */displayName: typeof Schema.String; /** Human-readable singular name used in page titles. */
|
|
70
70
|
singularName: typeof Schema.String; /** Folder name under the API base route (URL segment). */
|
|
@@ -88,7 +88,7 @@ declare const VersionConfig: Schema.mutable<Schema.Struct<{
|
|
|
88
88
|
externalPackages: Schema.optional<Schema.mutable<Schema.Array$<Schema.mutable<Schema.Struct<{
|
|
89
89
|
name: typeof Schema.String;
|
|
90
90
|
version: typeof Schema.String;
|
|
91
|
-
tsconfig: Schema.optional<Schema.declare<string | ((...args: Array<unknown>) => unknown) | URL
|
|
91
|
+
tsconfig: Schema.optional<Schema.declare<string | URL | ((...args: Array<unknown>) => unknown), string | URL | ((...args: Array<unknown>) => unknown), readonly [], never>>;
|
|
92
92
|
compilerOptions: Schema.optional<typeof Schema.Unknown>;
|
|
93
93
|
}>>>>>; /** Auto-detect external packages from `package.json` dependency fields. */
|
|
94
94
|
autoDetectDependencies: Schema.optional<Schema.mutable<Schema.Struct<{
|
|
@@ -136,7 +136,7 @@ declare const VersionConfig: Schema.mutable<Schema.Struct<{
|
|
|
136
136
|
default: () => ["markdownLink", "chatgpt", "claude"];
|
|
137
137
|
}>;
|
|
138
138
|
}>>>; /** Path to a `tsconfig.json` for this version. */
|
|
139
|
-
tsconfig: Schema.optional<Schema.declare<string | ((...args: Array<unknown>) => unknown) | URL
|
|
139
|
+
tsconfig: Schema.optional<Schema.declare<string | URL | ((...args: Array<unknown>) => unknown), string | URL | ((...args: Array<unknown>) => unknown), readonly [], never>>; /** TypeScript compiler options for Twoslash. */
|
|
140
140
|
compilerOptions: Schema.optional<typeof Schema.Unknown>;
|
|
141
141
|
}>>;
|
|
142
142
|
/** @public */
|
|
@@ -151,11 +151,11 @@ declare const SingleApiConfig: Schema.mutable<Schema.Struct<{
|
|
|
151
151
|
name: Schema.optional<typeof Schema.String>; /** Base URL route for API pages (defaults to `/api`). */
|
|
152
152
|
baseRoute: Schema.optional<typeof Schema.String>; /** Subfolder name under `baseRoute` for API pages, or `null` to omit. */
|
|
153
153
|
apiFolder: Schema.optional<Schema.Union<[typeof Schema.String, typeof Schema.Null]>>; /** Path or loader for the `.api.json` model file. */
|
|
154
|
-
model: Schema.optional<Schema.declare<string | ((...args: Array<unknown>) => unknown) | URL
|
|
155
|
-
packageJson: Schema.optional<Schema.declare<string | ((...args: Array<unknown>) => unknown) | URL
|
|
156
|
-
versions: Schema.optional<Schema.mutable<Schema.Record$<typeof Schema.String, Schema.Union<[Schema.declare<string | ((...args: Array<unknown>) => unknown) | URL
|
|
157
|
-
/** Path or loader for the `.api.json` model file for this version. */model: Schema.declare<string | ((...args: Array<unknown>) => unknown) | URL
|
|
158
|
-
packageJson: Schema.optional<Schema.declare<string | ((...args: Array<unknown>) => unknown) | URL
|
|
154
|
+
model: Schema.optional<Schema.declare<string | URL | ((...args: Array<unknown>) => unknown), string | URL | ((...args: Array<unknown>) => unknown), readonly [], never>>; /** Path or loader for the `package.json`. */
|
|
155
|
+
packageJson: Schema.optional<Schema.declare<string | URL | ((...args: Array<unknown>) => unknown), string | URL | ((...args: Array<unknown>) => unknown), readonly [], never>>; /** Versioned models keyed by version label. */
|
|
156
|
+
versions: Schema.optional<Schema.mutable<Schema.Record$<typeof Schema.String, Schema.Union<[Schema.declare<string | URL | ((...args: Array<unknown>) => unknown), string | URL | ((...args: Array<unknown>) => unknown), readonly [], never>, Schema.mutable<Schema.Struct<{
|
|
157
|
+
/** Path or loader for the `.api.json` model file for this version. */model: Schema.declare<string | URL | ((...args: Array<unknown>) => unknown), string | URL | ((...args: Array<unknown>) => unknown), readonly [], never>; /** Path or loader for the `package.json` for this version. */
|
|
158
|
+
packageJson: Schema.optional<Schema.declare<string | URL | ((...args: Array<unknown>) => unknown), string | URL | ((...args: Array<unknown>) => unknown), readonly [], never>>; /** Category overrides for this version. */
|
|
159
159
|
categories: Schema.optional<Schema.mutable<Schema.Record$<typeof Schema.String, Schema.mutable<Schema.Struct<{
|
|
160
160
|
/** Human-readable plural display name shown in the sidebar. */displayName: typeof Schema.String; /** Human-readable singular name used in page titles. */
|
|
161
161
|
singularName: typeof Schema.String; /** Folder name under the API base route (URL segment). */
|
|
@@ -179,7 +179,7 @@ declare const SingleApiConfig: Schema.mutable<Schema.Struct<{
|
|
|
179
179
|
externalPackages: Schema.optional<Schema.mutable<Schema.Array$<Schema.mutable<Schema.Struct<{
|
|
180
180
|
name: typeof Schema.String;
|
|
181
181
|
version: typeof Schema.String;
|
|
182
|
-
tsconfig: Schema.optional<Schema.declare<string | ((...args: Array<unknown>) => unknown) | URL
|
|
182
|
+
tsconfig: Schema.optional<Schema.declare<string | URL | ((...args: Array<unknown>) => unknown), string | URL | ((...args: Array<unknown>) => unknown), readonly [], never>>;
|
|
183
183
|
compilerOptions: Schema.optional<typeof Schema.Unknown>;
|
|
184
184
|
}>>>>>; /** Auto-detect external packages from `package.json` dependency fields. */
|
|
185
185
|
autoDetectDependencies: Schema.optional<Schema.mutable<Schema.Struct<{
|
|
@@ -227,7 +227,7 @@ declare const SingleApiConfig: Schema.mutable<Schema.Struct<{
|
|
|
227
227
|
default: () => ["markdownLink", "chatgpt", "claude"];
|
|
228
228
|
}>;
|
|
229
229
|
}>>>; /** Path to a `tsconfig.json` for this version. */
|
|
230
|
-
tsconfig: Schema.optional<Schema.declare<string | ((...args: Array<unknown>) => unknown) | URL
|
|
230
|
+
tsconfig: Schema.optional<Schema.declare<string | URL | ((...args: Array<unknown>) => unknown), string | URL | ((...args: Array<unknown>) => unknown), readonly [], never>>; /** TypeScript compiler options for Twoslash. */
|
|
231
231
|
compilerOptions: Schema.optional<typeof Schema.Unknown>;
|
|
232
232
|
}>>]>>>>; /** Shiki syntax-highlighting theme. */
|
|
233
233
|
theme: Schema.optional<Schema.Union<[typeof Schema.String, Schema.mutable<Schema.Struct<{
|
|
@@ -257,7 +257,7 @@ declare const SingleApiConfig: Schema.mutable<Schema.Struct<{
|
|
|
257
257
|
externalPackages: Schema.optional<Schema.mutable<Schema.Array$<Schema.mutable<Schema.Struct<{
|
|
258
258
|
name: typeof Schema.String;
|
|
259
259
|
version: typeof Schema.String;
|
|
260
|
-
tsconfig: Schema.optional<Schema.declare<string | ((...args: Array<unknown>) => unknown) | URL
|
|
260
|
+
tsconfig: Schema.optional<Schema.declare<string | URL | ((...args: Array<unknown>) => unknown), string | URL | ((...args: Array<unknown>) => unknown), readonly [], never>>;
|
|
261
261
|
compilerOptions: Schema.optional<typeof Schema.Unknown>;
|
|
262
262
|
}>>>>>; /** Auto-detect external packages from `package.json` dependency fields. */
|
|
263
263
|
autoDetectDependencies: Schema.optional<Schema.mutable<Schema.Struct<{
|
|
@@ -305,7 +305,7 @@ declare const SingleApiConfig: Schema.mutable<Schema.Struct<{
|
|
|
305
305
|
default: () => ["markdownLink", "chatgpt", "claude"];
|
|
306
306
|
}>;
|
|
307
307
|
}>>>; /** Path to a `tsconfig.json` for Twoslash. */
|
|
308
|
-
tsconfig: Schema.optional<Schema.declare<string | ((...args: Array<unknown>) => unknown) | URL
|
|
308
|
+
tsconfig: Schema.optional<Schema.declare<string | URL | ((...args: Array<unknown>) => unknown), string | URL | ((...args: Array<unknown>) => unknown), readonly [], never>>; /** TypeScript compiler options for Twoslash. */
|
|
309
309
|
compilerOptions: Schema.optional<typeof Schema.Unknown>;
|
|
310
310
|
}>>;
|
|
311
311
|
/** @public */
|
|
@@ -320,8 +320,8 @@ declare const MultiApiConfig: Schema.mutable<Schema.Struct<{
|
|
|
320
320
|
name: Schema.optional<typeof Schema.String>; /** Base URL route for this package's API pages. */
|
|
321
321
|
baseRoute: Schema.optional<typeof Schema.String>; /** Subfolder name under `baseRoute` for API pages, or `null` to omit. */
|
|
322
322
|
apiFolder: Schema.optional<Schema.Union<[typeof Schema.String, typeof Schema.Null]>>; /** Path or loader for the `.api.json` model file (required). */
|
|
323
|
-
model: Schema.declare<string | ((...args: Array<unknown>) => unknown) | URL
|
|
324
|
-
packageJson: Schema.optional<Schema.declare<string | ((...args: Array<unknown>) => unknown) | URL
|
|
323
|
+
model: Schema.declare<string | URL | ((...args: Array<unknown>) => unknown), string | URL | ((...args: Array<unknown>) => unknown), readonly [], never>; /** Path or loader for the `package.json`. */
|
|
324
|
+
packageJson: Schema.optional<Schema.declare<string | URL | ((...args: Array<unknown>) => unknown), string | URL | ((...args: Array<unknown>) => unknown), readonly [], never>>; /** Shiki syntax-highlighting theme. */
|
|
325
325
|
theme: Schema.optional<Schema.Union<[typeof Schema.String, Schema.mutable<Schema.Struct<{
|
|
326
326
|
light: typeof Schema.String;
|
|
327
327
|
dark: typeof Schema.String;
|
|
@@ -349,7 +349,7 @@ declare const MultiApiConfig: Schema.mutable<Schema.Struct<{
|
|
|
349
349
|
externalPackages: Schema.optional<Schema.mutable<Schema.Array$<Schema.mutable<Schema.Struct<{
|
|
350
350
|
name: typeof Schema.String;
|
|
351
351
|
version: typeof Schema.String;
|
|
352
|
-
tsconfig: Schema.optional<Schema.declare<string | ((...args: Array<unknown>) => unknown) | URL
|
|
352
|
+
tsconfig: Schema.optional<Schema.declare<string | URL | ((...args: Array<unknown>) => unknown), string | URL | ((...args: Array<unknown>) => unknown), readonly [], never>>;
|
|
353
353
|
compilerOptions: Schema.optional<typeof Schema.Unknown>;
|
|
354
354
|
}>>>>>; /** Auto-detect external packages from `package.json` dependency fields. */
|
|
355
355
|
autoDetectDependencies: Schema.optional<Schema.mutable<Schema.Struct<{
|
|
@@ -397,7 +397,7 @@ declare const MultiApiConfig: Schema.mutable<Schema.Struct<{
|
|
|
397
397
|
default: () => ["markdownLink", "chatgpt", "claude"];
|
|
398
398
|
}>;
|
|
399
399
|
}>>>; /** Path to a `tsconfig.json` for Twoslash. */
|
|
400
|
-
tsconfig: Schema.optional<Schema.declare<string | ((...args: Array<unknown>) => unknown) | URL
|
|
400
|
+
tsconfig: Schema.optional<Schema.declare<string | URL | ((...args: Array<unknown>) => unknown), string | URL | ((...args: Array<unknown>) => unknown), readonly [], never>>; /** TypeScript compiler options for Twoslash. */
|
|
401
401
|
compilerOptions: Schema.optional<typeof Schema.Unknown>;
|
|
402
402
|
}>>;
|
|
403
403
|
/** @public */
|
|
@@ -413,11 +413,11 @@ declare const PluginOptions: Schema.mutable<Schema.Struct<{
|
|
|
413
413
|
name: Schema.optional<typeof Schema.String>; /** Base URL route for API pages (defaults to `/api`). */
|
|
414
414
|
baseRoute: Schema.optional<typeof Schema.String>; /** Subfolder name under `baseRoute` for API pages, or `null` to omit. */
|
|
415
415
|
apiFolder: Schema.optional<Schema.Union<[typeof Schema.String, typeof Schema.Null]>>; /** Path or loader for the `.api.json` model file. */
|
|
416
|
-
model: Schema.optional<Schema.declare<string | ((...args: Array<unknown>) => unknown) | URL
|
|
417
|
-
packageJson: Schema.optional<Schema.declare<string | ((...args: Array<unknown>) => unknown) | URL
|
|
418
|
-
versions: Schema.optional<Schema.mutable<Schema.Record$<typeof Schema.String, Schema.Union<[Schema.declare<string | ((...args: Array<unknown>) => unknown) | URL
|
|
419
|
-
/** Path or loader for the `.api.json` model file for this version. */model: Schema.declare<string | ((...args: Array<unknown>) => unknown) | URL
|
|
420
|
-
packageJson: Schema.optional<Schema.declare<string | ((...args: Array<unknown>) => unknown) | URL
|
|
416
|
+
model: Schema.optional<Schema.declare<string | URL | ((...args: Array<unknown>) => unknown), string | URL | ((...args: Array<unknown>) => unknown), readonly [], never>>; /** Path or loader for the `package.json`. */
|
|
417
|
+
packageJson: Schema.optional<Schema.declare<string | URL | ((...args: Array<unknown>) => unknown), string | URL | ((...args: Array<unknown>) => unknown), readonly [], never>>; /** Versioned models keyed by version label. */
|
|
418
|
+
versions: Schema.optional<Schema.mutable<Schema.Record$<typeof Schema.String, Schema.Union<[Schema.declare<string | URL | ((...args: Array<unknown>) => unknown), string | URL | ((...args: Array<unknown>) => unknown), readonly [], never>, Schema.mutable<Schema.Struct<{
|
|
419
|
+
/** Path or loader for the `.api.json` model file for this version. */model: Schema.declare<string | URL | ((...args: Array<unknown>) => unknown), string | URL | ((...args: Array<unknown>) => unknown), readonly [], never>; /** Path or loader for the `package.json` for this version. */
|
|
420
|
+
packageJson: Schema.optional<Schema.declare<string | URL | ((...args: Array<unknown>) => unknown), string | URL | ((...args: Array<unknown>) => unknown), readonly [], never>>; /** Category overrides for this version. */
|
|
421
421
|
categories: Schema.optional<Schema.mutable<Schema.Record$<typeof Schema.String, Schema.mutable<Schema.Struct<{
|
|
422
422
|
/** Human-readable plural display name shown in the sidebar. */displayName: typeof Schema.String; /** Human-readable singular name used in page titles. */
|
|
423
423
|
singularName: typeof Schema.String; /** Folder name under the API base route (URL segment). */
|
|
@@ -441,7 +441,7 @@ declare const PluginOptions: Schema.mutable<Schema.Struct<{
|
|
|
441
441
|
externalPackages: Schema.optional<Schema.mutable<Schema.Array$<Schema.mutable<Schema.Struct<{
|
|
442
442
|
name: typeof Schema.String;
|
|
443
443
|
version: typeof Schema.String;
|
|
444
|
-
tsconfig: Schema.optional<Schema.declare<string | ((...args: Array<unknown>) => unknown) | URL
|
|
444
|
+
tsconfig: Schema.optional<Schema.declare<string | URL | ((...args: Array<unknown>) => unknown), string | URL | ((...args: Array<unknown>) => unknown), readonly [], never>>;
|
|
445
445
|
compilerOptions: Schema.optional<typeof Schema.Unknown>;
|
|
446
446
|
}>>>>>; /** Auto-detect external packages from `package.json` dependency fields. */
|
|
447
447
|
autoDetectDependencies: Schema.optional<Schema.mutable<Schema.Struct<{
|
|
@@ -489,7 +489,7 @@ declare const PluginOptions: Schema.mutable<Schema.Struct<{
|
|
|
489
489
|
default: () => ["markdownLink", "chatgpt", "claude"];
|
|
490
490
|
}>;
|
|
491
491
|
}>>>; /** Path to a `tsconfig.json` for this version. */
|
|
492
|
-
tsconfig: Schema.optional<Schema.declare<string | ((...args: Array<unknown>) => unknown) | URL
|
|
492
|
+
tsconfig: Schema.optional<Schema.declare<string | URL | ((...args: Array<unknown>) => unknown), string | URL | ((...args: Array<unknown>) => unknown), readonly [], never>>; /** TypeScript compiler options for Twoslash. */
|
|
493
493
|
compilerOptions: Schema.optional<typeof Schema.Unknown>;
|
|
494
494
|
}>>]>>>>; /** Shiki syntax-highlighting theme. */
|
|
495
495
|
theme: Schema.optional<Schema.Union<[typeof Schema.String, Schema.mutable<Schema.Struct<{
|
|
@@ -519,7 +519,7 @@ declare const PluginOptions: Schema.mutable<Schema.Struct<{
|
|
|
519
519
|
externalPackages: Schema.optional<Schema.mutable<Schema.Array$<Schema.mutable<Schema.Struct<{
|
|
520
520
|
name: typeof Schema.String;
|
|
521
521
|
version: typeof Schema.String;
|
|
522
|
-
tsconfig: Schema.optional<Schema.declare<string | ((...args: Array<unknown>) => unknown) | URL
|
|
522
|
+
tsconfig: Schema.optional<Schema.declare<string | URL | ((...args: Array<unknown>) => unknown), string | URL | ((...args: Array<unknown>) => unknown), readonly [], never>>;
|
|
523
523
|
compilerOptions: Schema.optional<typeof Schema.Unknown>;
|
|
524
524
|
}>>>>>; /** Auto-detect external packages from `package.json` dependency fields. */
|
|
525
525
|
autoDetectDependencies: Schema.optional<Schema.mutable<Schema.Struct<{
|
|
@@ -567,7 +567,7 @@ declare const PluginOptions: Schema.mutable<Schema.Struct<{
|
|
|
567
567
|
default: () => ["markdownLink", "chatgpt", "claude"];
|
|
568
568
|
}>;
|
|
569
569
|
}>>>; /** Path to a `tsconfig.json` for Twoslash. */
|
|
570
|
-
tsconfig: Schema.optional<Schema.declare<string | ((...args: Array<unknown>) => unknown) | URL
|
|
570
|
+
tsconfig: Schema.optional<Schema.declare<string | URL | ((...args: Array<unknown>) => unknown), string | URL | ((...args: Array<unknown>) => unknown), readonly [], never>>; /** TypeScript compiler options for Twoslash. */
|
|
571
571
|
compilerOptions: Schema.optional<typeof Schema.Unknown>;
|
|
572
572
|
}>>>; /** Multi-API portal configuration (mutually exclusive with `api`). */
|
|
573
573
|
apis: Schema.optional<Schema.mutable<Schema.Array$<Schema.mutable<Schema.Struct<{
|
|
@@ -575,8 +575,8 @@ declare const PluginOptions: Schema.mutable<Schema.Struct<{
|
|
|
575
575
|
name: Schema.optional<typeof Schema.String>; /** Base URL route for this package's API pages. */
|
|
576
576
|
baseRoute: Schema.optional<typeof Schema.String>; /** Subfolder name under `baseRoute` for API pages, or `null` to omit. */
|
|
577
577
|
apiFolder: Schema.optional<Schema.Union<[typeof Schema.String, typeof Schema.Null]>>; /** Path or loader for the `.api.json` model file (required). */
|
|
578
|
-
model: Schema.declare<string | ((...args: Array<unknown>) => unknown) | URL
|
|
579
|
-
packageJson: Schema.optional<Schema.declare<string | ((...args: Array<unknown>) => unknown) | URL
|
|
578
|
+
model: Schema.declare<string | URL | ((...args: Array<unknown>) => unknown), string | URL | ((...args: Array<unknown>) => unknown), readonly [], never>; /** Path or loader for the `package.json`. */
|
|
579
|
+
packageJson: Schema.optional<Schema.declare<string | URL | ((...args: Array<unknown>) => unknown), string | URL | ((...args: Array<unknown>) => unknown), readonly [], never>>; /** Shiki syntax-highlighting theme. */
|
|
580
580
|
theme: Schema.optional<Schema.Union<[typeof Schema.String, Schema.mutable<Schema.Struct<{
|
|
581
581
|
light: typeof Schema.String;
|
|
582
582
|
dark: typeof Schema.String;
|
|
@@ -604,7 +604,7 @@ declare const PluginOptions: Schema.mutable<Schema.Struct<{
|
|
|
604
604
|
externalPackages: Schema.optional<Schema.mutable<Schema.Array$<Schema.mutable<Schema.Struct<{
|
|
605
605
|
name: typeof Schema.String;
|
|
606
606
|
version: typeof Schema.String;
|
|
607
|
-
tsconfig: Schema.optional<Schema.declare<string | ((...args: Array<unknown>) => unknown) | URL
|
|
607
|
+
tsconfig: Schema.optional<Schema.declare<string | URL | ((...args: Array<unknown>) => unknown), string | URL | ((...args: Array<unknown>) => unknown), readonly [], never>>;
|
|
608
608
|
compilerOptions: Schema.optional<typeof Schema.Unknown>;
|
|
609
609
|
}>>>>>; /** Auto-detect external packages from `package.json` dependency fields. */
|
|
610
610
|
autoDetectDependencies: Schema.optional<Schema.mutable<Schema.Struct<{
|
|
@@ -652,7 +652,7 @@ declare const PluginOptions: Schema.mutable<Schema.Struct<{
|
|
|
652
652
|
default: () => ["markdownLink", "chatgpt", "claude"];
|
|
653
653
|
}>;
|
|
654
654
|
}>>>; /** Path to a `tsconfig.json` for Twoslash. */
|
|
655
|
-
tsconfig: Schema.optional<Schema.declare<string | ((...args: Array<unknown>) => unknown) | URL
|
|
655
|
+
tsconfig: Schema.optional<Schema.declare<string | URL | ((...args: Array<unknown>) => unknown), string | URL | ((...args: Array<unknown>) => unknown), readonly [], never>>; /** TypeScript compiler options for Twoslash. */
|
|
656
656
|
compilerOptions: Schema.optional<typeof Schema.Unknown>;
|
|
657
657
|
}>>>>>; /** Canonical site URL used for Open Graph absolute URLs. */
|
|
658
658
|
siteUrl: Schema.optional<typeof Schema.String>; /** Global Open Graph image configuration (overridden per-API). */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rspress-plugin-api-extractor",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "RSPress plugin for generating API documentation from TypeScript API Extractor models",
|
|
6
6
|
"keywords": [
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"mdast-util-from-markdown": "^2.0.3",
|
|
48
48
|
"mdast-util-to-hast": "^13.2.1",
|
|
49
49
|
"open": "^11.0.0",
|
|
50
|
-
"prettier": "^3.8.
|
|
50
|
+
"prettier": "^3.8.5",
|
|
51
51
|
"react-markdown": "^10.1.0",
|
|
52
52
|
"semver-effect": "^0.2.1",
|
|
53
53
|
"shiki": "^4.3.0",
|