378642152e
- manifest.json: fix 'main' from 'src/main.js' to 'dist/main.js' (TypeScript compiles to dist/, not src/ — Obsidian could not find the entry point) - manifest.json: set isDesktopOnly to true (plugin requires a local Ollama server) - package.json: remove unused node-fetch dependency (ESM-only, conflicts with CommonJS build) - src/semantic-cache.ts: use dynamic import for chromadb instead of top-level import (prevents plugin load crash when chromadb is not installed; cache defaults to disabled) - install.sh: new script that installs deps, builds, and copies the plugin into a vault - README.md: add quick install, manual install, and expanded troubleshooting sections
17 lines
363 B
JSON
17 lines
363 B
JSON
{
|
|
"id": "ollama-plugin",
|
|
"name": "Ollama Plugin",
|
|
"version": "1.0.0",
|
|
"minAppVersion": "1.4.11",
|
|
"description": "Ollama integration plugin for Obsidian",
|
|
"author": "Anonymous",
|
|
"authorUrl": "",
|
|
"isDesktopOnly": true,
|
|
"main": "dist/main.js",
|
|
"authorization": [],
|
|
"permissions": [],
|
|
"defaultEnabled": true,
|
|
"scripts": [],
|
|
"styles": []
|
|
}
|