-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.26 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
{
"name": "mreader",
"version": "2.0.0",
"description": "Extract clean Markdown from any URL",
"type": "module",
"bin": {
"mreader": "./dist/cli.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepare": "bun run build",
"release": "np",
"test": "bun test",
"format": "biome check --write .",
"format:check": "biome check ."
},
"keywords": [
"markdown",
"reader",
"readability",
"article",
"extractor",
"cli",
"url-to-markdown",
"html-to-markdown",
"content-negotiation",
"turndown",
"scraper"
],
"author": "Roman Ožana",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/OzzyCzech/mreader.git"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"@extractus/article-extractor": "^8.0.20",
"turndown": "^7.2.4"
},
"devDependencies": {
"@biomejs/biome": "^2.4.13",
"@ozzyczech/tsconfig": "^2.1.0",
"@types/bun": "^1.3.13",
"@types/node": "^25.6.0",
"@types/turndown": "^5.0.6",
"np": "^11.2.0",
"tsup": "^8.5.1",
"typescript": "^6.0.3"
}
}