-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "@0xquinto/rss-mcp",
"version": "1.1.3",
"description": "MCP server for RSS feed management with full-text search and HackerNews ranking",
"main": "dist/index.js",
"bin": {
"rss-mcp": "dist/index.js"
},
"type": "module",
"scripts": {
"build": "bun run tsc",
"start": "bun dist/index.js",
"dev": "bun --watch src/index.ts",
"prepublishOnly": "bun run build",
"version:bump": "node scripts/bump-version.mjs",
"release": "node scripts/bump-version.mjs patch && npm publish --access public && git add -A && git commit -m \"chore: release v$(node -p \"require('./package.json').version\")\" && git push"
},
"keywords": [
"mcp",
"rss",
"feeds",
"hackernews",
"claude",
"ai",
"model-context-protocol"
],
"author": "Diego Gomez <diego.gomez210@gmail.com>",
"license": "MIT",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/0xquinto/rss-mcp"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"@mozilla/readability": "^0.6.0",
"better-sqlite3": "^12.0.0",
"feedsmith": "^1.0.0",
"linkedom": "^0.18.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.0",
"@types/node": "^22.0.0",
"tsx": "^4.0.0",
"typescript": "^5.7.0"
}
}