mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-04 01:40:45 +08:00
- Implemented the CliViewerPage component for displaying CLI outputs in a configurable multi-pane layout. - Integrated Zustand for state management, allowing for dynamic layout changes and tab management. - Added layout options: single, split horizontal, split vertical, and 2x2 grid. - Created viewerStore for managing layout, panes, and tabs, including actions for adding/removing panes and tabs. - Added CoordinatorPage barrel export for easier imports.
50 lines
1.6 KiB
JSON
50 lines
1.6 KiB
JSON
{
|
|
"name": "ccw-monorepo",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "CCW - Claude Code Workflow Platform",
|
|
"author": "CCW Team",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"workspaces": [
|
|
"frontend",
|
|
"docs-site"
|
|
],
|
|
"scripts": {
|
|
"dev": "npm run dev --workspace=frontend",
|
|
"dev:docs": "npm run start --workspace=docs-site",
|
|
"dev:all": "concurrently \"npm run dev\" \"npm run dev:docs\" --names \"FRONTEND,DOCS\" --prefix-colors \"blue,green\"",
|
|
"build": "npm run build --workspace=docs-site && npm run build --workspace=frontend",
|
|
"build:frontend": "npm run build --workspace=frontend",
|
|
"build:docs": "npm run build --workspace=docs-site",
|
|
"clean": "npm run clean --workspace=frontend && npm run clean --workspace=docs-site",
|
|
"clean:node_modules": "npm exec --workspaces -- rm -rf node_modules",
|
|
"lint": "npm run lint --workspace=frontend",
|
|
"lint:fix": "npm run lint:fix --workspace=frontend",
|
|
"test": "npm run test --workspace=frontend",
|
|
"test:coverage": "npm run test:coverage --workspace=frontend",
|
|
"test:e2e": "npm run test:e2e --workspace=frontend",
|
|
"validate": "npm run validate:i18n --workspace=frontend",
|
|
"serve": "npm run serve --workspace=docs-site",
|
|
"preview": "npm run preview --workspace=frontend"
|
|
},
|
|
"devDependencies": {
|
|
"concurrently": "^9.1.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0",
|
|
"npm": ">=9.0.0"
|
|
},
|
|
"keywords": [
|
|
"workflow",
|
|
"automation",
|
|
"cli",
|
|
"documentation",
|
|
"monorepo"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ccw/ccw-monorepo.git"
|
|
}
|
|
}
|