agentic-rss-parser 1.0.3 → 1.0.5
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/CHANGELOG.md +9 -1
- package/README.md +8 -0
- package/SUPPORT.md +2 -0
- package/package.json +30 -27
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.0.4
|
|
4
|
+
|
|
5
|
+
- Bugs fixes and enhancements.
|
|
6
|
+
|
|
7
|
+
## 1.0.5
|
|
8
|
+
|
|
9
|
+
- Bugs fixes and enhancements.
|
|
10
|
+
|
|
3
11
|
## 1.0.3
|
|
4
12
|
|
|
5
|
-
-
|
|
13
|
+
- Bugs fixes and enhancements.
|
|
6
14
|
|
|
7
15
|
## 1.0.2
|
|
8
16
|
|
package/README.md
CHANGED
|
@@ -22,6 +22,14 @@ Why Node.js 22.5.0 or newer:
|
|
|
22
22
|
- `node:sqlite` was added in Node.js 22.5.0
|
|
23
23
|
- Node.js 20 does not support the current codebase
|
|
24
24
|
|
|
25
|
+
The CI workflow validates the package on Node.js 22.x and 24.x.
|
|
26
|
+
|
|
27
|
+
Release and validation workflow:
|
|
28
|
+
|
|
29
|
+
- CI runs the supported Node.js matrix and validates install, tests, audit, and packaging
|
|
30
|
+
- `npm run release:npm` and `pnpm run release:pnpm` are the documented release entry points
|
|
31
|
+
- the release checks are aligned with [`SUPPORT.md`](./SUPPORT.md) and [`PUBLISHING.md`](./PUBLISHING.md)
|
|
32
|
+
|
|
25
33
|
## Design Goals
|
|
26
34
|
|
|
27
35
|
- compatible migration path for `rss-parser`-style code
|
package/SUPPORT.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "agentic-rss-parser",
|
|
3
|
-
"version": "1.0.
|
|
1
|
+
{
|
|
2
|
+
"name": "agentic-rss-parser",
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=22.5.0"
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"access": "public"
|
|
23
23
|
},
|
|
24
24
|
"main": "./src/index.js",
|
|
25
|
-
"types": "./src/index.d.ts",
|
|
25
|
+
"types": "./src/index.d.ts",
|
|
26
26
|
"repository": {
|
|
27
27
|
"type": "git",
|
|
28
28
|
"url": "git+https://github.com/bluecarbons/agentic-rss-parser.git"
|
|
@@ -32,17 +32,26 @@
|
|
|
32
32
|
"url": "https://github.com/bluecarbons/agentic-rss-parser/issues"
|
|
33
33
|
},
|
|
34
34
|
"bin": {
|
|
35
|
-
"agentic-rss
|
|
35
|
+
"agentic-rss": "./agentic-rss-parser",
|
|
36
36
|
"agentic-rss-mcp": "./agentic-rss-mcp"
|
|
37
37
|
},
|
|
38
|
-
"exports": {
|
|
39
|
-
".": {
|
|
40
|
-
"types": "./src/index.d.ts",
|
|
41
|
-
"default": "./src/index.js"
|
|
42
|
-
},
|
|
43
|
-
"./cli": "./src/cli.js",
|
|
44
|
-
"./mcp": "./src/mcp/server.js"
|
|
38
|
+
"exports": {
|
|
39
|
+
".": {
|
|
40
|
+
"types": "./src/index.d.ts",
|
|
41
|
+
"default": "./src/index.js"
|
|
42
|
+
},
|
|
43
|
+
"./cli": "./src/cli.js",
|
|
44
|
+
"./mcp": "./src/mcp/server.js"
|
|
45
|
+
},
|
|
46
|
+
"scripts": {
|
|
47
|
+
"start": "node ./src/cli.js",
|
|
48
|
+
"mcp": "node ./src/mcp/server.js",
|
|
49
|
+
"test": "node --test",
|
|
50
|
+
"lint": "node --check ./src/cli.js",
|
|
51
|
+
"release:npm": "npm publish --access public",
|
|
52
|
+
"release:pnpm": "corepack pnpm publish --access public --no-git-checks"
|
|
45
53
|
},
|
|
54
|
+
"packageManager": "pnpm@9.15.4",
|
|
46
55
|
"files": [
|
|
47
56
|
"agentic-rss-parser",
|
|
48
57
|
"agentic-rss-mcp",
|
|
@@ -56,18 +65,12 @@
|
|
|
56
65
|
"LICENSE",
|
|
57
66
|
"CONTRIBUTING.md"
|
|
58
67
|
],
|
|
59
|
-
"dependencies": {
|
|
60
|
-
"@ai-sdk/anthropic": "3.0.85",
|
|
61
|
-
"@ai-sdk/openai": "3.0.73",
|
|
62
|
-
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
63
|
-
"ai": "6.0.208",
|
|
64
|
-
"fast-xml-parser": "5.9.3",
|
|
65
|
-
"zod": "4.4.3"
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
"start": "node ./src/cli.js",
|
|
69
|
-
"mcp": "node ./src/mcp/server.js",
|
|
70
|
-
"test": "node --test",
|
|
71
|
-
"lint": "node --check ./src/cli.js"
|
|
72
|
-
}
|
|
73
|
-
}
|
|
68
|
+
"dependencies": {
|
|
69
|
+
"@ai-sdk/anthropic": "3.0.85",
|
|
70
|
+
"@ai-sdk/openai": "3.0.73",
|
|
71
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
72
|
+
"ai": "6.0.208",
|
|
73
|
+
"fast-xml-parser": "5.9.3",
|
|
74
|
+
"zod": "4.4.3"
|
|
75
|
+
}
|
|
76
|
+
}
|