andy-stack_vaultkeeper-ai/package.json

68 lines
1.8 KiB
JSON
Raw Normal View History

2025-08-25 11:41:08 +00:00
{
2025-11-10 08:03:27 +00:00
"name": "vaultkeeper-ai",
2025-08-25 11:41:08 +00:00
"version": "1.0.0",
"description": "AI powered agent assistant.",
2025-08-25 11:41:08 +00:00
"main": "main.js",
"type": "module",
2025-08-25 11:41:08 +00:00
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
2025-09-08 14:50:06 +00:00
"version": "node version-bump.mjs && git add manifest.json versions.json",
"svelte-check": "svelte-check --tsconfig tsconfig.json",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage"
2025-08-25 11:41:08 +00:00
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.7.2",
"@eslint/js": "^10.0.1",
"@testing-library/svelte": "^5.3.1",
"@types/express": "^5.0.6",
"@types/node": "^26.0.0",
"@types/path-browserify": "^1.0.3",
"@typescript-eslint/eslint-plugin": "8.61.1",
"@typescript-eslint/parser": "8.61.1",
"@vitest/ui": "^4.1.9",
"esbuild": "^0.28.1",
"esbuild-svelte": "^0.9.5",
"eslint": "^10.5.0",
"eslint-plugin-obsidianmd": "^0.3.0",
"globals": "^17.6.0",
"happy-dom": "^20.10.6",
2025-08-25 11:41:08 +00:00
"obsidian": "latest",
"svelte": "^5.56.3",
"svelte-check": "^4.6.0",
"svelte-preprocess": "^6.0.5",
"tslib": "2.8.1",
"typescript": "^6.0.3",
"vitest": "^4.1.9",
"yaml": "^2.9.0"
2025-09-08 14:50:06 +00:00
},
"dependencies": {
"@anthropic-ai/sdk": "^0.105.0",
"@google/genai": "^2.9.0",
"@shikijs/rehype": "^4.2.0",
"core-js": "^3.49.0",
"diff": "^9.0.0",
2026-02-01 14:00:51 +00:00
"diff2html": "^3.4.56",
"express": "^5.2.1",
"fuzzysort": "^3.1.0",
"highlight.js": "^11.11.1",
"katex": "^0.17.0",
"lowlight": "^3.3.0",
"officeparser": "^7.2.1",
"openai": "^6.44.0",
"path-browserify": "^1.0.1",
"regex-parser": "^2.3.1",
"unpdf": "^1.6.2",
"uuid": "^14.0.0",
"zod": "^4.4.3"
2025-08-25 11:41:08 +00:00
}
}