feed
Version:
Feed is a RSS, Atom and JSON feed generator for Node.js, making content syndication simple and intuitive!
61 lines • 1.35 kB
JSON
{
"name": "feed",
"version": "6.0.0",
"type": "module",
"description": "Feed is a RSS, Atom and JSON feed generator for Node.js, making content syndication simple and intuitive!",
"homepage": "https://github.com/jpmonette/feed",
"author": "Jean-Philippe Monette <contact@jpmonette.net>",
"license": "MIT",
"main": "lib/feed.js",
"types": "lib/feed.d.ts",
"exports": {
".": {
"import": "./lib/feed.js",
"require": "./lib/feed.js",
"types": "./lib/feed.d.ts"
}
},
"sideEffects": false,
"files": [
"!**/*.map",
"lib"
],
"keywords": [
"rss",
"atom",
"feed",
"syndication",
"xml",
"wrapper",
"blog"
],
"dependencies": {
"xml-js": "^1.6.11"
},
"devDependencies": {
"@biomejs/biome": "^2.5.2",
"tsdown": "^0.11.2",
"typescript": "^5.8.3",
"vitest": "^4.1.9"
},
"engines": {
"node": ">=20",
"pnpm": ">=10"
},
"bugs": {
"url": "https://github.com/jpmonette/feed/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jpmonette/feed.git"
},
"scripts": {
"build": "tsdown",
"prepublish": "pnpm build",
"test": "vitest run",
"lint": "biome check src",
"lint:fix": "biome check --write src",
"format": "biome format src",
"format:fix": "biome format --write src"
}
}