mirror of
https://github.com/golutra/golutra.git
synced 2026-08-29 03:45:51 +08:00
75e68e2998
- 重构终端架构,按 platform/engine/runtime/message_service/ui_gateway/orchestration 分层迁移 - 拆分会话与引擎内部模块(session state、semantic worker、resume poller、timestamps、snapshot) - 引入 message pipeline 与 semantic stream,补齐平台状态能力 - 补齐会话与扩展能力(skills、create terminal、create user) - 修复终端关键问题(渲染、attach/resize/webgl 稳定性、屏幕历史、好友删除流程、状态递增与重试、退出覆盖新会话) - 优化稳定性与性能(队列派发、4 分屏逻辑、低开销模式、语义线程按需创建) - 修复输入一致性问题(光标不同步、覆盖行)并收敛 UI 状态异常
55 lines
1.7 KiB
JSON
55 lines
1.7 KiB
JSON
{
|
|
"name": "golutra",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"packageManager": "pnpm@10.28.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"dev:frontend": "vite",
|
|
"dev:backend": "cargo run --manifest-path src-tauri/Cargo.toml",
|
|
"dev:tauri": "pnpm run shim:build && pnpm run dev",
|
|
"shim:build": "cargo build --manifest-path src-tauri/Cargo.toml --bin shim --bin golutra-cli",
|
|
"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-clipboard-manager": "^2.0.0",
|
|
"@tauri-apps/plugin-dialog": "^2.6.0",
|
|
"@tauri-apps/plugin-shell": "^2.0.0",
|
|
"@xterm/addon-canvas": "^0.7.0",
|
|
"@xterm/addon-fit": "^0.11.0",
|
|
"@xterm/addon-search": "^0.15.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"
|
|
}
|
|
}
|