mirror of
https://github.com/Egonex-AI/Understand-Anything.git
synced 2026-06-22 10:58:03 +08:00
- Add pnpm-workspace.yaml to plugin distribution so workspace:* deps resolve on install - Add devlop and hast-util-to-jsx-runtime as explicit dashboard dependencies (pnpm strict hoisting) - Make tsconfig.json files self-contained to work outside monorepo root - Add prepare script to auto-build core package after pnpm install - Bump version to 1.0.2
32 lines
771 B
JSON
32 lines
771 B
JSON
{
|
|
"name": "@understand-anything/dashboard",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc -b && vite build",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"@dagrejs/dagre": "^2.0.4",
|
|
"@understand-anything/core": "workspace:*",
|
|
"@xyflow/react": "^12.0.0",
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0",
|
|
"devlop": "^1.1.0",
|
|
"hast-util-to-jsx-runtime": "^2.3.6",
|
|
"react-markdown": "^10.1.0",
|
|
"zustand": "^5.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/vite": "^4.0.0",
|
|
"@types/react": "^19.0.0",
|
|
"@types/react-dom": "^19.0.0",
|
|
"@vitejs/plugin-react": "^4.3.0",
|
|
"tailwindcss": "^4.0.0",
|
|
"typescript": "^5.7.0",
|
|
"vite": "^6.0.0"
|
|
}
|
|
}
|