-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.09 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.09 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
{
"name": "mapdown",
"version": "1.0.2",
"description": "A CLI tool to crawl sitemap.xml and convert all pages to LLM-friendly Markdown",
"type": "module",
"main": "dist/cli.js",
"bin": {
"mapdown": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"test": "vitest",
"test:watch": "vitest --watch",
"dev": "tsx src/cli.ts",
"start": "node dist/cli.js"
},
"keywords": [
"sitemap",
"crawler",
"markdown",
"llm",
"web-scraping"
],
"author": "Keisuke Sato <keisuke@allaction.co.jp>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/riaf/mapdown"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"playwright": "^1.53.1",
"turndown": "^7.1.2",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@biomejs/biome": "2.0.6",
"@types/node": "^24.0.6",
"@types/turndown": "^5.0.4",
"@types/xml2js": "^0.4.14",
"lefthook": "^1.11.14",
"tsx": "^4.0.0",
"typescript": "^5.3.0",
"vitest": "^3.2.4"
}
}