mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-08 02:14:08 +08:00
44 lines
1.3 KiB
JSON
44 lines
1.3 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:docs": "cd docs-site && npm run start",
|
|
"dev:all": "concurrently \"npm run dev\" \"npm run dev:docs\" --names \"FRONTEND,DOCS\" --prefix-colors \"blue,green\"",
|
|
"build": "cd docs-site && npm run build && cd ../frontend && npm run build",
|
|
"build:frontend": "cd frontend && npm run build",
|
|
"build:docs": "cd docs-site && 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",
|
|
"serve": "cd docs-site && npm run serve",
|
|
"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"
|
|
}
|
|
}
|