-
Notifications
You must be signed in to change notification settings - Fork 397
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1015 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1015 Bytes
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
{
"type": "module",
"name": "llm-scraper",
"version": "2.0.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": "^3.0.8",
"ai": "^6.0.77",
"turndown": "^7.2.2"
},
"devDependencies": {
"@ai-sdk/openai": "^3.0.26",
"@types/node": "^25.2.1",
"@types/react": "^19.2.13",
"playwright": "^1.58.2",
"typescript": "^5.9.3",
"vitest": "^4.0.18",
"zod": "^4.3.6"
}
}