feat(mini): add dockable compact client

This commit is contained in:
2026-07-22 18:34:20 +08:00
parent 4a82efc984
commit a23a110758
26 changed files with 7615 additions and 0 deletions

32
apps/mini/package.json Normal file
View File

@@ -0,0 +1,32 @@
{
"name": "senlinai-mini",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "oxlint",
"visual-check": "node scripts/visual-check.mjs",
"tauri": "tauri",
"desktop:dev": "tauri dev",
"desktop:build": "tauri build --no-bundle"
},
"dependencies": {
"@arco-design/web-react": "^2.66.16",
"@tauri-apps/api": "^2.9.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@tauri-apps/cli": "^2.9.3",
"@types/node": "^24.13.2",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^6.0.3",
"oxlint": "^1.71.0",
"playwright": "^1.61.1",
"typescript": "~6.0.2",
"vite": "^8.1.1"
}
}