generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.51 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "obsidian-quiz-generator",
"version": "2.1.2",
"description": "Generate interactive flashcards from your notes using models from OpenAI (ChatGPT), Google (Gemini), Ollama (local LLMs), and more. Or manually create your own to use with the quiz UI.",
"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": [
"obsidian",
"quiz-generator",
"openai"
],
"author": "Edward Cui",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.8.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "7.16.1",
"@typescript-eslint/parser": "7.16.1",
"builtin-modules": "4.0.0",
"esbuild": "0.24.0",
"eslint-plugin-react-hooks": "^5.0.0",
"obsidian": "^1.7.2",
"tslib": "2.8.0",
"typescript": "5.6.3"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.30.1",
"@google/generative-ai": "^0.21.0",
"@langchain/anthropic": "^0.3.6",
"@langchain/cohere": "^0.3.1",
"@langchain/community": "^0.3.10",
"@langchain/core": "^0.3.15",
"@langchain/google-genai": "^0.1.2",
"@langchain/mistralai": "^0.1.1",
"@langchain/ollama": "^0.1.0",
"@langchain/openai": "^0.3.11",
"@mistralai/mistralai": "^1.1.0",
"cohere-ai": "^7.14.0",
"langchain": "^0.3.5",
"localforage": "^1.10.0",
"ollama": "^0.5.9",
"openai": "^4.68.4",
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
}