forked from lucagrippa/obsidian-ai-tagger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.18 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.18 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
{
"name": "obsidian-sample-plugin",
"version": "1.0.0",
"description": "This is a sample plugin for Obsidian (https://obsidian.md)",
"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",
"copy-prompts": "cp -r src/prompts/ dist/prompts/"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.11.20",
"@typescript-eslint/eslint-plugin": "7.0.2",
"@typescript-eslint/parser": "7.0.2",
"builtin-modules": "3.3.0",
"esbuild": "0.20.1",
"obsidian": "latest",
"tslib": "2.6.2",
"typescript": "5.3.3"
},
"dependencies": {
"@langchain/anthropic": "^0.3.7",
"@langchain/community": "^0.3.12",
"@langchain/core": "^0.3.16",
"@langchain/google-genai": "^0.1.4",
"@langchain/groq": "^0.1.2",
"@langchain/mistralai": "^0.1.1",
"@langchain/ollama": "^0.1.2",
"@langchain/openai": "^0.3.12",
"@langchain/xai": "^0.0.1",
"@mistralai/mistralai": "^0.1.3",
"dotenv": "^16.4.7",
"langchain": "^0.3.6",
"langfuse-langchain": "^3.29.1",
"openai": "^4.28.0"
}
}