refactor(export): built-in package for assets export

1. use built-in assets package to support html export
2. improve markdown export
This commit is contained in:
mingholy.lmh 2026-01-29 15:18:56 +08:00
parent a4630d39e4
commit 86a43618a7
16 changed files with 819 additions and 405 deletions

View file

@ -0,0 +1,16 @@
{
"name": "@qwen-code/cli-export-html",
"private": true,
"type": "module",
"scripts": {
"build": "node build.mjs"
},
"dependencies": {
"@qwen-code/webui": "^0.1.0-beta.4",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"esbuild": "^0.25.0"
}
}