Files
cladm/package.json
Alejandro Gutiérrez 3ce6572952 feat: add direct PTY grid with expand/select mode for text copying
Replace tmux-based grid with direct PTY rendering. Add [MAX] button
to expand a pane to fullscreen and [SEL] to enable native text
selection within the expanded pane. Esc exits select/expanded mode.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-28 01:41:31 +00:00

36 lines
708 B
JSON

{
"name": "@alezmad/cladm",
"version": "0.1.0",
"description": "TUI launcher for Claude Code sessions",
"module": "index.ts",
"type": "module",
"bin": {
"cladm": "src/index.ts"
},
"files": [
"src/",
"README.md",
"LICENSE"
],
"keywords": ["claude", "claude-code", "tui", "terminal", "launcher", "bun"],
"license": "MIT",
"author": "alezmad",
"repository": {
"type": "git",
"url": "git+https://github.com/alezmad/cladm.git"
},
"engines": {
"bun": ">=1.3.0"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@opentui/core": "^0.1.81",
"node-pty": "^1.1.0"
}
}