-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.31 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "obsidian-inlineai",
"version": "1.2.7",
"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",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"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",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"obsidian": "latest",
"prettier": "^3.6.2",
"typescript": "^5.6.3"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,css,scss,md,json,yml,yaml}": [
"prettier --write"
]
},
"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"
}
}