{
  "name": "@bliztek/feed-generator",
  "version": "2.2.0",
  "description": "A simple and lightweight Node.js library for generating RSS 2.0, Atom, and JSON Feed formats.",
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.js",
  "types": "dist/cjs/index.d.ts",
  "sideEffects": false,
  "exports": {
    ".": {
      "import": {
        "types": "./dist/esm/index.d.ts",
        "default": "./dist/esm/index.js"
      },
      "require": {
        "types": "./dist/cjs/index.d.ts",
        "default": "./dist/cjs/index.js"
      }
    }
  },
  "packageManager": "pnpm@10.30.3",
  "author": "Steven Brown",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://gitlab.com/bliztek/feed-generator.git"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org"
  },
  "scripts": {
    "clean": "rm -rf dist",
    "build": "pnpm run clean && tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json",
    "test": "jest --passWithNoTests",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "prepare": "pnpm run build"
  },
  "keywords": [
    "rss",
    "atom",
    "json-feed",
    "generator",
    "blog",
    "syndication",
    "podcast",
    "itunes",
    "content-encoded",
    "media-rss",
    "websub",
    "xslt"
  ],
  "files": [
    "dist/cjs/**/*.js",
    "dist/cjs/**/*.d.ts",
    "dist/esm/**/*.js",
    "dist/esm/**/*.d.ts",
    "README.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "devDependencies": {
    "@types/jest": "^29.5.14",
    "fast-xml-parser": "^5.5.4",
    "jest": "^29.7.0",
    "ts-jest": "^29.2.5",
    "typescript": "^6.0.2"
  }
}
