-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.14 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
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "rdrr",
"version": "0.5.0",
"private": false,
"description": "Convert any URL to clean markdown for AI agents.",
"keywords": [
"ai-agents",
"content-extraction",
"html-to-markdown",
"llm",
"markdown",
"rdrr",
"readability",
"reader",
"web-scraping",
"x-twitter",
"youtube-transcript"
],
"homepage": "https://rdrr.app",
"bugs": {
"url": "https://github.com/fkonovalov/rdrr/issues"
},
"license": "MIT",
"author": {
"name": "Finn Paketborsha",
"url": "https://github.com/fkonovalov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fkonovalov/rdrr.git"
},
"bin": {
"rdrr": "./dist/cli.mjs",
"rdrr-mcp": "./dist/mcp.mjs"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"type": "module",
"sideEffects": [
"./dist/parse-html.mjs",
"./dist/esm.mjs",
"./src/extract/sites/init.ts",
"./src/extract/sites/*.ts"
],
"types": "./dist/index.d.mts",
"typesVersions": {
"*": {
"extract": [
"./dist/extract/index.d.mts"
]
}
},
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"./extract": {
"types": "./dist/extract/index.d.mts",
"default": "./dist/extract/index.mjs"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc --noEmit && tsdown",
"dev": "tsdown --watch",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "knip && oxlint ./src",
"fmt": "oxfmt --write .",
"prepublishOnly": "pnpm lint && pnpm test && pnpm build"
},
"devDependencies": {
"@modelcontextprotocol/sdk": "1.29.0",
"@types/node": "25.9.0",
"@vitest/coverage-v8": "4.1.6",
"commander": "14.0.3",
"knip": "6.14.1",
"linkedom": "0.18.12",
"oxfmt": "0.50.0",
"oxlint": "1.65.0",
"tsdown": "0.22.0",
"turndown": "7.2.4",
"typescript": "6.0.3",
"vitest": "4.1.6",
"zod": "4.4.3"
},
"engines": {
"node": ">=20.17.0"
},
"packageManager": "pnpm@9.15.1"
}