feat: 支持 Bun standalone 单文件打包

- core: 工具描述从文件系统加载改为编译时内联生成
- core: 添加 WASM 加载器支持嵌入式 WASM 数据
- core: bash-parser 使用动态导入 web-tree-sitter
- server: 添加静态文件托管支持 (--static 参数)
- server: 新增 standalone 入口点 (嵌入 Web UI + WASM)
- scripts: 添加 build-standalone.ts 构建脚本
- 更新 .gitignore 忽略生成文件
This commit is contained in:
2025-12-30 13:57:29 +08:00
parent 5f38753f6d
commit c3db79c00d
15 changed files with 949 additions and 102 deletions
+2 -1
View File
@@ -40,7 +40,8 @@
}
},
"scripts": {
"build": "tsc && cp -r src/tools/descriptions dist/tools/",
"prebuild": "bun run scripts/generate-descriptions.ts",
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",