-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.34 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.34 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
{
"name": "vault-cortex",
"version": "0.15.12",
"private": true,
"description": "Remote MCP server that exposes an Obsidian vault over HTTPS via the Model Context Protocol",
"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",
"model-context-protocol",
"obsidian",
"vault",
"remote-mcp-server"
],
"type": "module",
"engines": {
"node": ">=24.0.0 <25.0.0"
},
"scripts": {
"build": "tsc",
"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 .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "vitest run",
"test:watch": "vitest",
"prepare": "husky"
},
"lint-staged": {
"*.{json,md}": "prettier --write",
"*.ts": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.29.0",
"better-sqlite3": "12.10.0",
"chokidar": "5.0.0",
"env-var": "7.5.0",
"express": "5.2.1",
"gray-matter": "4.0.3",
"luxon": "3.7.2",
"picomatch": "4.0.4",
"sst": "4.15.2",
"zod": "4.4.3"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/aws-lambda": "8.10.161",
"@types/better-sqlite3": "7.6.13",
"@types/express": "5.0.6",
"@types/luxon": "3.7.1",
"@types/node": "25.9.1",
"@types/picomatch": "4.0.3",
"eslint": "10.4.1",
"eslint-config-prettier": "10.1.8",
"husky": "9.1.7",
"jiti": "2.7.0",
"lint-staged": "17.0.7",
"prettier": "3.8.3",
"tsx": "4.22.4",
"typescript": "6.0.3",
"typescript-eslint": "8.60.1",
"vitest": "4.1.8"
}
}