Files
claude-auto-retry/package.json
T
CheapestInference 0652a23274 fix: improve foreground process detection for macOS compatibility
Expand default foreground command list beyond node/claude to include
npx, tsx, bun, deno. Log actual detected process name for debugging.
Add configurable foregroundCommands in ~/.claude-auto-retry.json.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-29 03:52:16 +02:00

23 lines
613 B
JSON

{
"name": "claude-auto-retry",
"version": "0.2.1",
"description": "Automatically retry Claude Code sessions when hitting Anthropic subscription rate limits",
"type": "module",
"bin": {
"claude-auto-retry": "./bin/cli.js"
},
"scripts": {
"test": "node --test test/*.test.js"
},
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"keywords": ["claude", "claude-code", "rate-limit", "retry", "tmux", "anthropic"],
"repository": {
"type": "git",
"url": "https://github.com/cheapestinference/claude-auto-retry"
},
"files": ["bin/", "src/", "LICENSE", "README.md"]
}