mirror of
https://github.com/ckelsoe/obsidian-rss-importer.git
synced 2026-07-22 07:48:56 +00:00
First stable release of the free and public-content importer. Bundles this cycle's import-window work (endless scroll, select-all, loaded and selected counts), custom-domain Substack detection via the feed generator marker, and a per-feed Re-detect button to upgrade a feed saved as generic in place. Importing full bodies of paid Substack posts is deferred to a later release.
47 lines
1.3 KiB
JSON
47 lines
1.3 KiB
JSON
{
|
|
"name": "rss-importer",
|
|
"version": "1.0.0",
|
|
"description": "Import articles and podcasts from RSS, Atom, and Substack feeds into your vault as Markdown notes, organized by source feed and deduplicated by note identity.",
|
|
"main": "main.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"lint": "eslint . --max-warnings 0 && node scripts/check-submission.mjs",
|
|
"test": "jest",
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json"
|
|
},
|
|
"keywords": [],
|
|
"author": "Charles Kelsoe (ckelsoe)",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"turndown": "^7.2.4",
|
|
"turndown-plugin-gfm": "^1.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.39.2",
|
|
"@types/jest": "^30.0.0",
|
|
"@types/node": "^24.0.7",
|
|
"@types/turndown": "^5.0.6",
|
|
"esbuild": "^0.28.1",
|
|
"eslint": "^9.39.2",
|
|
"eslint-plugin-obsidianmd": "^0.3.0",
|
|
"globals": "^17.1.0",
|
|
"jest": "^30.2.0",
|
|
"jest-environment-jsdom": "^30.4.1",
|
|
"jiti": "^2.6.1",
|
|
"obsidian": "^1.13.0",
|
|
"ts-jest": "^29.4.6",
|
|
"tslib": "^2.8.1",
|
|
"typescript": "^5.8.3",
|
|
"typescript-eslint": "^8.35.1"
|
|
},
|
|
"overrides": {
|
|
"handlebars": "^4.7.9",
|
|
"picomatch": "^2.3.2",
|
|
"flatted": "^3.4.0",
|
|
"ajv": "^6.14.0",
|
|
"brace-expansion@1": "^1.1.13",
|
|
"brace-expansion@2": "^2.0.3"
|
|
}
|
|
}
|