{
  "name": "recipe-scrapers",
  "version": "1.10.0",
  "license": "MIT",
  "description": "A TypeScript library for scraping recipe data from various cooking websites",
  "author": {
    "name": "Justin Williams",
    "url": "https://github.com/nerdstep"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/recipe-scrapers/recipe-scrapers.git"
  },
  "homepage": "https://github.com/recipe-scrapers/recipe-scrapers#readme",
  "bugs": {
    "url": "https://github.com/recipe-scrapers/recipe-scrapers/issues"
  },
  "type": "module",
  "module": "dist/index.mjs",
  "main": "dist/index.mjs",
  "types": "dist/index.d.mts",
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "types": "./dist/index.d.mts",
      "import": "./dist/index.mjs"
    }
  },
  "files": [
    "dist",
    "docs",
    "CHANGELOG.md",
    "CONTRIBUTING.md",
    "GOVERNANCE.md",
    "LICENSE",
    "README.md"
  ],
  "keywords": [
    "recipe",
    "scraper",
    "parser",
    "food",
    "cooking"
  ],
  "scripts": {
    "build": "tsdown",
    "test": "bun test",
    "test:coverage": "bun run test --coverage",
    "fetch-test-data": "bun scripts/fetch-test-data.ts",
    "process-test-data": "bun scripts/process-test-data.ts",
    "lint": "biome check && bun run ts:check",
    "lint:fix": "biome check --write",
    "ts:check": "tsc --noEmit",
    "prepublishOnly": "bun run lint && bun run build"
  },
  "peerDependencies": {
    "cheerio": "^1",
    "zod": "^4"
  },
  "dependencies": {
    "@standard-schema/spec": "^1.1.0",
    "@standard-schema/utils": "^0.3.0",
    "iso8601-duration": "^2.1.4",
    "parse-ingredient": "^2.2.0"
  },
  "devDependencies": {
    "@biomejs/biome": "2.5.1",
    "@types/bun": "^1.3.14",
    "cheerio": "^1.2.0",
    "schema-dts": "^2.0.0",
    "tsdown": "^0.22.3",
    "typescript": "^6.0.3",
    "valibot": "^1.4.2",
    "zod": "^4.4.3"
  }
}
