forked from FBarrca/obsidian-inlineAI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 993 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "obsidian-inlineai",
"version": "1.0.0",
"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.24.0",
"obsidian": "latest",
"typescript": "^5.6.3"
},
"dependencies": {
"@codemirror/commands": "^6.7.1",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.34.1",
"@langchain/core": "^0.3.16",
"@langchain/ollama": "^0.1.1",
"@langchain/openai": "^0.3.11",
"@types/diff-match-patch": "^1.0.36",
"diff-match-patch": "^1.0.5"
}
}