feedparser-rs 0.5.1 → 0.5.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.
Files changed (2) hide show
  1. package/README.md +1 -0
  2. package/package.json +4 -12
package/README.md CHANGED
@@ -165,6 +165,7 @@ interface Entry {
165
165
  authors: Person[];
166
166
  tags: Tag[];
167
167
  enclosures: Enclosure[];
168
+ media_title?: string;
168
169
  }
169
170
  ```
170
171
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "feedparser-rs",
3
- "version": "0.5.1",
3
+ "version": "0.5.3",
4
4
  "description": "High-performance RSS/Atom/JSON Feed parser for Node.js",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -47,16 +47,8 @@
47
47
  "prepublishOnly": "napi prepublish -t npm"
48
48
  },
49
49
  "devDependencies": {
50
- "@biomejs/biome": "^2.4.0",
51
- "@napi-rs/cli": "^3.5.1",
52
- "c8": "^11.0"
53
- },
54
- "overrides": {
55
- "minimatch": ">=10.2.4"
56
- },
57
- "pnpm": {
58
- "overrides": {
59
- "minimatch": ">=10.2.4"
60
- }
50
+ "@biomejs/biome": "^2.4.12",
51
+ "@napi-rs/cli": "^3.6.2",
52
+ "c8": "^11.0.0"
61
53
  }
62
54
  }