andy-stack_vaultkeeper-ai/package.json
Andrew Beal 3f37870aaa Add markdown rendering support with KaTeX and highlight.js
- Updated package.json to include dependencies for rehype and remark plugins for markdown processing.
- Added default highlight.js CSS for code highlighting.
- Included KaTeX CSS for rendering mathematical expressions.
- Created markdown.css for styling markdown content in the Obsidian plugin, incorporating styles for headings, paragraphs, lists, tables, and code blocks.
- Customized highlight.js colors to match Obsidian theme.
2025-09-16 17:14:37 +01:00

46 lines
1.2 KiB
JSON

{
"name": "dms_assistant",
"version": "1.0.0",
"description": "AI powered Dungeon Master's assistant.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"svelte-check": "svelte-check --tsconfig tsconfig.json"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/express": "^5.0.3",
"@types/node": "^16.18.126",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "^0.25.9",
"esbuild-svelte": "^0.9.3",
"obsidian": "latest",
"svelte": "^5.38.3",
"svelte-check": "^4.3.1",
"svelte-preprocess": "^6.0.3",
"tslib": "2.4.0",
"typescript": "~5.0.0"
},
"dependencies": {
"@google/genai": "^1.17.0",
"express": "^5.1.0",
"rehype-highlight": "^7.0.2",
"rehype-katex": "^7.0.1",
"rehype-stringify": "^10.0.1",
"remark-emoji": "^5.0.2",
"remark-footnotes": "^4.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"remark-toc": "^9.0.0",
"unified": "^11.0.5",
"uuid": "^11.1.0"
}
}