Refactored to fix all structural quality warnings: - SettingsView.svelte: 425 → 291 lines (extracted YouTube logic to composable) - UpdateChecker.svelte: 336 → 261 lines (extracted UpdateConfirmDialog component) - navigation-routes.ts: split 163-line array into 7 named route constants - Removed 10 unused CSS selectors (dead code) from 3 files New files: - youtube-connection.svelte.ts: YouTube connection composable (separated concern) - UpdateConfirmDialog.svelte: Confirmation dialog component (separated concern) Version: 0.7.4 → 0.7.5 Gauntlet: ALL PHASES PASS (0-5 deterministic, 6-7 LLM skipped) Structural quality: 8/8 gates passed, 1 warning (false positive)
65 lines
2.2 KiB
JSON
65 lines
2.2 KiB
JSON
{
|
|
"name": "conductor-desktop-app",
|
|
"version": "0.7.5",
|
|
"private": true,
|
|
"type": "module",
|
|
"packageManager": "pnpm@11.4.0",
|
|
"engines": {
|
|
"node": ">=22.0.0",
|
|
"pnpm": "11.4.0"
|
|
},
|
|
"scripts": {
|
|
"dev": "vite --host 127.0.0.1",
|
|
"build": "tsc -p tsconfig.json && vite build",
|
|
"test": "vitest run",
|
|
"test:integration": "vitest run --config vitest.integration.config.ts",
|
|
"test:e2e": "playwright test",
|
|
"lint": "eslint \"frontend/src/**/*.{ts,svelte}\"",
|
|
"lint:fix": "eslint . --fix",
|
|
"lighthouse": "echo 'Lighthouse audit placeholder — wire when frontend has pages to test'",
|
|
"preview": "vite preview --host 127.0.0.1",
|
|
"tauri": "tauri",
|
|
"tauri:dev": "tauri dev",
|
|
"tauri:build": "tauri build --no-bundle",
|
|
"check": "svelte-check --tsconfig ./tsconfig.json --fail-on-warnings false",
|
|
"test:coverage": "vitest run --coverage",
|
|
"test:e2e:smoke": "playwright test --project=smoke"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^10.0.1",
|
|
"@playwright/test": "^1.61.0",
|
|
"@sveltejs/vite-plugin-svelte": "^7.1.2",
|
|
"@tauri-apps/cli": "^2.11.2",
|
|
"@testing-library/svelte": "^5.3.1",
|
|
"better-sqlite3": "^12.10.1",
|
|
"eslint": "^9.39.4",
|
|
"eslint-plugin-svelte": "^3.19.0",
|
|
"jsdom": "^29.1.1",
|
|
"melt": "^0.44.0",
|
|
"sass": "^1.101.0",
|
|
"svelte": "5.56.3",
|
|
"svelte-check": "^4.6.0",
|
|
"svelte-eslint-parser": "^1.8.0",
|
|
"svelte-preprocess": "^6.0.5",
|
|
"typescript": "^6.0.3",
|
|
"typescript-eslint": "^8.61.1",
|
|
"vite": "^8.0.16",
|
|
"vitest": "^4.1.9"
|
|
},
|
|
"dependencies": {
|
|
"@tauri-apps/api": "^2.11.0",
|
|
"@tauri-apps/plugin-clipboard-manager": "^2.3.2",
|
|
"@tauri-apps/plugin-dialog": "^2.7.1",
|
|
"@tauri-apps/plugin-fs": "^2.5.1",
|
|
"@tauri-apps/plugin-global-shortcut": "^2.3.2",
|
|
"@tauri-apps/plugin-http": "^2.5.9",
|
|
"@tauri-apps/plugin-log": "^2.8.0",
|
|
"@tauri-apps/plugin-notification": "^2.3.3",
|
|
"@tauri-apps/plugin-os": "^2.3.2",
|
|
"@tauri-apps/plugin-process": "^2.3.1",
|
|
"@tauri-apps/plugin-shell": "^2.3.5",
|
|
"@tauri-apps/plugin-sql": "^2.4.0",
|
|
"@tauri-apps/plugin-store": "^2.4.3",
|
|
"@tauri-apps/plugin-upload": "^2.4.0"
|
|
}
|
|
} |