Changes since 0.2.1: - Keyboard shortcuts: Ctrl+K palette + Ctrl+Shift+E/O/W for split-right / split-down / close, Ctrl+Shift+B per-pane and Ctrl+Shift+Alt+B global broadcast, Ctrl+Shift+Arrow for spatial pane navigation - New panes default to WSL home (~) instead of inherited Windows cwd - Resize artifacts: rAF-throttle gutter drag, debounce PTY resize, skip resizePane when cols/rows haven't actually changed (kills the idle-flap loop that surfaced with many panes) - Minimum pane size (180px) enforced on both split and gutter drag - 2px gap around each leaf so per-pane borders read as distinct rectangles instead of a continuous grid Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
31 lines
710 B
JSON
31 lines
710 B
JSON
{
|
|
"name": "tiletopia",
|
|
"private": true,
|
|
"version": "0.2.2",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc -b && vite build",
|
|
"preview": "vite preview",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"check": "tsc --noEmit",
|
|
"tauri": "tauri"
|
|
},
|
|
"dependencies": {
|
|
"@tauri-apps/api": "^2.0.0",
|
|
"@xterm/addon-fit": "^0.10.0",
|
|
"@xterm/xterm": "^5.5.0",
|
|
"react": "^18.3.0",
|
|
"react-dom": "^18.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"@tauri-apps/cli": "^2.0.0",
|
|
"@types/react": "^18.3.0",
|
|
"@types/react-dom": "^18.3.0",
|
|
"@vitejs/plugin-react": "^4.3.0",
|
|
"typescript": "^5.6.0",
|
|
"vite": "^5.4.0",
|
|
"vitest": "^2.0.0"
|
|
}
|
|
}
|