new listings daily roundups rss

This commit is contained in:
2026-05-03 08:11:23 -07:00
parent d3441c94b0
commit 7a7e977270
28 changed files with 611 additions and 4 deletions

50
node_modules/@11ty/eleventy-plugin-rss/package.json generated vendored Normal file
View File

@ -0,0 +1,50 @@
{
"name": "@11ty/eleventy-plugin-rss",
"version": "3.0.0",
"type": "module",
"description": "Generate an Atom, RSS, or JSON feed.",
"publishConfig": {
"access": "public"
},
"main": ".eleventy.js",
"scripts": {
"test": "npx ava",
"sample": "cd sample && npx @11ty/eleventy --config=config-sample.js --pathprefix=pathprefix",
"clean": "rm -rf sample/_site"
},
"repository": {
"type": "git",
"url": "git+https://github.com/11ty/eleventy-plugin-rss.git"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/11ty"
},
"keywords": [
"eleventy",
"eleventy-plugin"
],
"author": {
"name": "Zach Leatherman",
"email": "zachleatherman@gmail.com",
"url": "https://zachleat.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/11ty/eleventy-plugin-rss/issues"
},
"homepage": "https://www.11ty.dev/docs/plugins/rss/",
"11ty": {
"compatibility": ">=3.0.0-alpha.15"
},
"devDependencies": {
"@11ty/eleventy": "^3.1.5",
"ava": "^6.4.1"
},
"dependencies": {
"@11ty/eleventy-utils": "^2.0.7",
"@11ty/posthtml-urls": "^1.0.2",
"debug": "^4.4.3",
"posthtml": "^0.16.7"
}
}