-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
150 lines (150 loc) · 4.61 KB
/
Copy pathpackage.json
File metadata and controls
150 lines (150 loc) · 4.61 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"name": "vault-cortex",
"version": "0.45.0",
"private": true,
"description": "Standalone MCP server for Obsidian vaults — hybrid search, notes & files, memory, tasks, OAuth 2.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aliasunder/vault-cortex.git"
},
"homepage": "https://github.com/aliasunder/vault-cortex",
"bugs": {
"url": "https://github.com/aliasunder/vault-cortex/issues"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"obsidian",
"obsidian-mcp-server",
"obsidian-vault",
"obsidian-sync",
"ai-agents",
"ai-memory-system",
"knowledge-base",
"note-taking",
"pkm",
"personal-knowledge-management",
"hybrid-search",
"task-management",
"semantic-search",
"attachments",
"one-click-deploy",
"self-hosted",
"docker",
"claude"
],
"type": "module",
"engines": {
"node": ">=24.0.0 <25.0.0"
},
"scripts": {
"build": "npm run build:server && npm run build:cli && npm run build:sst",
"build:server": "tsc",
"build:sst": "tsc -p tsconfig.sst.json",
"build:cli": "tsc -p cli/tsconfig.json && tsc -p cli/tsconfig.test.json",
"sync:cli-env-blocks": "tsx scripts/sync-cli-env-blocks.ts",
"sync:lobehub-manifest": "tsx scripts/sync-lobehub-manifest.ts",
"publish:lobehub": "npm run sync:lobehub-manifest && npx -y @lobehub/market-cli@0.0.38 plugin publish --dir .",
"generate:dockerhub-readme": "tsx scripts/generate-dockerhub-readme.ts",
"dev:mcp": "tsx watch src/vault-mcp/server.ts",
"dev:docker": "docker compose -f docker-compose.local.yml up --build",
"start": "node dist/src/vault-mcp/server.js",
"dev:sst": "sst dev",
"deploy": "sst deploy",
"remove": "sst remove",
"docker:build": "tsx scripts/dev.ts docker:build",
"docker:push": "tsx scripts/dev.ts docker:push",
"docker:publish": "tsx scripts/dev.ts docker:publish",
"lightsail:up": "tsx scripts/dev.ts lightsail:up",
"deploy:dev": "npm run deploy && npm run docker:publish && npm run lightsail:up",
"prettier": "prettier --write .",
"prettier:check": "prettier --check .",
"knip": "knip",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"markdownlint": "markdownlint-cli2 \"**/*.md\"",
"markdownlint:fix": "markdownlint-cli2 --fix \"**/*.md\"",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"test:cli-pty": "vitest run --config vitest.cli-pty.config.ts",
"build:remote-image": "docker build --target remote -t vault-cortex:remote-ci .",
"test:remote-boot": "npm run build:remote-image && vitest run --config vitest.remote-boot.config.ts",
"prepare": "husky",
"render:social-preview": "puppeteer browsers install chrome && tsx scripts/render-social-preview.ts"
},
"lint-staged": {
"*.json": "prettier --write",
"*.md": [
"markdownlint-cli2 --fix",
"prettier --write"
],
"*.ts": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@huggingface/transformers": "4.2.0",
"@modelcontextprotocol/sdk": "1.30.0",
"@napi-rs/canvas": "1.0.8",
"better-sqlite3": "13.0.3",
"chokidar": "5.0.0",
"env-var": "7.5.0",
"express": "5.2.1",
"gray-matter": "4.0.3",
"luxon": "3.7.2",
"pdfjs-dist": "6.2.108",
"picomatch": "4.0.7",
"sharp": "0.35.3",
"sqlite-vec": "0.1.9",
"unpdf": "1.8.1",
"yaml": "2.9.0",
"zod": "4.4.3"
},
"overrides": {
"adm-zip": "0.6.0",
"js-yaml": "4.3.1",
"@huggingface/transformers": {
"onnxruntime-web": "npm:empty-npm-package@1.0.0",
"sharp": "npm:empty-npm-package@1.0.0"
}
},
"devDependencies": {
"@clack/prompts": "1.7.0",
"@eslint/js": "10.0.1",
"@types/aws-lambda": "8.10.162",
"@types/better-sqlite3": "9.6.0",
"@types/express": "5.0.6",
"@types/luxon": "3.7.5",
"@types/node": "26.3.0",
"@types/picomatch": "4.0.3",
"@typescript/native": "npm:typescript@7.0.2",
"@vitest/coverage-v8": "4.1.11",
"commander": "14.0.3",
"eslint": "10.9.1",
"eslint-config-prettier": "10.1.8",
"husky": "9.1.7",
"jiti": "2.7.0",
"knip": "6.32.3",
"lint-staged": "17.3.0",
"markdownlint-cli2": "0.23.2",
"node-pty": "1.1.0",
"prettier": "3.9.6",
"puppeteer": "25.9.0",
"sst": "4.17.1",
"tsx": "4.23.12",
"typescript": "npm:@typescript/typescript6@6.0.2",
"typescript-eslint": "8.68.0",
"vitest": "4.1.11"
},
"allowScripts": {
"puppeteer@25.8.0": true,
"node-pty@1.1.0": true
},
"puppeteer": {
"skipDownload": true
}
}