generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 loc) · 1.85 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
{
"name": "personal-assistant",
"version": "1.4.8",
"description": "An plugin which help you to automatically manage Obsidian.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node --no-warnings=ExperimentalWarning esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest-beta.json manifest.json versions.json CHANGELOG.md",
"lint": "eslint . --ext .ts",
"init-test": "jest --init",
"test": "jest"
},
"keywords": [],
"author": "edonyzpc",
"license": "MIT",
"devDependencies": {
"@codemirror/commands": "^6.1.2",
"@codemirror/language": "https://github.com/lishid/cm-language",
"@codemirror/search": "^6.2.2",
"@codemirror/state": "^6.1.2",
"@codemirror/view": "^6.4.0",
"@jest/globals": "^29.5.0",
"@tsconfig/svelte": "^5.0.0",
"@types/node": "^20.0.0",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "8.18.0",
"@typescript-eslint/parser": "8.18.0",
"builtin-modules": "4.0.0",
"esbuild": "0.24.0",
"esbuild-plugin-copy": "2.1.1",
"esbuild-svelte": "^0.8.0",
"eslint": "8.57.0",
"jest": "^29.5.0",
"jszip": "^3.10.1",
"obsidian": "^1.7.2",
"svelte": "^4.0.0",
"svelte-preprocess": "^6.0.0",
"ts-jest": "^29.1.0",
"tslib": "2.8.1",
"typescript": "5.7.2"
},
"dependencies": {
"@floating-ui/core": "^1.6.8",
"@langchain/community": "^0.3.0",
"@langchain/core": "^0.3.1",
"@svelteuidev/composables": "^0.15.7",
"@svelteuidev/core": "^0.15.7",
"@svelteuidev/motion": "^0.15.7",
"chart.js": "^4.4.4",
"nanoid": "^5.0.7",
"node-fetch": "^3.3.2",
"obsidian-callout-manager": "^1.0.2-alpha1",
"semver": "^7.5.2",
"svelte-chartjs": "^3.1.5",
"svelte-radix": "^1.1.1",
"vanilla-picker": "2.12.3"
}
}