-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.85 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.85 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
{
"name": "roam-research-mcp",
"version": "2.18.2",
"description": "MCP server and CLI for Roam Research",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/2b3pro/roam-research-mcp.git"
},
"keywords": [
"mcp",
"roam-research",
"api",
"claude",
"model-context-protocol"
],
"author": "Ian Shen / 2B3 PRODUCTIONS LLC",
"license": "MIT",
"bugs": {
"url": "https://github.com/2b3pro/roam-research-mcp/issues"
},
"homepage": "https://github.com/2b3pro/roam-research-mcp#readme",
"type": "module",
"bin": {
"roam-research-mcp": "build/index.js",
"roam": "build/cli/roam.js"
},
"files": [
"build"
],
"scripts": {
"build": "echo \"Using custom instructions: .roam/${CUSTOM_INSTRUCTIONS_PREFIX}custom-instructions.md\" && tsc && cat Roam_Markdown_Cheatsheet.md .roam/${CUSTOM_INSTRUCTIONS_PREFIX}custom-instructions.md > build/Roam_Markdown_Cheatsheet.md && chmod 755 build/index.js build/cli/roam.js",
"clean": "rm -rf build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"start": "node build/index.js",
"prepublishOnly": "npm run clean && npm run build",
"release": "standard-version",
"release:patch": "standard-version --release-as patch",
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major",
"release:first": "standard-version --first-release",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.13.2",
"@roam-research/roam-api-sdk": "^0.10.0",
"commander": "^14.0.2",
"dotenv": "^16.4.7"
},
"devDependencies": {
"@types/node": "^20.11.24",
"standard-version": "^9.5.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vitest": "^3.2.4"
}
}