2026-02-27 04:29:51 +00:00
|
|
|
{
|
|
|
|
|
"name": "triple-c",
|
|
|
|
|
"private": true,
|
Bump version to 0.3.0
## What's New in v0.3.0
### Claude Code Settings (TUI Mode, Effort, Focus, Caching)
- New per-project and global settings for Claude Code CLI behavior
- **TUI Fullscreen Mode**: Flicker-free alt-screen rendering via CLAUDE_CODE_NO_FLICKER
- **Effort Level**: Control reasoning depth (low/medium/high)
- **Focus Mode**: Collapse tool output to one-line summaries
- **Thinking Summaries**: Show Claude's thinking process
- **Session Recap**: Get context when returning to a session
- **Auto-Scroll Disabled**: Disable auto-scroll in fullscreen TUI
- **Env Scrub**: Strip credentials from subprocess environments
- **Prompt Caching (1h)**: Enable 1-hour prompt cache TTL
- New ClaudeCodeSettingsModal accessible from project config and global settings
- Settings injected as env vars and ~/.claude/settings.json via entrypoint
### Session Naming
- Name Claude Code terminal sessions with the -n flag
- Session names displayed in terminal tabs instead of project name
### Global Default Fallbacks
- Global SSH key path now used when per-project SSH path is not set
- Global git name/email now used when per-project values are not set
- New UI in Settings panel for SSH key directory, git name, and git email
### Relaxed Environment Variable Filter
- CLAUDE_CODE_* env vars now allowed in custom env vars for power users
- Only specific internal vars (CLAUDE_INSTRUCTIONS, MCP_SERVERS_JSON, etc.) blocked
### Documentation
- Updated README, HOW-TO-USE, and CLAUDE.md with all new features
- New "Claude Code Tips" section documenting built-in CLI features
(/focus, /recap, /color, /loop, /powerup, /team-onboarding, setup wizards)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-16 08:48:19 -07:00
|
|
|
"version": "0.3.0",
|
2026-02-27 04:29:51 +00:00
|
|
|
"type": "module",
|
|
|
|
|
"scripts": {
|
|
|
|
|
"dev": "vite",
|
|
|
|
|
"build": "tsc && vite build",
|
|
|
|
|
"preview": "vite preview",
|
2026-02-28 22:53:30 +00:00
|
|
|
"tauri": "tauri",
|
|
|
|
|
"test": "vitest run",
|
|
|
|
|
"test:watch": "vitest"
|
2026-02-27 04:29:51 +00:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"@tauri-apps/api": "^2",
|
2026-04-12 20:28:03 -07:00
|
|
|
"@tauri-apps/plugin-dialog": "^2.7.0",
|
2026-02-27 04:29:51 +00:00
|
|
|
"@tauri-apps/plugin-opener": "^2.5.3",
|
|
|
|
|
"@tauri-apps/plugin-store": "^2",
|
|
|
|
|
"@xterm/addon-fit": "^0.10",
|
|
|
|
|
"@xterm/addon-web-links": "^0.12.0",
|
|
|
|
|
"@xterm/addon-webgl": "^0.18",
|
|
|
|
|
"@xterm/xterm": "^5",
|
|
|
|
|
"react": "^19.0.0",
|
|
|
|
|
"react-dom": "^19.0.0",
|
|
|
|
|
"zustand": "^5"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@tailwindcss/vite": "^4",
|
|
|
|
|
"@tauri-apps/cli": "^2",
|
2026-02-28 22:53:30 +00:00
|
|
|
"@testing-library/jest-dom": "^6.9.1",
|
|
|
|
|
"@testing-library/react": "^16.3.2",
|
2026-02-27 04:29:51 +00:00
|
|
|
"@types/react": "^19.0.0",
|
|
|
|
|
"@types/react-dom": "^19.0.0",
|
|
|
|
|
"@vitejs/plugin-react": "^4",
|
|
|
|
|
"autoprefixer": "^10",
|
2026-02-28 22:53:30 +00:00
|
|
|
"jsdom": "^28.1.0",
|
2026-02-27 04:29:51 +00:00
|
|
|
"postcss": "^8",
|
|
|
|
|
"tailwindcss": "^4",
|
|
|
|
|
"typescript": "^5.7",
|
2026-02-28 22:53:30 +00:00
|
|
|
"vite": "^6",
|
|
|
|
|
"vitest": "^4.0.18"
|
2026-02-27 04:29:51 +00:00
|
|
|
}
|
|
|
|
|
}
|