andy-stack_vaultkeeper-ai/package.json
Andrew Beal 44cfa54e95 feat: add fuzzy search for tags, files, and folders in vault cache
Implement fuzzysort-based matching methods (matchTag, matchFile, matchFolder)
with automatic preparation of search targets. Add folder tracking alongside
existing file/tag caching. Update event handlers to maintain fuzzy search
indices on create/rename/delete operations.
2025-10-25 16:17:45 +01:00

70 lines
1.9 KiB
JSON

{
"name": "ai_agent",
"version": "1.0.0",
"description": "AI powered agent 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",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@testing-library/svelte": "^5.2.8",
"@types/express": "^5.0.4",
"@types/node": "^24.9.1",
"@typescript-eslint/eslint-plugin": "8.46.2",
"@typescript-eslint/parser": "8.46.2",
"@vitest/ui": "^4.0.3",
"builtin-modules": "5.0.0",
"esbuild": "^0.25.11",
"esbuild-svelte": "^0.9.3",
"happy-dom": "^20.0.8",
"obsidian": "latest",
"svelte": "^5.41.4",
"svelte-check": "^4.3.3",
"svelte-preprocess": "^6.0.3",
"tslib": "2.8.1",
"typescript": "^5.9.3",
"vitest": "^4.0.3"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.67.0",
"@google/genai": "^1.27.0",
"@shikijs/rehype": "^3.13.0",
"core-js": "^3.46.0",
"express": "^5.1.0",
"fuzzysort": "^3.1.0",
"gpt-tokenizer": "^3.2.0",
"highlight.js": "^11.11.1",
"katex": "^0.16.25",
"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": "^5.0.0",
"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",
"remark-wiki-link": "^2.0.1",
"svelte-exmarkdown": "^5.0.2",
"unified": "^11.0.5",
"uuid": "^13.0.0"
}
}