forked from mishushakov/llm-scraper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.06 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.06 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
{
"type": "module",
"name": "llm-scraper",
"version": "1.6.0",
"description": "Turn any webpage intro structured data using LLMs",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "vitest run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mishushakov/llm-scraper.git"
},
"keywords": [
"llm",
"scraper",
"browser",
"playwright",
"puppeteer"
],
"author": "Mish Ushakov <mishushakov@users.noreply.github.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mishushakov/llm-scraper/issues"
},
"homepage": "https://github.com/mishushakov/llm-scraper#readme",
"dependencies": {
"@ai-sdk/provider": "^1.1.3",
"ai": "^4.3.15",
"turndown": "^7.2.0",
"zod-to-json-schema": "^3.24.5"
},
"devDependencies": {
"@ai-sdk/openai": "^1.3.22",
"@types/node": "^22.15.18",
"@types/react": "^18.2.79",
"ollama-ai-provider": "^1.2.0",
"playwright": "^1.52.0",
"typescript": "^5.8.3",
"vitest": "^3.1.3",
"zod": "^3.24.4"
}
}