-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
43 lines (43 loc) · 1.06 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
{
"name": "scrapegraph-js",
"author": "ScrapeGraphAI",
"version": "0.0.4",
"description": "Scrape and extract structured data from a webpage using ScrapeGraphAI's APIs.",
"repository": {
"type": "git",
"url": "https://github.com/ScrapeGraphAI/scrapegraph-sdk",
"directory": "scrapegraph-js"
},
"scripts": {
"format": "prettier --write --cache --cache-strategy metadata . !dist",
"lint": "eslint ."
},
"license": "MIT",
"homepage": "https://github.com/ScrapeGraphAI/scrapegraph-sdk/tree/main/scrapegraph-js",
"keywords": [
"scraping",
"webscraping",
"automated-scraper",
"gpt-3",
"gpt-4",
"llm",
"ai"
],
"main": "index.js",
"module": "index.js",
"type": "module",
"dependencies": {
"axios": "^1.6.0",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.23.5"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"dotenv": "^16.4.5",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.12.0",
"prettier": "3.4.1"
}
}