TUI: vitest memory-guard threshold and on/off toggle now persist to global settings (vitestAutoKillEnabled / vitestKillThresholdPct), so they survive dashboard restarts. Stats panel shows the system-memory used percentage next to used/free. Utilities panel exposes [+/-] to adjust the threshold in 5% steps (50–99%). Release: scripts/release.mjs auto-syncs a root CHANGELOG.md aggregated from every packages/*/CHANGELOG.md, grouped by version with one sub-block per package. Versioning: all private @fusion/* packages joined the changesets fixed group with the public cli + cli-alias and were aligned to 0.2.5, so every release bumps every package and produces per-package CHANGELOG entries that the aggregator picks up. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
40 lines
940 B
JSON
40 lines
940 B
JSON
{
|
|
"name": "@fusion/pi-claude-cli",
|
|
"version": "0.2.5",
|
|
"description": "Fusion vendored fork: pi coding-agent extension that routes LLM calls through the Claude Code CLI. Forked from rchern/pi-claude-cli (MIT). See UPSTREAM.md.",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"type": "module",
|
|
"main": "index.ts",
|
|
"keywords": [
|
|
"pi-package"
|
|
],
|
|
"pi": {
|
|
"extensions": [
|
|
"index.ts"
|
|
]
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Runfusion/Fusion",
|
|
"directory": "packages/pi-claude-cli"
|
|
},
|
|
"dependencies": {
|
|
"cross-spawn": "^7.0.6"
|
|
},
|
|
"peerDependencies": {
|
|
"@mariozechner/pi-ai": "*",
|
|
"@mariozechner/pi-coding-agent": "*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/cross-spawn": "^6.0.6",
|
|
"@types/node": "^22.0.0",
|
|
"typescript": "^5.7.0",
|
|
"vitest": "^3.0.0"
|
|
},
|
|
"scripts": {
|
|
"test": "vitest run --reporter=dot",
|
|
"typecheck": "tsc --noEmit"
|
|
}
|
|
}
|