-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 3.2 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 3.2 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
76
77
78
79
80
81
82
{
"name": "nexus",
"version": "5.8.9",
"description": "Agentic AI for your vault. Use Claude, ChatGPT, Gemini, and local models to chat, search, create, and manage your notes with semantic memory, image generation, and MCP server integration.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "npm run lint:obsidian && tsc --noEmit --skipLibCheck && node esbuild.config.mjs production && tsc connector.ts --outDir . --esModuleInterop true --module commonjs --skipLibCheck && node scripts/generate-connector-content.mjs",
"sync:agent-context": "node scripts/sync-agent-context.mjs",
"sync:skills": "node scripts/sync-agent-context.mjs --skills-only",
"schemas:tools": "node scripts/generate-tool-schemas.mjs",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"test": "jest",
"test:coverage": "jest --coverage --coverageThreshold='{\"global\":{\"branches\":80,\"functions\":80,\"lines\":80,\"statements\":80}}'",
"lint": "npm run lint:obsidian",
"lint:obsidian": "eslint .",
"deploy": "npm run build && powershell.exe -ExecutionPolicy Bypass -File .\\postbuild.ps1",
"mockup:audio-editor": "node scripts/serve-mockups.mjs audio-editor-leaf-view.html"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"obsidian",
"plugin",
"mcp",
"claude"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.39.4",
"@eslint/json": "^0.14.0",
"@types/babel__generator": "^7.27.0",
"@types/babel__template": "^7.4.4",
"@types/cors": "^2.8.19",
"@types/diff-match-patch": "^1.0.36",
"@types/express": "^5.0.3",
"@types/istanbul-lib-coverage": "^2.0.6",
"@types/istanbul-lib-report": "^3.0.3",
"@types/jest": "^29.5.14",
"@types/node": "^16.18.0",
"@types/request": "^2.48.8",
"@types/yargs-parser": "^21.0.3",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"@typescript-eslint/utils": "^8.58.0",
"crypto": "^1.0.1",
"esbuild": "^0.25.11",
"eslint": "^9.39.4",
"eslint-plugin-obsidianmd": "^0.1.9",
"jest": "^29.7.0",
"obsidian": "^1.4.0",
"ts-jest": "^29.3.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.0"
},
"dependencies": {
"@dao-xyz/sqlite3-vec": "^0.0.19",
"@huggingface/transformers": "^3.1.2",
"@mlc-ai/web-llm": "^0.2.80",
"@modelcontextprotocol/sdk": "^1.20.2",
"@xenova/transformers": "^2.17.2",
"cors": "^2.8.5",
"diff-match-patch": "^1.0.5",
"eventsource-parser": "^1.1.2",
"express": "^5.1.0",
"fast-xml-parser": "^5.5.9",
"gpt-tokenizer": "^3.2.0",
"jszip": "^3.10.1",
"mammoth": "^1.12.0",
"pdf-lib": "1.17.1",
"pdfjs-dist": "^5.5.207",
"streaming-markdown": "^0.2.15",
"tough-cookie": "^4.1.3",
"uuid": "^11.1.0",
"wasm-media-encoders": "0.7.0",
"winston": "^3.18.3",
"xlsx": "^0.18.5",
"yaml": "^2.8.1"
}
}