mirror of
https://github.com/andy-stack/vaultkeeper-ai.git
synced 2026-07-22 06:42:03 +00:00
- Enhanced ChatArea component to handle streaming messages more efficiently with incremental updates. - Removed MarkdownService as it was no longer needed; integrated its functionality into StreamingMarkdownService. - Updated ServiceRegistration to reflect the removal of MarkdownService and adjusted AI class type. - Improved StreamingMarkdownService for better streaming performance and error handling. - Added new styles for syntax highlighting and markdown rendering in styles.css. - Removed old styles_old.css as they were deprecated. - Updated package.json and package-lock.json to include lowlight for improved syntax highlighting.
57 lines
1.6 KiB
JSON
57 lines
1.6 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",
|
|
"@shikijs/rehype": "^3.12.2",
|
|
"core-js": "^3.45.1",
|
|
"express": "^5.1.0",
|
|
"highlight.js": "^11.11.1",
|
|
"lowlight": "^3.3.0",
|
|
"rehype-highlight": "^7.0.2",
|
|
"rehype-katex": "^7.0.1",
|
|
"rehype-parse": "^9.0.1",
|
|
"rehype-sanitize": "^6.0.0",
|
|
"rehype-stringify": "^10.0.1",
|
|
"remark-breaks": "^4.0.0",
|
|
"remark-definition-list": "^2.0.0",
|
|
"remark-emoji": "^5.0.2",
|
|
"remark-footnotes": "^4.0.1",
|
|
"remark-frontmatter": "^5.0.0",
|
|
"remark-gfm": "^4.0.1",
|
|
"remark-math": "^6.0.0",
|
|
"remark-parse": "^11.0.0",
|
|
"remark-rehype": "^11.1.2",
|
|
"remark-relative-links": "^0.0.6",
|
|
"remark-toc": "^9.0.0",
|
|
"svelte-exmarkdown": "^5.0.2",
|
|
"unified": "^11.0.5",
|
|
"uuid": "^11.1.0"
|
|
}
|
|
}
|