-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 975 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 975 Bytes
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
{
"name": "ai-note-converter",
"version": "1.0.0",
"description": "Convert HTML documentation to Markdown and generate static site",
"main": "src/dev.js",
"scripts": {
"build": "node src/convert_md_to_html_pandoc.js && node src/generate_index_with_dates.js && node src/generate_sitemap.js && node src/generate_overview.js",
"dev": "node src/dev.js",
"watch": "node watcher/watcher.js --quiet",
"new-md": "node src/new_markdown.js",
"new-html": "node src/new_html.js",
"clean": "node src/clean.js docs pages sitemap.xml overview.html",
"prepare": "husky"
},
"keywords": [
"markdown",
"html",
"converter",
"documentation"
],
"author": "AI Note Developer",
"license": "MIT",
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"marked": "^4.3.0",
"openclaw": "^2026.3.2",
"qrcode": "^1.5.4"
},
"devDependencies": {
"chokidar": "^4.0.3",
"http-server": "^14.1.1",
"husky": "^9.1.7"
}
}