Files
deepseek-harness/website/package.json
lintianle 4c49677469 website: render the design essays' TeX (math: true, mathjax3 pinned to v4)
design/revertible-effects and design/context-model carry real TeX that was
showing as literal $$ source. markdown: { math: true } enables
markdown-it-mathjax3; pinned ^4.3.2 deliberately — v5 injects a <style> tag
per formula (31 on one page), which Vue's template compiler rejects, so v5
cannot work under VitePress; v4 emits pure SVG (probed: 0 style tags).
2026-07-16 18:57:44 +08:00

23 lines
575 B
JSON

{
"name": "@deepseek-ai/website",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vitepress dev . --host 127.0.0.1 --port 5173",
"build": "vitepress build .",
"preview": "vitepress preview . --host 127.0.0.1 --port 4173"
},
"devDependencies": {
"@braintree/sanitize-url": "7.1.2",
"cytoscape": "3.34.0",
"cytoscape-cose-bilkent": "4.1.0",
"dayjs": "1.11.21",
"debug": "4.4.3",
"mermaid": "11.16.0",
"vite": "^5.4.14",
"vitepress": "^1.6.4",
"vitepress-plugin-mermaid": "^2.0.17"
}
}