{
  "name": "feedparser-rs",
  "version": "0.7.0",
  "description": "High-performance RSS/Atom/JSON Feed parser for Node.js",
  "main": "index.js",
  "types": "index.d.ts",
  "repository": {
    "type": "git",
    "url": "https://github.com/bug-ops/feedparser-rs.git"
  },
  "license": "MIT OR Apache-2.0",
  "keywords": [
    "rss",
    "atom",
    "feed",
    "parser",
    "feedparser",
    "json-feed",
    "rust",
    "napi-rs"
  ],
  "files": [
    "index.js",
    "index.d.ts"
  ],
  "napi": {
    "binaryName": "feedparser-rs",
    "targets": [
      "x86_64-apple-darwin",
      "aarch64-apple-darwin",
      "x86_64-unknown-linux-gnu",
      "aarch64-unknown-linux-gnu",
      "x86_64-pc-windows-msvc"
    ]
  },
  "engines": {
    "node": ">= 18"
  },
  "scripts": {
    "build": "napi build --platform --release",
    "build:debug": "napi build --platform",
    "test": "node --test __test__/index.spec.mjs __test__/phase3-fields.spec.mjs __test__/syndication.spec.mjs",
    "test:coverage": "c8 --reporter=lcov --reporter=text --reports-dir=coverage node --test __test__/index.spec.mjs __test__/phase3-fields.spec.mjs __test__/syndication.spec.mjs",
    "lint": "biome check .",
    "lint:fix": "biome check --write .",
    "format": "biome format --write .",
    "prepublishOnly": "napi prepublish -t npm"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.5.8",
    "@napi-rs/cli": "^3.8.6",
    "c8": "^12.0.0"
  },
  "pnpm": {
    "overrides": {
      "brace-expansion": "^5.0.9"
    }
  }
}
