forked from dimfu/recipe-scraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.52 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"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": "7.0.0",
"typescript": "5.1.3"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
},
"dependencies": {
"axios": "^1.4.0",
"cheerio": "1.0.0-rc.12",
"commander": "^11.0.0",
"iso8601-duration": "^2.1.1",
"jsonschema": "^1.4.1",
"microdata-node": "^2.0.0",
"schema-dts": "^1.1.2"
}
}