mirror of
https://github.com/golutra/golutra.git
synced 2026-09-21 13:31:02 +08:00
- 终端层: 将终端渲染/解析能力由 vt100 重构为 wezterm_term,优化终端交互稳定性与显示效果(含圆角与基础体验优化)。 - 会话状态链路: 引入 Shell prompt hook(PowerShell/Bash)并打通前后端 active 状态同步; 新增 terminal_set_active 能力与前端桥接调用,支持前台活跃态上报、卸载态回传与流控策略联动。 - 聊天能力: 修复聊天历史相关问题,改善聊天与终端之间的联通行为; 补充并推进 claude code 相关问题排查,减少异常场景下的不一致状态。 - UI 与状态: 更新状态管理与 UI 显示逻辑,提升页面状态反馈一致性与可读性。 - 工程治理: 补充 .gitignore 规则,忽略 cargo vendor 与构建产物,减少无关文件进入版本控制。
49 lines
1.4 KiB
JSON
49 lines
1.4 KiB
JSON
{
|
|
"name": "nexus-dashboard-suite",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"packageManager": "pnpm@10.28.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"dev:tauri": "pnpm run shim:build && pnpm run dev",
|
|
"shim:build": "cargo build --manifest-path src-tauri/Cargo.toml --bin shim",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"test": "vitest run",
|
|
"lint": "eslint \"src/**/*.{ts,vue}\" \"vite.config.ts\"",
|
|
"lint:fix": "eslint \"src/**/*.{ts,vue}\" \"vite.config.ts\" --fix",
|
|
"format": "prettier --write .",
|
|
"format:check": "prettier --check ."
|
|
},
|
|
"dependencies": {
|
|
"@tauri-apps/api": "^2.0.0",
|
|
"@tauri-apps/plugin-dialog": "^2.6.0",
|
|
"@xterm/addon-fit": "^0.11.0",
|
|
"@xterm/addon-webgl": "^0.19.0",
|
|
"@xterm/xterm": "^6.0.0",
|
|
"pinia": "^3.0.4",
|
|
"vue": "^3.5.12",
|
|
"vue-i18n": "^11.2.8"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.39.2",
|
|
"@types/node": "^22.14.0",
|
|
"@typescript-eslint/eslint-plugin": "^8.53.0",
|
|
"@typescript-eslint/parser": "^8.53.0",
|
|
"@vitejs/plugin-vue": "^5.2.4",
|
|
"autoprefixer": "^10.4.23",
|
|
"eslint": "^9.39.2",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-plugin-vue": "^10.7.0",
|
|
"globals": "^17.0.0",
|
|
"postcss": "^8.5.6",
|
|
"prettier": "^3.3.3",
|
|
"tailwindcss": "^3.4.17",
|
|
"typescript": "~5.8.2",
|
|
"vite": "^6.2.0",
|
|
"vitest": "^2.1.9",
|
|
"vue-eslint-parser": "^10.2.0"
|
|
}
|
|
}
|