@vakra-dev/reader 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,87 @@
1
+ {
2
+ "name": "@vakra-dev/reader",
3
+ "version": "0.0.1",
4
+ "description": "Open source, production grade web scraping engine for LLMs. Clean markdown output, ready for your agents.",
5
+ "license": "Apache-2.0",
6
+ "type": "module",
7
+ "main": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "bin": {
10
+ "reader": "./dist/cli/index.js"
11
+ },
12
+ "exports": {
13
+ ".": {
14
+ "import": "./dist/index.js",
15
+ "types": "./dist/index.d.ts"
16
+ }
17
+ },
18
+ "files": [
19
+ "dist",
20
+ "README.md",
21
+ "LICENSE"
22
+ ],
23
+ "keywords": [
24
+ "web-scraper",
25
+ "web-crawler",
26
+ "markdown",
27
+ "llm",
28
+ "rag",
29
+ "ai-agents",
30
+ "headless-browser",
31
+ "typescript",
32
+ "nodejs",
33
+ "puppeteer-alternative",
34
+ "playwright-alternative",
35
+ "firecrawl-alternative",
36
+ "crawl4ai-alternative",
37
+ "content-extraction",
38
+ "html-to-markdown",
39
+ "web-scraping",
40
+ "ai",
41
+ "ulixee-hero"
42
+ ],
43
+ "author": "Nihal <nihal.codes@gmail.com>",
44
+ "repository": {
45
+ "type": "git",
46
+ "url": "https://github.com/vakra-dev/reader.git"
47
+ },
48
+ "scripts": {
49
+ "start": "node dist/cli/index.js",
50
+ "lint": "eslint src/",
51
+ "lint:fix": "eslint src/ --fix",
52
+ "format": "prettier --write 'src/**/*.ts'",
53
+ "format:check": "prettier --check 'src/**/*.ts'",
54
+ "todo": "leasot 'src/**/*.ts'",
55
+ "typecheck": "tsc --noEmit",
56
+ "build": "tsup",
57
+ "build:tsc": "tsc",
58
+ "dev": "tsup --watch",
59
+ "clean": "rm -rf dist",
60
+ "prepublishOnly": "npm run clean && npm run build"
61
+ },
62
+ "dependencies": {
63
+ "@ulixee/hero": "^2.0.0-alpha.34",
64
+ "@ulixee/hero-core": "^2.0.0-alpha.34",
65
+ "commander": "^12.0.0",
66
+ "linkedom": "^0.18.12",
67
+ "p-limit": "^4.0.0",
68
+ "pino": "^9.0.0",
69
+ "re2": "^1.23.0",
70
+ "turndown": "^7.2.0"
71
+ },
72
+ "devDependencies": {
73
+ "@types/node": "^20.10.6",
74
+ "@types/turndown": "^5.0.6",
75
+ "@typescript-eslint/eslint-plugin": "^7.0.0",
76
+ "@typescript-eslint/parser": "^7.0.0",
77
+ "eslint": "^8.57.0",
78
+ "leasot": "^13.3.0",
79
+ "pino-pretty": "^13.1.3",
80
+ "prettier": "^3.2.0",
81
+ "tsup": "^8.5.1",
82
+ "typescript": "^5.3.3"
83
+ },
84
+ "engines": {
85
+ "node": ">=18"
86
+ }
87
+ }