mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-06 01:54:11 +08:00
- Added icons to the CLI History and CLI Tools headers for better UI representation. - Updated CLI Status component to include tool-specific classes for styling. - Refactored CCW Install Panel to improve layout and functionality, including upgrade and uninstall buttons. - Enhanced the edit-file tool with new features: - Support for creating parent directories when writing files. - Added dryRun mode for previewing changes without modifying files. - Implemented a unified diff output for changes made. - Enabled multi-edit support in update mode. - Introduced a new Smart Search Tool with multiple search modes (auto, exact, fuzzy, semantic, graph) and intent classification. - Created a Write File Tool to handle file creation and overwriting with backup options.
48 lines
916 B
JSON
48 lines
916 B
JSON
{
|
|
"name": "ccw",
|
|
"version": "6.1.4",
|
|
"description": "Claude Code Workflow CLI - Dashboard viewer for workflow sessions and reviews",
|
|
"type": "module",
|
|
"main": "src/index.js",
|
|
"bin": {
|
|
"ccw": "./bin/ccw.js"
|
|
},
|
|
"scripts": {
|
|
"test": "node --test",
|
|
"lint": "eslint src/"
|
|
},
|
|
"keywords": [
|
|
"claude",
|
|
"workflow",
|
|
"cli",
|
|
"dashboard",
|
|
"code-review"
|
|
],
|
|
"author": "Claude Code Workflow",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=16.0.0"
|
|
},
|
|
"dependencies": {
|
|
"boxen": "^7.1.0",
|
|
"chalk": "^5.3.0",
|
|
"commander": "^11.0.0",
|
|
"figlet": "^1.7.0",
|
|
"glob": "^10.3.0",
|
|
"gradient-string": "^2.0.2",
|
|
"inquirer": "^9.2.0",
|
|
"open": "^9.1.0",
|
|
"ora": "^7.0.0"
|
|
},
|
|
"files": [
|
|
"bin/",
|
|
"src/",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/claude-code-workflow/ccw"
|
|
}
|
|
}
|