-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 944 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 944 Bytes
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
{
"name": "qmreader",
"version": "1.0.0",
"description": "Neutral online RSS reader powered by RSSHub and direct feeds",
"license": "MIT",
"homepage": "https://rss.qiaomu.ai",
"repository": {
"type": "git",
"url": "https://github.com/joeseesun/qmreader.git"
},
"keywords": [
"rss",
"rss-reader",
"rsshub",
"self-hosted",
"deepseek",
"ai-workflow"
],
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "node server.js",
"test": "node --test test/*.test.js",
"icons:generate": "node scripts/generate-lucide-icons.js",
"refresh:worker": "node scripts/refresh-worker.js --kind=refresh"
},
"dependencies": {
"cheerio": "^1.2.0",
"compression": "^1.8.1",
"dompurify": "3.4.11",
"express": "^4.19.2",
"iconv-lite": "^0.6.3",
"rss-parser": "^3.13.0",
"undici": "^7.28.0"
},
"devDependencies": {
"lucide": "^1.22.0"
}
}