-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 801 Bytes
/
Copy pathpackage.json
File metadata and controls
20 lines (20 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "paper-daily-public-rss",
"version": "0.1.0",
"private": true,
"license": "MIT",
"type": "module",
"description": "RSS-only public GitHub Pages edition of PaperDaily.",
"scripts": {
"serve": "python3 -m http.server 8080",
"prepare:public": "node scripts/prepare-public-rss-data.mjs",
"fetch:rss": "PAPER_DAILY_LOOKBACK_DAYS=14 PAPER_DAILY_STRICT_JOURNAL_RSS=1 PAPER_DAILY_INCLUDE_WECHAT=0 node scripts/fetch-sources.mjs",
"score:rss": "PAPER_DAILY_LOOKBACK_DAYS=14 PAPER_DAILY_RSS_ONLY=1 node scripts/score-papers.mjs",
"verify:rss-only": "node scripts/verify-public-rss-only.mjs",
"verify:scoring": "node scripts/verify-public-scoring.mjs",
"verify": "npm run verify:rss-only && npm run verify:scoring"
},
"engines": {
"node": ">=20"
}
}