-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.74 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.74 KB
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
{
"name": "ai-sdk-scrapegraphai-tools",
"version": "1.0.0",
"description": "ScrapeGraphAI Tools for AI SDK to scrape from websites",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format esm --dts",
"test": "tsx --env-file=.env src/test.ts",
"test:smartScraper": "tsx --env-file=.env src/tests/smartScraper.test.ts",
"test:scrape": "tsx --env-file=.env src/tests/scrape.test.ts",
"test:searchScraper": "tsx --env-file=.env src/tests/searchScraper.test.ts",
"test:markdownify": "tsx --env-file=.env src/tests/markdownify.test.ts",
"test:sitemap": "tsx --env-file=.env src/tests/sitemap.test.ts",
"test:localScraper": "tsx --env-file=.env src/tests/localScraper.test.ts",
"test:crawl": "tsx --env-file=.env src/tests/crawl.test.ts",
"test:getCredits": "tsx --env-file=.env src/tests/getCredits.test.ts",
"test:agenticScraper": "tsx --env-file=.env src/tests/agenticScraper.test.ts",
"prepublishOnly": "pnpm build"
},
"keywords": [
"ai",
"ai-sdk",
"tools",
"scrape",
"scrape-graph",
"scrape-graph-ai",
"scrape-graph-ai-tools",
"scrape-graph-ai-tools-for-ai-sdk"
],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.8.0",
"devDependencies": {
"@types/node": "^24.10.1",
"@vitest/ui": "^4.0.9",
"dotenv": "^17.2.3",
"tsup": "^8.5.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^4.0.9"
},
"dependencies": {
"ai": "^5.0.92",
"scrapegraph-js": "^0.2.4",
"zod": "^4.1.12"
}
}