generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
65 lines (65 loc) · 2 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
{
"name": "arcana",
"version": "1.6.17",
"description": "Arcana is a powerful AI assistant for Obsidian.",
"main": "main.js",
"scripts": {
"build:dev": "tsc -skipLibCheck && node esbuild.config.mjs --platform=node",
"build:prod": "tsc -skipLibCheck && node esbuild.config.mjs production --platform=node && sass src/scss/main.scss styles.css --no-source-map --style=compressed",
"compile": "tsc -skipLibCheck",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"test": "jest",
"lint": "eslint src/**/*.ts"
},
"keywords": [],
"author": "",
"license": "MIT",
"type": "module",
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "^16.11.6",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.1",
"@types/react-syntax-highlighter": "^15.5.7",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "0.17.3",
"esbuild-plugin-wasm": "^1.0.0",
"eslint": "^8.57.1",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"jest": "^29.7.0",
"obsidian": "latest",
"prettier": "^3.3.3",
"sass": "^1.62.1",
"ts-jest": "^29.2.5",
"tslib": "2.4.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@langchain/anthropic": "^0.3.8",
"@langchain/core": "^0.3.19",
"@langchain/google-genai": "^0.1.4",
"@langchain/openai": "^0.3.14",
"@reduxjs/toolkit": "^1.9.5",
"async-mutex": "^0.4.0",
"base64-js": "^1.5.1",
"hnswlib-node": "^1.4.2",
"langchain": "^0.3.6",
"lowdb": "^4.0.0",
"openai": "^4.73.1",
"prism-themes": "^1.9.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^8.0.7",
"react-redux": "^8.1.1",
"react-select": "^5.7.3",
"react-spinners": "^0.13.8",
"react-syntax-highlighter": "^15.5.0",
"redux": "^4.2.1",
"rehype-katex": "^6.0.3",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1"
}
}