@shisho/plugin-sdk 0.0.44 → 0.0.46

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/manifest.d.ts CHANGED
@@ -41,7 +41,6 @@ export type MetadataField =
41
41
  | "tags"
42
42
  | "description"
43
43
  | "publisher"
44
- | "imprint"
45
44
  | "url"
46
45
  | "releaseDate"
47
46
  | "cover"
package/metadata.d.ts CHANGED
@@ -42,7 +42,6 @@ export interface ParsedMetadata {
42
42
  tags?: string[];
43
43
  description?: string;
44
44
  publisher?: string;
45
- imprint?: string;
46
45
  url?: string;
47
46
  /** BCP 47 language tag (e.g., "en", "en-US", "zh-Hans"). */
48
47
  language?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shisho/plugin-sdk",
3
- "version": "0.0.44",
3
+ "version": "0.0.46",
4
4
  "description": "TypeScript SDK for Shisho plugin development — types, host API declarations, and test utilities",
5
5
  "homepage": "https://github.com/shishobooks/shisho/blob/master/packages/plugin-sdk/README.md",
6
6
  "types": "index.d.ts",
@@ -26,8 +26,8 @@
26
26
  "directory": "packages/plugin-sdk"
27
27
  },
28
28
  "dependencies": {
29
- "fast-xml-parser": "^5.7.2",
29
+ "fast-xml-parser": "^5.8.0",
30
30
  "linkedom": "^0.18.12",
31
- "yaml": "^2.6.1"
31
+ "yaml": "^2.9.0"
32
32
  }
33
33
  }