UNPKG

@dimfu/recipe-scraper

Version:

Extract recipe data from the web effortlessly

67 lines (66 loc) 1.56 kB
{ "name": "@dimfu/recipe-scraper", "version": "0.3.0", "description": "Extract recipe data from the web effortlessly", "publishConfig": { "access": "public" }, "license": "MIT", "homepage": "https://github.com/dimfu/recipe-scraper", "repository": { "type": "git", "url": "git+https://github.com/dimfu/recipe-scraper.git" }, "bugs": { "url": "https://github.com/dimfu/recipe-scraper/issues" }, "keywords": [ "recipe", "food-recipe", "scraper", "json-ld", "jsonld", "micro-data", "microdata" ], "exports": { "require": "./dist/index.js", "import": "./dist/index.mjs" }, "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "bin": "./dist/cli.js", "files": [ "dist" ], "scripts": { "build-fast": "tsup src/index.ts --format cjs,esm && tsup src/cli.ts", "build": "pnpm run build-fast --dts-resolve", "prepublishOnly": "pnpm run build" }, "devDependencies": { "@antfu/eslint-config": "^0.39.4", "@types/node": "^20.2.5", "eslint": "^8.41.0", "lint-staged": "^13.2.2", "simple-git-hooks": "^2.8.1", "tsup": "6.6.3", "typescript": "4.9.5" }, "simple-git-hooks": { "pre-commit": "pnpm lint-staged" }, "lint-staged": { "*": "eslint --fix" }, "dependencies": { "axios": "^1.4.0", "cheerio": "1.0.0-rc.12", "commander": "^10.0.1", "iso8601-duration": "^2.1.1", "jsonschema": "^1.4.1", "microdata-node": "^2.0.0", "schema-dts": "^1.1.2" } }