- Add mise.toml with pnpm latest - Create root workspace with pnpm-workspace.yaml - Upgrade TypeScript from 5.9.3 to 6.0.3 in apps/web - Add vite-env.d.ts for CSS module type declarations - Switch from npm to pnpm package management
26 lines
533 B
JSON
26 lines
533 B
JSON
{
|
|
"name": "md-hub-secure-web",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"format": "prettier --check .",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"katex": "^0.16.45",
|
|
"lucide-preact": "^1.14.0",
|
|
"mermaid": "^11.14.0",
|
|
"preact": "^10.27.2",
|
|
"preact-iso": "^2.9.3"
|
|
},
|
|
"devDependencies": {
|
|
"@preact/preset-vite": "^2.10.2",
|
|
"prettier": "^3.6.2",
|
|
"typescript": "^6.0.3",
|
|
"vite": "^7.1.12"
|
|
}
|
|
}
|