mirror of
https://github.com/J3vb/OwnCord.git
synced 2026-09-03 03:50:00 +03:00
Complete Tauri v2 client implementation migrated from WPF/.NET 8: - Rust backend: WS proxy with TLS cert bypass for self-signed servers, settings storage, system tray, global hotkeys - TypeScript frontend: login/register, chat messaging, channel sidebar, member list, voice channel UI, settings overlay with log viewer, server profiles, quick switcher, emoji picker, file uploads - 21 test suites (364 tests) covering stores, services, and components - Security: bounded WS channel, wss:// URL validation, TLS signature verification, profile import validation, token redaction, HTTPS-only HTTP scope Also updates CLAUDE.md to correct API path rule (/api/v1/) and adds Tauri client CI workflow.
34 lines
857 B
JSON
34 lines
857 B
JSON
{
|
|
"name": "owncord-client",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc && vite build",
|
|
"preview": "vite preview",
|
|
"tauri": "tauri",
|
|
"test": "vitest run",
|
|
"test:unit": "vitest run tests/unit",
|
|
"test:integration": "vitest run tests/integration",
|
|
"test:e2e": "playwright test",
|
|
"test:watch": "vitest",
|
|
"test:coverage": "vitest run --coverage"
|
|
},
|
|
"devDependencies": {
|
|
"@tauri-apps/cli": "^2",
|
|
"@vitest/coverage-v8": "^3",
|
|
"jsdom": "^29.0.0",
|
|
"typescript": "^5.7",
|
|
"vite": "^6",
|
|
"vitest": "^3"
|
|
},
|
|
"dependencies": {
|
|
"@tauri-apps/api": "^2.10.1",
|
|
"@tauri-apps/plugin-global-shortcut": "^2",
|
|
"@tauri-apps/plugin-http": "^2.5.7",
|
|
"@tauri-apps/plugin-notification": "^2",
|
|
"@tauri-apps/plugin-store": "^2"
|
|
}
|
|
}
|