recipe-scrapers-js
Version:
A recipe scrapers library
57 lines (56 loc) • 1.35 kB
JSON
{
"name": "recipe-scrapers-js",
"version": "0.1.0-alpha.7",
"license": "MIT",
"description": "A recipe scrapers library",
"author": {
"name": "Justin Williams",
"url": "https://github.com/nerdstep"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nerdstep/recipe-scrapers-js.git"
},
"type": "module",
"module": "dist/index.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"recipe",
"scraper",
"parser",
"food",
"cooking"
],
"scripts": {
"build": "tsdown src/index.ts --outdir dist",
"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.1.0",
"zod": "^3.25.76"
},
"dependencies": {
"iso8601-duration": "^2.1.2",
"schema-dts": "^1.1.5"
},
"devDependencies": {
"@biomejs/biome": "^2.1.1",
"@types/bun": "^1.2.18",
"cheerio": "^1.1.0",
"tsdown": "^0.12.9",
"typescript": "^5.8.3"
}
}