- 修复配置窗口'选择本地模型'按钮无响应问题 - 添加 tauri-plugin-dialog 和 tauri-plugin-clipboard-manager 依赖 - 在 main.rs 中注册插件 - 创建 capabilities/default.json 配置权限 - 修复工具栏按钮不显示问题 - 将 .waifu-tool 的 display 从 none 改为 block - 修复模型显示比例问题 - 禁用 reloadPositionScale 避免覆盖尺寸设置 - 移除 onResized 回调中的模型尺寸重置 - 设置模型宽度为窗口的 50% - 修复切换 workspace 后模型尺寸恢复问题 - 添加窗口置顶设置,显示时重新设置 always_on_top - 更新 CLAUDE.md 文档 - 添加 .gitignore - 更新 README.md - 添加 docs/impl/debug-log-20260531.md 记录调试过程 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
58 lines
1.5 KiB
JSON
58 lines
1.5 KiB
JSON
{
|
|
"name": "my-tauri-app",
|
|
"private": true,
|
|
"version": "3.0.5",
|
|
"type": "module",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"live2d",
|
|
"desktop",
|
|
"pixijs",
|
|
"tauri",
|
|
"macos",
|
|
"linux",
|
|
"windows"
|
|
],
|
|
"homepage": "https://github.com/itxve/tauri-live2d",
|
|
"bugs": "https://github.com/itxve/tauri-live2d/issues",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/itxve/tauri-live2d"
|
|
},
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vue-tsc --noEmit && vite build",
|
|
"preview": "vite preview",
|
|
"tauri": "tauri",
|
|
"tauri:dev": "RUST_BACKTRACE=full tauri dev",
|
|
"updater": "node scripts/updater.mjs",
|
|
"release": "node scripts/release.mjs",
|
|
"tauriversion": "node scripts/tauriversion.mjs"
|
|
},
|
|
"dependencies": {
|
|
"@rollup/plugin-inject": "^5.0.3",
|
|
"@tauri-apps/plugin-clipboard-manager": "^2.3.2",
|
|
"@tauri-apps/plugin-dialog": "^2.7.1",
|
|
"@tauri-apps/plugin-process": "^2.3.1",
|
|
"@tauri-apps/plugin-updater": "^2.10.1",
|
|
"pixi-live2d-display": "^0.4.0",
|
|
"pixi.js": "6.5.6",
|
|
"vue": "^3.2.37"
|
|
},
|
|
"devDependencies": {
|
|
"@actions/github": "^5.1.0",
|
|
"@rollup/plugin-alias": "^4.0.2",
|
|
"@tauri-apps/api": "^2.11.0",
|
|
"@tauri-apps/cli": "^2.11.2",
|
|
"@types/node": "^18.7.10",
|
|
"@vitejs/plugin-vue": "^3.0.1",
|
|
"naive-ui": "^2.34.2",
|
|
"node-fetch": "^3.2.10",
|
|
"typescript": "^4.6.4",
|
|
"unplugin-auto-import": "^0.12.0",
|
|
"unplugin-vue-components": "^0.22.11",
|
|
"vite": "^3.0.2",
|
|
"vue-tsc": "^1.0.0"
|
|
}
|
|
}
|