recipe-scrapers-js
Version:
A recipe scrapers library
68 lines (67 loc) • 1.57 kB
JSON
{
"name": "recipe-scrapers-js",
"version": "1.0.0",
"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.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",
"LICENSE",
"README.md"
],
"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",
"zod": "^4"
},
"dependencies": {
"iso8601-duration": "^2.1.3",
"parse-ingredient": "^1.3.3",
"schema-dts": "^1.1.5"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@types/bun": "^1.3.0",
"cheerio": "^1.1.2",
"tsdown": "^0.19.0",
"typescript": "^5.9.3",
"zod": "^4.3.5"
}
}