-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.08 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.08 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@vakra-dev/reader",
"version": "0.1.2",
"description": "Open source, production grade web scraping engine for LLMs. Clean markdown output, ready for your agents.",
"license": "Apache-2.0",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"reader": "./dist/cli/index.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"web-scraper",
"web-crawler",
"markdown",
"llm",
"rag",
"ai-agents",
"headless-browser",
"typescript",
"nodejs",
"puppeteer-alternative",
"playwright-alternative",
"firecrawl-alternative",
"crawl4ai-alternative",
"content-extraction",
"html-to-markdown",
"web-scraping",
"ai",
"ulixee-hero"
],
"author": "Nihal <nihal.codes@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/vakra-dev/reader.git"
},
"scripts": {
"start": "node dist/cli/index.js",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write 'src/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts'",
"todo": "leasot 'src/**/*.ts'",
"typecheck": "tsc --noEmit",
"build": "tsup",
"build:tsc": "tsc",
"dev": "tsup --watch",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"dependencies": {
"@ulixee/hero": "^2.0.0-alpha.34",
"@ulixee/hero-core": "^2.0.0-alpha.34",
"commander": "^12.0.0",
"got-scraping": "^4.1.3",
"linkedom": "^0.18.12",
"p-limit": "^4.0.0",
"pino": "^9.0.0",
"re2": "^1.23.0",
"@vakra-dev/supermarkdown": "^0.0.3"
},
"devDependencies": {
"@types/node": "^20.10.6",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.57.0",
"leasot": "^13.3.0",
"pino-pretty": "^13.1.3",
"prettier": "^3.2.0",
"tsup": "^8.5.1",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18"
}
}