项目从单体结构重构为 pnpm monorepo (shared/backend/frontend), 新增 YouTube、Instagram、Twitter/X、哔哩哔哩、微博 5 个平台适配器, 包含完整的单元测试和 E2E 测试覆盖。 - 完成 T-031~T-044: 5 个适配器实现、注册、配置和测试 - 重构前后端分离: Hono 后端 + Next.js 前端 - 151 个单元测试 + 21 个 Mock E2E + 25 个真实 E2E - 适配器基于真实 TikHub API 响应结构实现 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
26 lines
559 B
JSON
26 lines
559 B
JSON
{
|
|
"name": "@muse/backend",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "tsx watch src/index.ts",
|
|
"start": "tsx src/index.ts",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"test:coverage": "vitest run --coverage"
|
|
},
|
|
"dependencies": {
|
|
"@muse/shared": "workspace:*",
|
|
"hono": "^4.7.0",
|
|
"@hono/node-server": "^1.14.0"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5",
|
|
"tsx": "^4.19.0",
|
|
"vitest": "^4.0.18",
|
|
"@vitest/coverage-v8": "^4.0.18",
|
|
"@types/node": "^20"
|
|
}
|
|
}
|