mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-14 02:42:04 +08:00
- Remove docs-frontend.ts utility and docs proxy from server.ts - Remove docs startup logic from serve.ts - Delete HelpPage.tsx and /help route from frontend - Remove help navigation entry from Sidebar.tsx - Clean /docs proxy from vite.config.ts - Remove docs-related scripts from package.json files - Delete help.spec.ts E2E tests - Remove docs-site directory (migrated to D:\ccw-doc) The docs-site has been moved to D:\ccw-doc as a standalone Docusaurus project with baseUrl='/' for static hosting deployment (GitHub Pages/Netlify).
41 lines
1.0 KiB
JSON
41 lines
1.0 KiB
JSON
{
|
|
"name": "ccw-monorepo",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "CCW - Claude Code Workflow Platform",
|
|
"author": "CCW Team",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "cd frontend && npm run dev",
|
|
"dev:vite": "cd frontend && npm run dev:vite",
|
|
"build": "cd frontend && npm run build",
|
|
"build:frontend": "cd frontend && npm run build",
|
|
"lint": "cd frontend && npm run lint",
|
|
"lint:fix": "cd frontend && npm run lint:fix",
|
|
"test": "cd frontend && npm run test",
|
|
"test:coverage": "cd frontend && npm run test:coverage",
|
|
"test:e2e": "cd frontend && npm run test:e2e",
|
|
"validate": "cd frontend && npm run validate:i18n",
|
|
"preview": "cd frontend && npm run preview"
|
|
},
|
|
"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"
|
|
}
|
|
}
|