Ship a macOS template menu-bar glyph, only toggle on left mouse-down so press/release no longer opens-then-closes, and put Settings next to Search so it is reachable without the tray menu.
49 lines
1.4 KiB
JSON
49 lines
1.4 KiB
JSON
{
|
|
"name": "macopy",
|
|
"private": true,
|
|
"version": "0.2.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc && vite build",
|
|
"preview": "vite preview",
|
|
"tauri": "tauri",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"test:ui": "vitest --ui --open --watch",
|
|
"test:headed": "vitest --config vitest.browser.config.ts --watch=false --browser.headless=false",
|
|
"test:visual": "node scripts/visual-walkthrough.mjs",
|
|
"icons": "node scripts/render-icons.mjs",
|
|
"test:rust": "cd src-tauri && cargo test",
|
|
"test:all": "npm run test && npm run test:rust",
|
|
"lint": "tsc --noEmit",
|
|
"check": "npm run lint && npm run test:all"
|
|
},
|
|
"dependencies": {
|
|
"@tauri-apps/api": "^2.11.0",
|
|
"@tauri-apps/plugin-autostart": "^2",
|
|
"@tauri-apps/plugin-clipboard-manager": "^2",
|
|
"@tauri-apps/plugin-global-shortcut": "^2",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/vite": "^4",
|
|
"@tauri-apps/cli": "^2",
|
|
"@testing-library/jest-dom": "^6.9.1",
|
|
"@testing-library/react": "^16.3.2",
|
|
"@testing-library/user-event": "^14.6.1",
|
|
"@types/react": "^18.3.3",
|
|
"@types/react-dom": "^18.3.0",
|
|
"@vitejs/plugin-react": "^4.3.1",
|
|
"@vitest/browser-playwright": "^4.1.10",
|
|
"@vitest/ui": "^4.1.10",
|
|
"jsdom": "^29.1.1",
|
|
"playwright": "^1.61.1",
|
|
"tailwindcss": "^4",
|
|
"typescript": "^5.5.3",
|
|
"vite": "^6",
|
|
"vitest": "^4.1.6"
|
|
}
|
|
}
|