-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.5 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.5 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
{
"name": "nexus",
"version": "5.14.0",
"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}}'",
"smoke:google-live": "node scripts/smoke-google-live.mjs",
"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": "Synaptic Labs",
"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/diff-match-patch": "^1.0.36",
"@types/istanbul-lib-coverage": "^2.0.6",
"@types/istanbul-lib-report": "^3.0.3",
"@types/jest": "^29.5.14",
"@types/node": "^16.18.126",
"@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",
"esbuild": "^0.25.12",
"eslint": "^9.39.4",
"eslint-plugin-obsidianmd": "^0.3.0",
"fake-indexeddb": "^6.2.5",
"jest": "^29.7.0",
"obsidian": "^1.12.3",
"ts-jest": "^29.4.11",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.0",
"yaml": "^2.9.0"
},
"dependencies": {
"@dao-xyz/sqlite3-vec": "^0.0.19",
"@modelcontextprotocol/sdk": "^1.29.0",
"diff-match-patch": "^1.0.5",
"eventsource-parser": "^1.1.2",
"fast-xml-parser": "^5.8.0",
"jszip": "^3.10.1",
"mammoth": "^1.12.0",
"pdf-lib": "1.17.1",
"pdfjs-dist": "^5.7.284",
"streaming-markdown": "^0.2.15"
}
}