-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.47 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
{
"name": "semantic-auto-linker",
"version": "1.0.14",
"description": "Safe and reviewable auto-linking for Obsidian",
"main": "main.js",
"type": "module",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"test:semantic": "node --test tests/dev-vault-semantic.test.mjs",
"bench:semantic": "node tests/dev-vault-semantic-bench.mjs",
"sync:dev-vault": "powershell -NoProfile -Command \"Copy-Item main.js,manifest.json,styles.css -Destination .\\dev-vault\\.obsidian\\plugins\\semantic-auto-linker -Force\"",
"build:dev-vault": "npm run build && npm run sync:dev-vault",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"lint": "eslint ."
},
"keywords": [
"obsidian-plugin",
"obsidian",
"semantic-search",
"auto-linking",
"pkm",
"knowledge-management",
"embeddings",
"typescript"
],
"license": "MIT",
"devDependencies": {
"@eslint/js": "9.30.1",
"@types/node": "^16.11.6",
"@types/three": "^0.183.1",
"esbuild": "0.25.5",
"eslint-plugin-obsidianmd": "0.1.9",
"globals": "14.0.0",
"jiti": "2.6.1",
"tslib": "2.4.0",
"typescript": "^5.8.3",
"typescript-eslint": "8.35.1"
},
"dependencies": {
"@huggingface/transformers": "^4.2.0",
"3d-force-graph": "^1.79.1",
"d3-force-3d": "^3.0.6",
"force-graph": "^1.51.2",
"hnsw": "^1.1.1",
"ml-pca": "^4.1.1",
"obsidian": "latest",
"three": "^0.150.1",
"three-spritetext": "^1.10.0"
}
}