版本更新内容: - 更新package.json版本号至0.2.0 - 更新tauri.conf.json版本号至0.2.0 - 更新Cargo.toml版本号至0.2.0 - 添加v0.2.0版本发布说明 主要功能: 素材类型区分展示功能(图片直显、视频缩略图、音频播放) AI分类统计数值溢出问题修复 后端API扩展和前端组件优化 安全性和性能提升
55 lines
1.5 KiB
JSON
55 lines
1.5 KiB
JSON
{
|
|
"name": "@mixvideo/desktop",
|
|
"private": true,
|
|
"version": "0.2.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "tauri dev",
|
|
"build": "tsc && vite build",
|
|
"preview": "vite preview",
|
|
"tauri": "tauri",
|
|
"tauri:dev": "tauri dev",
|
|
"tauri:build": "tauri build",
|
|
"test": "vitest",
|
|
"test:ui": "vitest --ui",
|
|
"test:coverage": "vitest --coverage",
|
|
"test:unit": "vitest run src/tests/components",
|
|
"test:integration": "vitest run src/tests/integration",
|
|
"test:performance": "vitest run src/tests/performance",
|
|
"test:e2e": "vitest run src/tests/e2e",
|
|
"test:all": "bash scripts/run-tests.sh"
|
|
},
|
|
"dependencies": {
|
|
"@heroicons/react": "^2.2.0",
|
|
"@tauri-apps/api": "^2.6.0",
|
|
"@tauri-apps/plugin-dialog": "^2",
|
|
"@tauri-apps/plugin-fs": "^2",
|
|
"@tauri-apps/plugin-opener": "^2",
|
|
"clsx": "^2.0.0",
|
|
"date-fns": "^2.30.0",
|
|
"lucide-react": "^0.294.0",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"react-router-dom": "^6.20.1",
|
|
"react-window": "^1.8.11",
|
|
"zustand": "^4.4.7"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react-window": "^1.8.8",
|
|
"@tauri-apps/cli": "^2",
|
|
"@testing-library/jest-dom": "^6.1.5",
|
|
"@testing-library/react": "^14.1.2",
|
|
"@testing-library/user-event": "^14.5.1",
|
|
"@types/react": "^18.3.1",
|
|
"@types/react-dom": "^18.3.1",
|
|
"@vitejs/plugin-react": "^4.3.4",
|
|
"autoprefixer": "^10.4.16",
|
|
"jsdom": "^23.0.1",
|
|
"postcss": "^8.4.32",
|
|
"tailwindcss": "^3.4.0",
|
|
"typescript": "~5.6.2",
|
|
"vite": "^6.0.3",
|
|
"vitest": "^1.0.0"
|
|
}
|
|
}
|