-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.62 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "max-chatbot",
"version": "0.8.10",
"description": "Generate and brainstorm ideas while creating your notes using Large Language Models (LLMs) from Ollama, LM Studio, Anthropic, OpenAI, Mistral AI, and more for Obsidian.",
"main": "main.js",
"scripts": {
"dev": "VITE_CJS_IGNORE_WARNING=true vite build --mode development --watch",
"build": "VITE_CJS_IGNORE_WARNING=true vite build --mode production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"prepare": "husky",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"lint:quiet": "eslint ./src --quiet",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"obsidian",
"chatbot",
"chatgpt",
"ollama"
],
"author": "anpigon",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.9.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-typescript": "^11.1.6",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/lodash": "^4.17.7",
"@types/node": "^20.14.15",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitejs/plugin-react-swc": "^3.7.0",
"autoprefixer": "^10.4.20",
"builtin-modules": "^3.3.0",
"esbuild": "0.23.0",
"eslint": "^9.9.0",
"husky": "^9.1.4",
"obsidian": "^1.7.2",
"postcss": "^8.4.41",
"postcss-prefix-selector": "^1.16.1",
"prettier": "^3.3.3",
"prettier-plugin-sort-imports": "^1.8.6",
"prettier-plugin-tailwindcss": "^0.6.6",
"rollup-plugin-copy": "^3.5.0",
"tailwindcss": "^3.4.9",
"tslib": "^2.6.3",
"typescript": "^5.6.3",
"typescript-eslint": "^7.18.0",
"vite": "^5.4.10"
},
"dependencies": {
"@heroicons/react": "^2.1.5",
"@langchain/anthropic": "^0.2.18",
"@langchain/community": "^0.2.33",
"@langchain/core": "0.2.23",
"@langchain/google-genai": "^0.0.25",
"@langchain/groq": "^0.0.16",
"@langchain/ollama": "^0.1.1",
"@langchain/openai": "^0.2.11",
"@langchain/xai": "^0.0.1",
"@msgpack/msgpack": "3.0.0-beta2",
"@orama/orama": "^2.0.23",
"@popperjs/core": "^2.11.8",
"clsx": "^2.1.1",
"i18next": "^23.12.3",
"langchain": "^0.2.16",
"lodash": "^4.17.21",
"merge-refs": "^1.3.0",
"monkey-around": "^2.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^14.1.3",
"tailwind-merge": "^2.5.2",
"usehooks-ts": "^3.1.0"
},
"overrides": {
"@langchain/core": "0.2.23"
},
"resolutions": {
"@langchain/core": "0.2.23"
},
"pnpm": {
"overrides": {
"@langchain/core": "0.2.23"
}
}
}