Files
agent-evals/frontend/package.json
Evan Reichard c7a82c4de8 build(typography): add Tailwind Typography plugin for markdown preview styles
- Install @tailwindcss/typography package
- Configure Typography plugin in tailwind.config.js
- Adds prose and dark:prose-invert classes for styled markdown output
2026-02-06 16:53:22 -05:00

31 lines
687 B
JSON

{
"name": "eval-frontend",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest"
},
"dependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^9.0.0",
"remark-gfm": "^4.0.0"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.19",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.0",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.11",
"typescript": "^5.6.0",
"vite": "^5.4.0",
"vitest": "^2.1.0"
}
}