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",
|
2025-10-02 10:10:57 +00:00
|
|
|
"description": "AI powered agent assistant.",
|
2025-08-25 11:41:08 +00:00
|
|
|
"main": "main.js",
|
2025-11-10 10:25:49 +00:00
|
|
|
"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",
|
2025-10-24 22:36:55 +00:00
|
|
|
"svelte-check": "svelte-check --tsconfig tsconfig.json",
|
2025-11-10 10:25:49 +00:00
|
|
|
"lint": "eslint .",
|
|
|
|
|
"lint:fix": "eslint . --fix",
|
2025-10-24 22:36:55 +00:00
|
|
|
"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": {
|
2026-05-30 15:03:15 +00:00
|
|
|
"@eslint-community/eslint-plugin-eslint-comments": "^4.7.2",
|
2026-04-20 19:20:22 +00:00
|
|
|
"@eslint/js": "^10.0.1",
|
2026-06-27 13:49:19 +00:00
|
|
|
"@testing-library/svelte": "^5.4.2",
|
2025-12-06 16:43:53 +00:00
|
|
|
"@types/express": "^5.0.6",
|
2026-07-09 18:08:26 +00:00
|
|
|
"@types/node": "^26.1.1",
|
2025-11-04 19:12:30 +00:00
|
|
|
"@types/path-browserify": "^1.0.3",
|
2026-07-06 18:55:26 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "8.63.0",
|
|
|
|
|
"@typescript-eslint/parser": "8.63.0",
|
|
|
|
|
"@vitest/ui": "^4.1.10",
|
2026-06-20 10:19:38 +00:00
|
|
|
"esbuild": "^0.28.1",
|
Update dependencies and replace deprecated API calls
Replace activeDocument/activeWindow globals with Obsidian API equivalents (createFragment, createDiv, createSpan, window), update officeparser to use async API, switch diff2html import path and disable highlight option, prefix unused parameters with underscore, and update dependencies including @anthropic-ai/sdk, @google/genai, officeparser, and various dev dependencies
2026-05-17 11:42:09 +00:00
|
|
|
"esbuild-svelte": "^0.9.5",
|
2026-06-27 13:49:19 +00:00
|
|
|
"eslint": "^10.6.0",
|
2026-07-04 11:17:11 +00:00
|
|
|
"eslint-plugin-obsidianmd": "^0.4.1",
|
2026-06-27 13:49:19 +00:00
|
|
|
"globals": "^17.7.0",
|
2026-06-20 10:19:38 +00:00
|
|
|
"happy-dom": "^20.10.6",
|
2025-08-25 11:41:08 +00:00
|
|
|
"obsidian": "latest",
|
2026-06-27 13:49:19 +00:00
|
|
|
"svelte": "^5.56.4",
|
2026-07-09 18:08:26 +00:00
|
|
|
"svelte-check": "^4.7.2",
|
2026-05-25 15:25:22 +00:00
|
|
|
"svelte-preprocess": "^6.0.5",
|
2025-10-24 22:36:55 +00:00
|
|
|
"tslib": "2.8.1",
|
2026-04-19 22:16:31 +00:00
|
|
|
"typescript": "^6.0.3",
|
2026-07-06 18:55:26 +00:00
|
|
|
"vitest": "^4.1.10",
|
2026-05-30 11:33:38 +00:00
|
|
|
"yaml": "^2.9.0"
|
2025-09-08 14:50:06 +00:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2026-07-04 11:17:11 +00:00
|
|
|
"@anthropic-ai/sdk": "^0.110.0",
|
2026-06-27 13:49:19 +00:00
|
|
|
"@google/genai": "^2.10.0",
|
2026-07-04 11:17:11 +00:00
|
|
|
"@shikijs/rehype": "^4.3.1",
|
2026-03-21 23:24:09 +00:00
|
|
|
"core-js": "^3.49.0",
|
2026-04-19 22:16:31 +00:00
|
|
|
"diff": "^9.0.0",
|
2026-02-01 14:00:51 +00:00
|
|
|
"diff2html": "^3.4.56",
|
2025-12-06 16:43:53 +00:00
|
|
|
"express": "^5.2.1",
|
2026-06-28 13:06:56 +00:00
|
|
|
"fflate": "^0.8.3",
|
2025-10-25 15:17:45 +00:00
|
|
|
"fuzzysort": "^3.1.0",
|
2025-09-26 19:48:05 +00:00
|
|
|
"highlight.js": "^11.11.1",
|
2026-05-25 15:25:22 +00:00
|
|
|
"katex": "^0.17.0",
|
2025-09-27 12:23:28 +00:00
|
|
|
"lowlight": "^3.3.0",
|
2026-06-27 13:49:19 +00:00
|
|
|
"openai": "^6.45.0",
|
2025-11-04 19:12:30 +00:00
|
|
|
"path-browserify": "^1.0.1",
|
2025-11-12 21:12:36 +00:00
|
|
|
"regex-parser": "^2.3.1",
|
2026-06-27 13:49:19 +00:00
|
|
|
"uuid": "^14.0.1",
|
2026-05-05 20:13:32 +00:00
|
|
|
"zod": "^4.4.3"
|
2025-08-25 11:41:08 +00:00
|
|
|
}
|
|
|
|
|
}
|