echore_vault-autopilot/package.json
liyachen 66ba0ea004 refactor: remove AI providers and auto processing; manual-only
Cut the entire AI execution layer now that analysis happens in Obsidian
(Claudian subscription) instead of in the plugin:
- delete providers/ (anthropic, gemini-api, openai-compat, cli-base) and
  drop @anthropic-ai/sdk, @google/generative-ai, openai deps
- delete the now-orphaned startup-check.ts and path-detector.ts
- routeClip + all clip handlers become manual-only (save frames/thumbnail
  + SOP template); remove the providers map and 'auto' code paths
- remove AI Providers + auto/provider settings UI
- drop AIProvider/MultiFrameProvider/ProviderConfig/AnalysisRequest types

The clip-rule providerId/processingMode fields are kept for now (vestigial,
always manual) pending a separate decision on removing them.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-29 15:12:38 -04:00

18 lines
423 B
JSON

{
"name": "vault-autopilot",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc --noEmit --skipLibCheck && node esbuild.config.mjs production",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"esbuild": "0.21.3",
"obsidian": "latest",
"ts-jest": "^29.1.0",
"typescript": "5.4.5"
}
}