-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 890 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 890 Bytes
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
{
"name": "reflexive-thematic-analysis-mcp",
"version": "0.7.0",
"description": "MCP server for Dialogic Reflexive Thematic Analysis (Braun & Clarke)",
"main": "dist/server.js",
"type": "module",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"start": "node dist/server.js",
"dev": "tsc && node dist/server.js",
"test": "echo \"Tests coming soon\" && exit 0"
},
"keywords": [
"mcp",
"model-context-protocol",
"rta",
"reflexive-thematic-analysis",
"qualitative-research",
"dialogic",
"braun-clarke"
],
"author": "Niklas Karlsson",
"license": "CC-BY-NC-SA-4.0",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.24.3",
"js-yaml": "^4.1.1"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}