-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.13 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
{
"name": "fhirhydrant",
"version": "0.17.0",
"description": "Node.js FHIR MCP server with SMART Backend Services, metadata-aware search/CRUD tools, compact responses, and FHIRPath filtering.",
"author": "Joshua Faulkenberry <j@joshuafaulkenberry.com> (https://joshuafaulkenberry.com/)",
"license": "Kopimi",
"type": "module",
"bin": {
"fhirhydrant": "bin/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/faulkj/fhirHydrant.git"
},
"bugs": {
"url": "https://github.com/faulkj/fhirHydrant/issues"
},
"homepage": "https://github.com/faulkj/fhirHydrant#readme",
"keywords": [
"fhir",
"mcp",
"model-context-protocol",
"smart-on-fhir",
"backend-services",
"hl7",
"healthcare",
"ehr",
"fhirclient",
"fhirstarter"
],
"files": [
"bin",
"config"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=24"
},
"scripts": {
"check": "tsc --noEmit",
"build": "tsup ts/server.ts --format esm --out-dir bin --no-splitting --platform node --clean",
"prepublishOnly": "npm run build",
"start": "node bin/server.js",
"dev": "node --env-file=.env --experimental-strip-types --watch ts/server.ts --dev",
"inspector": "npx @modelcontextprotocol/inspector --transport http --server-url http://localhost:5000/mcp"
},
"dependencies": {
"@fhirstarter/backend": "^2.1.0",
"@modelcontextprotocol/express": "2.0.0-beta.5",
"@modelcontextprotocol/node": "2.0.0-beta.5",
"@modelcontextprotocol/server": "2.0.0-beta.5",
"content-disposition": "^2.0.1",
"express": "^5.2.1",
"fhirclient": "^2.6.3",
"fhirpath": "^5.0.0",
"jose": "^6.2.4",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^26.1.1",
"tsup": "^8.5.1",
"typescript": "^7.0.2"
},
"overrides": {
"@hono/node-server": "2.0.11",
"esbuild": "0.28.1",
"hono": "4.12.31",
"uuid": ">=11.1.1"
}
}