mirror of
https://github.com/fbarrca/obsidian-inlineAI.git
synced 2026-07-22 11:50:24 +00:00
36 lines
1 KiB
JSON
36 lines
1 KiB
JSON
{
|
|
"name": "obsidian-inlineai",
|
|
"version": "1.1.5",
|
|
"description": "Cursor or Copilot like Inline AI interface for Obsidian",
|
|
"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"
|
|
},
|
|
"keywords": [],
|
|
"author": "FBarrca",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/codemirror": "^5.60.15",
|
|
"@types/node": "^22.8.1",
|
|
"@typescript-eslint/eslint-plugin": "^8.11.0",
|
|
"@typescript-eslint/parser": "^8.11.0",
|
|
"builtin-modules": "^4.0.0",
|
|
"esbuild": "^0.25.0",
|
|
"obsidian": "latest",
|
|
"typescript": "^5.6.3"
|
|
},
|
|
"dependencies": {
|
|
"@codemirror/autocomplete": "^6.18.4",
|
|
"@codemirror/commands": "^6.8.0",
|
|
"@codemirror/state": "^6.5.1",
|
|
"@codemirror/view": "^6.36.2",
|
|
"@langchain/core": "^0.3.16",
|
|
"@langchain/google-genai": "^0.2.1",
|
|
"@langchain/ollama": "^0.1.1",
|
|
"@langchain/openai": "^0.3.11",
|
|
"@types/diff-match-patch": "^1.0.36",
|
|
"diff-match-patch": "^1.0.5"
|
|
}
|
|
}
|