oh-my-muse/muse-studio/package.json
zizi 79c0633c3a fix(studio): 对齐 P2 用户端工作台契约
修复 P2 review 发现的编辑器 Block 保存、AI task stream、知识库命令写入、草稿同步状态和 diff 性能边界问题。补充契约测试、Vitest coverage 和 Playwright e2e 冒烟入口。
2026-05-26 07:50:07 +08:00

65 lines
1.7 KiB
JSON

{
"name": "muse-studio",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"test": "vitest run",
"test:unit": "vitest run",
"coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"preview": "vite preview"
},
"dependencies": {
"@hookform/resolvers": "^3.0.0",
"@tanstack/react-query": "^5.100.13",
"@tiptap/extension-placeholder": "^3.23.6",
"@tiptap/pm": "^3.23.6",
"@tiptap/react": "^3.23.6",
"@tiptap/starter-kit": "^3.23.6",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-hook-form": "^7.76.1",
"react-router-dom": "^6.30.3",
"zod": "^3.0.0",
"zustand": "^4.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.60.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^24.12.3",
"@types/react": "^18.3.29",
"@types/react-dom": "^18.3.7",
"@typescript-eslint/parser": "^8.59.4",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "2.0.0",
"autoprefixer": "^10.5.0",
"eslint": "^9.39.4",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.6.0",
"jsdom": "^29.1.1",
"msw": "^2.14.6",
"playwright": "^1.60.0",
"postcss": "^8.5.15",
"prettier": "^3.8.3",
"start-server-and-test": "^3.0.5",
"tailwindcss": "^3.4.19",
"typescript": "~6.0.2",
"typescript-eslint": "^8.59.2",
"undici": "^8.3.0",
"vite": "^8.0.12",
"vitest": "^2.0.0"
},
"msw": {
"workerDirectory": [
"public"
]
}
}