22 lines
992 B
JSON
22 lines
992 B
JSON
{
|
|
"name": "social-auto-hub",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"description": "Monorepo for XHS/XHH MCP services",
|
|
"scripts": {
|
|
"build": "pnpm -r --filter \"./packages/*\" --filter \"./apps/*\" run build",
|
|
"lint": "pnpm -r --filter \"./packages/*\" --filter \"./apps/*\" run lint",
|
|
"test": "pnpm -r --filter \"./packages/*\" --filter \"./apps/*\" run test",
|
|
"start": "pnpm start:xhs",
|
|
"start:xhs": "pnpm --filter @social/xhs-mcp start",
|
|
"start:xhh": "pnpm --filter @social/xhh-mcp start",
|
|
"dev:xhs": "pnpm --filter @social/xhs-mcp dev",
|
|
"dev:xhh": "pnpm --filter @social/xhh-mcp dev",
|
|
"restart:xhs": "pnpm --filter @social/xhs-mcp build && (lsof -ti tcp:9527 | xargs kill >/dev/null 2>&1 || true) && pnpm --filter @social/xhs-mcp start",
|
|
"restart:xhh": "pnpm --filter @social/xhh-mcp build && (lsof -ti tcp:9528 | xargs kill >/dev/null 2>&1 || true) && pnpm --filter @social/xhh-mcp start"
|
|
},
|
|
"engines": {
|
|
"node": ">=22.0.0"
|
|
}
|
|
}
|