-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.29 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
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
{
"name": "obsidian-sonar",
"version": "0.1.7",
"description": "Deep knowledge retrieval for Obsidian, completely offline",
"main": "main.js",
"type": "module",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"build:with-benchmark": "tsc -noEmit -skipLibCheck && INCLUDE_BENCHMARK=true node esbuild.config.mjs production",
"clean": "rm main.js",
"dev": "node esbuild.config.mjs",
"dev:with-benchmark": "INCLUDE_BENCHMARK=true node esbuild.config.mjs",
"deploy": "./deploy.sh",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"parse-line-chat": "npx tsx scripts/parse-line-chat.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"fix:format": "prettier --write .",
"fix:lint": "eslint . --fix",
"fix": "npm run fix:format && npm run fix:lint",
"check:format": "prettier --check .",
"check:lint": "eslint . --max-warnings 0",
"check:svelte": "svelte-check --tsconfig tsconfig.json",
"check:tsc": "npx tsc --noEmit",
"check": "npm run check:format && npm run check:lint && npm run check:svelte && npm run check:tsc"
},
"keywords": [
"obsidian",
"obsidian-plugin",
"semantic-search",
"embeddings",
"bm25",
"llamacpp",
"local",
"offline"
],
"author": "aviatesk",
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/aviatesk/obsidian-sonar"
},
"dependencies": {
"d3": "^7.9.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^9.39.5",
"@types/d3": "^7.4.3",
"@types/node": "^25.9.1",
"@typescript-eslint/eslint-plugin": "^8.65.0",
"@typescript-eslint/parser": "^8.64.0",
"@vitest/ui": "^4.1.10",
"builtin-modules": "^5.3.0",
"esbuild": "^0.28.1",
"esbuild-svelte": "^0.9.5",
"eslint-plugin-svelte": "^3.22.0",
"eslint-plugin-unused-imports": "^4.4.1",
"husky": "^9.1.7",
"obsidian": "^1.13.1",
"pdfjs-dist": "^5.7.284",
"prettier": "^3.8.4",
"svelte": "^5.56.8",
"svelte-check": "^4.7.1",
"svelte-eslint-parser": "^1.8.0",
"svelte-preprocess": "^6.0.5",
"tsx": "^4.23.1",
"typescript": "^5.9.2",
"vitest": "^4.0.18"
}
}